blob: 070d84c609ef8467ab4731060a71b2500af9b5f3 [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/*
11 * edit.c: functions for Insert mode
12 */
13
14#include "vim.h"
15
Bram Moolenaar071d4272004-06-13 20:20:40 +000016#define BACKSPACE_CHAR 1
17#define BACKSPACE_WORD 2
18#define BACKSPACE_WORD_NOT_SPACE 3
19#define BACKSPACE_LINE 4
20
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010021// Set when doing something for completion that may call edit() recursively,
22// which is not allowed.
Bram Moolenaar7591bb32019-03-30 13:53:47 +010023static int compl_busy = FALSE;
Bram Moolenaar7591bb32019-03-30 13:53:47 +010024
25
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010026static void ins_ctrl_v(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010027static void insert_special(int, int, int);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010028static void redo_literal(int c);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010029static void start_arrow_common(pos_T *end_insert_pos, int change);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +000030#ifdef FEAT_SPELL
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010031static void check_spell_redraw(void);
Bram Moolenaar217ad922005-03-20 22:37:15 +000032#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010033static void stop_insert(pos_T *end_insert_pos, int esc, int nomove);
34static int echeck_abbr(int);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010035static void mb_replace_pop_ins(int cc);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010036static void replace_flush(void);
37static void replace_do_bs(int limit_col);
38static int del_char_after_col(int limit_col);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static void ins_reg(void);
40static void ins_ctrl_g(void);
41static void ins_ctrl_hat(void);
42static int ins_esc(long *count, int cmdchar, int nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#ifdef FEAT_RIGHTLEFT
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010044static void ins_ctrl_(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010046static int ins_start_select(int c);
47static void ins_insert(int replaceState);
48static void ins_ctrl_o(void);
49static void ins_shift(int c, int lastc);
50static void ins_del(void);
51static int ins_bs(int c, int mode, int *inserted_space_p);
Bram Moolenaara23ccb82006-02-27 00:08:02 +000052#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010053static void ins_tabline(int c);
Bram Moolenaara23ccb82006-02-27 00:08:02 +000054#endif
Bram Moolenaar75bf3d22019-03-26 22:46:05 +010055static void ins_left(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010056static void ins_home(int c);
57static void ins_end(int c);
58static void ins_s_left(void);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +010059static void ins_right(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010060static void ins_s_right(void);
61static void ins_up(int startcol);
62static void ins_pageup(void);
63static void ins_down(int startcol);
64static void ins_pagedown(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000065#ifdef FEAT_DND
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010066static void ins_drop(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010068static int ins_tab(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000069#ifdef FEAT_DIGRAPHS
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010070static int ins_digraph(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000071#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010072static int ins_ctrl_ey(int tc);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +010073#if defined(FEAT_EVAL)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010074static char_u *do_insert_char_pre(int c);
Bram Moolenaarf5876f12012-02-29 18:22:08 +010075#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000076
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010077static colnr_T Insstart_textlen; // length of line when insert started
78static colnr_T Insstart_blank_vcol; // vcol for first inserted blank
79static int update_Insstart_orig = TRUE; // set Insstart_orig to Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +000080
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010081static char_u *last_insert = NULL; // the text of the previous insert,
82 // K_SPECIAL and CSI are escaped
83static int last_insert_skip; // nr of chars in front of previous insert
84static int new_insert_skip; // nr of chars in front of current insert
85static int did_restart_edit; // "restart_edit" when calling edit()
Bram Moolenaar071d4272004-06-13 20:20:40 +000086
87#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010088static int can_cindent; // may do cindenting on this line
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010092static int revins_on; // reverse insert mode on
93static int revins_chars; // how much to skip after edit
94static int revins_legal; // was the last char 'legal'?
95static int revins_scol; // start column of revins session
Bram Moolenaar071d4272004-06-13 20:20:40 +000096#endif
97
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010098static int ins_need_undo; // call u_save() before inserting a
99 // char. Set when edit() is called.
100 // after that arrow_used is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101
Bram Moolenaar75bf3d22019-03-26 22:46:05 +0100102static int dont_sync_undo = FALSE; // CTRL-G U prevents syncing undo for
103 // the next left/right cursor key
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104
105/*
106 * edit(): Start inserting text.
107 *
108 * "cmdchar" can be:
109 * 'i' normal insert command
110 * 'a' normal append command
Bram Moolenaarec2da362017-01-21 20:04:22 +0100111 * K_PS bracketed paste
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112 * 'R' replace command
113 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo,
114 * but still only one <CR> is inserted. The <Esc> is not used for redo.
115 * 'g' "gI" command.
116 * 'V' "gR" command for Virtual Replace mode.
117 * 'v' "gr" command for single character Virtual Replace mode.
118 *
119 * This function is not called recursively. For CTRL-O commands, it returns
120 * and lets the caller handle the Normal-mode command.
121 *
122 * Return TRUE if a CTRL-O command caused the return (insert mode pending).
123 */
124 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100125edit(
126 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100127 int startln, // if set, insert at start of line
Bram Moolenaar7454a062016-01-30 15:14:10 +0100128 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129{
130 int c = 0;
131 char_u *ptr;
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100132 int lastc = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000133 int mincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 static linenr_T o_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 int i;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100136 int did_backspace = TRUE; // previous char was backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100138 int line_is_white = FALSE; // line is empty before insert
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100140 linenr_T old_topline = 0; // topline before insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141#ifdef FEAT_DIFF
142 int old_topfill = -1;
143#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100144 int inserted_space = FALSE; // just inserted a space
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 int replaceState = REPLACE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100146 int nomove = FALSE; // don't move cursor on return
Bram Moolenaarf2732452018-06-03 14:47:35 +0200147#ifdef FEAT_JOB_CHANNEL
148 int cmdchar_todo = cmdchar;
149#endif
Bram Moolenaarea042672021-06-29 20:22:32 +0200150#ifdef FEAT_CONCEAL
151 int cursor_line_was_concealed;
152#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100154 // Remember whether editing was restarted after CTRL-O.
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000155 did_restart_edit = restart_edit;
156
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100157 // sleep before redrawing, needed for "CTRL-O :" that results in an
158 // error message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 check_for_delay(TRUE);
160
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100161 // set Insstart_orig to Insstart
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100162 update_Insstart_orig = TRUE;
163
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164#ifdef HAVE_SANDBOX
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100165 // Don't allow inserting in the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 if (sandbox != 0)
167 {
Bram Moolenaard8e44472021-07-21 22:20:33 +0200168 emsg(_(e_not_allowed_in_sandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 return FALSE;
170 }
171#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100172 // Don't allow changes in the buffer while editing the cmdline. The
173 // caller of getcmdline() may get confused.
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100174 // Don't allow recursive insert mode when busy with completion.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +0200175 if (textwinlock != 0 || textlock != 0
176 || ins_compl_active() || compl_busy || pum_visible())
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000177 {
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +0200178 emsg(_(e_textwinlock));
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000179 return FALSE;
180 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100181 ins_compl_clear(); // clear stuff for CTRL-X mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
Bram Moolenaar843ee412004-06-30 16:16:41 +0000183 /*
184 * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx".
185 */
186 if (cmdchar != 'r' && cmdchar != 'v')
187 {
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100188 pos_T save_cursor = curwin->w_cursor;
189
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100190#ifdef FEAT_EVAL
Bram Moolenaar843ee412004-06-30 16:16:41 +0000191 if (cmdchar == 'R')
192 ptr = (char_u *)"r";
193 else if (cmdchar == 'V')
194 ptr = (char_u *)"v";
195 else
196 ptr = (char_u *)"i";
197 set_vim_var_string(VV_INSERTMODE, ptr, 1);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100198 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100199#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +0200200 ins_apply_autocmds(EVENT_INSERTENTER);
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100201
Bram Moolenaar2e6cdb92021-01-28 11:07:44 +0100202 // Check for changed highlighting, e.g. for ModeMsg.
203 if (need_highlight_changed)
204 highlight_changed();
205
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100206 // Make sure the cursor didn't move. Do call check_cursor_col() in
207 // case the text was modified. Since Insert mode was not started yet
208 // a call to check_cursor_col() may move the cursor, especially with
209 // the "A" command, thus set State to avoid that. Also check that the
210 // line number is still valid (lines may have been deleted).
211 // Do not restore if v:char was set to a non-empty string.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100212 if (!EQUAL_POS(curwin->w_cursor, save_cursor)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100213#ifdef FEAT_EVAL
Bram Moolenaar097c9922013-05-19 21:15:15 +0200214 && *get_vim_var_str(VV_CHAR) == NUL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100215#endif
Bram Moolenaar097c9922013-05-19 21:15:15 +0200216 && save_cursor.lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100217 {
218 int save_state = State;
219
220 curwin->w_cursor = save_cursor;
221 State = INSERT;
222 check_cursor_col();
223 State = save_state;
224 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000225 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000226
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200227#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +0200228 // Check if the cursor line was concealed before changing State.
229 cursor_line_was_concealed = curwin->w_p_cole > 0
230 && conceal_cursor_line(curwin);
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200231#endif
232
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 /*
234 * When doing a paste with the middle mouse button, Insstart is set to
235 * where the paste started.
236 */
237 if (where_paste_started.lnum != 0)
238 Insstart = where_paste_started;
239 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 {
241 Insstart = curwin->w_cursor;
242 if (startln)
243 Insstart.col = 0;
244 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000245 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 Insstart_blank_vcol = MAXCOL;
247 if (!did_ai)
248 ai_col = 0;
249
250 if (cmdchar != NUL && restart_edit == 0)
251 {
252 ResetRedobuff();
253 AppendNumberToRedobuff(count);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 if (cmdchar == 'V' || cmdchar == 'v')
255 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100256 // "gR" or "gr" command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 AppendCharToRedobuff('g');
258 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
259 }
260 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 {
Bram Moolenaar076e5022017-01-24 18:58:30 +0100262 if (cmdchar == K_PS)
263 AppendCharToRedobuff('a');
264 else
265 AppendCharToRedobuff(cmdchar);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100266 if (cmdchar == 'g') // "gI" command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 AppendCharToRedobuff('I');
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100268 else if (cmdchar == 'r') // "r<CR>" command
269 count = 1; // insert only one <CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 }
271 }
272
273 if (cmdchar == 'R')
274 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 State = REPLACE;
276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 else if (cmdchar == 'V' || cmdchar == 'v')
278 {
279 State = VREPLACE;
280 replaceState = VREPLACE;
281 orig_line_count = curbuf->b_ml.ml_line_count;
282 vr_lines_changed = 1;
283 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 else
285 State = INSERT;
286
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +0200287 trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 stop_insert_mode = FALSE;
289
Bram Moolenaarea042672021-06-29 20:22:32 +0200290#ifdef FEAT_CONCEAL
291 // Check if the cursor line needs redrawing after changing State. If
292 // 'concealcursor' is "n" it needs to be redrawn without concealing.
293 conceal_check_cursor_line(cursor_line_was_concealed);
294#endif
295
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296 /*
297 * Need to recompute the cursor position, it might move when the cursor is
298 * on a TAB or special character.
299 */
300 curs_columns(TRUE);
301
302 /*
303 * Enable langmap or IME, indicated by 'iminsert'.
304 * Note that IME may enabled/disabled without us noticing here, thus the
305 * 'iminsert' value may not reflect what is actually used. It is updated
306 * when hitting <Esc>.
307 */
308 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
309 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100310#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
312#endif
313
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315#ifdef FEAT_CMDL_INFO
316 clear_showcmd();
317#endif
318#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100319 // there is no reverse replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 revins_on = (State == INSERT && p_ri);
321 if (revins_on)
322 undisplay_dollar();
323 revins_chars = 0;
324 revins_legal = 0;
325 revins_scol = -1;
326#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100327 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100328 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200329#ifdef FEAT_JOB_CHANNEL
330 ch_log_output = TRUE;
331#endif
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100332 // Disable bracketed paste mode, we won't recognize the escape
333 // sequences.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100334 out_str(T_BD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100336 // Disable modifyOtherKeys, keys with modifiers would cause exiting
337 // Insert mode.
338 out_str(T_CTE);
339 }
340
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 /*
342 * Handle restarting Insert mode.
Bram Moolenaara6c07602017-03-05 21:18:27 +0100343 * Don't do this for "CTRL-O ." (repeat an insert): In that case we get
344 * here with something in the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 */
346 if (restart_edit != 0 && stuff_empty())
347 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 /*
349 * After a paste we consider text typed to be part of the insert for
350 * the pasted text. You can backspace over the pasted text too.
351 */
352 if (where_paste_started.lnum)
353 arrow_used = FALSE;
354 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 arrow_used = TRUE;
356 restart_edit = 0;
357
358 /*
359 * If the cursor was after the end-of-line before the CTRL-O and it is
360 * now at the end-of-line, put it after the end-of-line (this is not
361 * correct in very rare cases).
362 * Also do this if curswant is greater than the current virtual
363 * column. Eg after "^O$" or "^O80|".
364 */
365 validate_virtcol();
366 update_curswant();
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000367 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 || curwin->w_curswant > curwin->w_virtcol)
369 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
370 {
371 if (ptr[1] == NUL)
372 ++curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 else if (has_mbyte)
374 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000375 i = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 if (ptr[i] == NUL)
377 curwin->w_cursor.col += i;
378 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000380 ins_at_eol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 }
382 else
383 arrow_used = FALSE;
384
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100385 // we are in insert mode now, don't need to start it anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 need_start_insertmode = FALSE;
387
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100388 // Need to save the line for undo before inserting the first char.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 ins_need_undo = TRUE;
390
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 where_paste_started.lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392#ifdef FEAT_CINDENT
393 can_cindent = TRUE;
394#endif
395#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100396 // The cursor line is not in a closed fold, unless 'insertmode' is set or
397 // restarting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 if (!p_im && did_restart_edit == 0)
399 foldOpenCursor();
400#endif
401
402 /*
403 * If 'showmode' is set, show the current (insert/replace/..) mode.
404 * A warning message for changing a readonly file is given here, before
405 * actually changing anything. It's put after the mode, if any.
406 */
407 i = 0;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000408 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 i = showmode();
410
411 if (!p_im && did_restart_edit == 0)
Bram Moolenaar21af89e2008-01-02 21:09:33 +0000412 change_warning(i == 0 ? 0 : i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
414#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100415 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416#endif
417#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100418 do_digraph(-1); // clear digraphs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419#endif
420
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000421 /*
422 * Get the current length of the redo buffer, those characters have to be
423 * skipped if we want to get to the inserted characters.
424 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 ptr = get_inserted();
426 if (ptr == NULL)
427 new_insert_skip = 0;
428 else
429 {
430 new_insert_skip = (int)STRLEN(ptr);
431 vim_free(ptr);
432 }
433
434 old_indent = 0;
435
436 /*
437 * Main loop in Insert mode: repeat until Insert mode is left.
438 */
439 for (;;)
440 {
441#ifdef FEAT_RIGHTLEFT
442 if (!revins_legal)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100443 revins_scol = -1; // reset on illegal motions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 else
445 revins_legal = 0;
446#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100447 if (arrow_used) // don't repeat insert when arrow key used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 count = 0;
449
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100450 if (update_Insstart_orig)
451 Insstart_orig = Insstart;
452
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200453 if (stop_insert_mode && !pum_visible())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100455 // ":stopinsert" used or 'insertmode' reset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 count = 0;
457 goto doESCkey;
458 }
459
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100460 // set curwin->w_curswant for next K_DOWN or K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 if (!arrow_used)
462 curwin->w_set_curswant = TRUE;
463
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100464 // If there is no typeahead may check for timestamps (e.g., for when a
465 // menu invoked a shell command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466 if (stuff_empty())
467 {
468 did_check_timestamps = FALSE;
469 if (need_check_timestamps)
470 check_timestamps(FALSE);
471 }
472
473 /*
474 * When emsg() was called msg_scroll will have been set.
475 */
476 msg_scroll = FALSE;
477
478#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100479 // When 'mousefocus' is set a mouse movement may have taken us to
480 // another window. "need_mouse_correct" may then be set because of an
481 // autocommand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 if (need_mouse_correct)
483 gui_mouse_correct();
484#endif
485
486#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100487 // Open fold at the cursor line, according to 'foldopen'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 if (fdo_flags & FDO_INSERT)
489 foldOpenCursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100490 // Close folds where the cursor isn't, according to 'foldclose'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 if (!char_avail())
492 foldCheckClose();
493#endif
494
Bram Moolenaarf2732452018-06-03 14:47:35 +0200495#ifdef FEAT_JOB_CHANNEL
496 if (bt_prompt(curbuf))
497 {
498 init_prompt(cmdchar_todo);
499 cmdchar_todo = NUL;
500 }
501#endif
502
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 /*
504 * If we inserted a character at the last position of the last line in
505 * the window, scroll the window one line up. This avoids an extra
506 * redraw.
507 * This is detected when the cursor column is smaller after inserting
508 * something.
509 * Don't do this when the topline changed already, it has
510 * already been adjusted (by insertchar() calling open_line())).
511 */
512 if (curbuf->b_mod_set
513 && curwin->w_p_wrap
514 && !did_backspace
515 && curwin->w_topline == old_topline
516#ifdef FEAT_DIFF
517 && curwin->w_topfill == old_topfill
518#endif
519 )
520 {
521 mincol = curwin->w_wcol;
522 validate_cursor_col();
523
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200524 if (
525#ifdef FEAT_VARTABS
526 (int)curwin->w_wcol < mincol - tabstop_at(
527 get_nolist_virtcol(), curbuf->b_p_ts,
528 curbuf->b_p_vts_array)
529#else
530 (int)curwin->w_wcol < mincol - curbuf->b_p_ts
531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 && curwin->w_wrow == W_WINROW(curwin)
Bram Moolenaar375e3392019-01-31 18:26:10 +0100533 + curwin->w_height - 1 - get_scrolloff_value()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 && (curwin->w_cursor.lnum != curwin->w_topline
535#ifdef FEAT_DIFF
536 || curwin->w_topfill > 0
537#endif
538 ))
539 {
540#ifdef FEAT_DIFF
541 if (curwin->w_topfill > 0)
542 --curwin->w_topfill;
543 else
544#endif
545#ifdef FEAT_FOLDING
546 if (hasFolding(curwin->w_topline, NULL, &old_topline))
547 set_topline(curwin, old_topline + 1);
548 else
549#endif
550 set_topline(curwin, curwin->w_topline + 1);
551 }
552 }
553
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100554 // May need to adjust w_topline to show the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 update_topline();
556
557 did_backspace = FALSE;
558
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100559 validate_cursor(); // may set must_redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560
561 /*
562 * Redraw the display when no characters are waiting.
563 * Also shows mode, ruler and positions cursor.
564 */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000565 ins_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 if (curwin->w_p_scb)
568 do_check_scrollbind(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569
Bram Moolenaar860cae12010-06-05 23:22:07 +0200570 if (curwin->w_p_crb)
571 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 update_curswant();
573 old_topline = curwin->w_topline;
574#ifdef FEAT_DIFF
575 old_topfill = curwin->w_topfill;
576#endif
577
578#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100579 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580#endif
581
582 /*
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100583 * Get a character for Insert mode. Ignore K_IGNORE and K_NOP.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 */
Bram Moolenaar6c5bdb72015-03-13 13:24:23 +0100585 if (c != K_CURSORHOLD)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100586 lastc = c; // remember the previous char for CTRL-D
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200587
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100588 // After using CTRL-G U the next cursor key will not break undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200589 if (dont_sync_undo == MAYBE)
590 dont_sync_undo = TRUE;
591 else
592 dont_sync_undo = FALSE;
Bram Moolenaarec2da362017-01-21 20:04:22 +0100593 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100594 // Got here from normal mode when bracketed paste started.
Bram Moolenaarec2da362017-01-21 20:04:22 +0100595 c = K_PS;
596 else
597 do
598 {
599 c = safe_vgetc();
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200600
601 if (stop_insert_mode)
602 {
603 // Insert mode ended, possibly from a callback.
Bram Moolenaard0e1b712020-09-27 20:13:03 +0200604 if (c != K_IGNORE && c != K_NOP)
605 vungetc(c);
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200606 count = 0;
607 nomove = TRUE;
Bram Moolenaard0e1b712020-09-27 20:13:03 +0200608 ins_compl_prep(ESC);
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200609 goto doESCkey;
610 }
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100611 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100613 // Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V.
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000614 did_cursorhold = TRUE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000615
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616#ifdef FEAT_RIGHTLEFT
617 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100618 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000621 /*
622 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000623 * and the cursor is still in the completed word. Only when there is
624 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000625 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100626 if (ins_compl_active()
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000627 && pum_wanted()
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100628 && curwin->w_cursor.col >= ins_compl_col()
629 && ins_compl_has_shown_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000630 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100631 // BS: Delete one character from "compl_leader".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000632 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100633 && curwin->w_cursor.col > ins_compl_col()
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000634 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000635 continue;
636
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100637 // When no match was selected or it was edited.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100638 if (!ins_compl_used_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000639 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100640 // CTRL-L: Add one character from the current match to
641 // "compl_leader". Except when at the original match and
642 // there is nothing to add, CTRL-L works like CTRL-P then.
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000643 if (c == Ctrl_L
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100644 && (!ctrl_x_mode_line_or_eval()
645 || ins_compl_long_shown_match()))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000646 {
647 ins_compl_addfrommatch();
648 continue;
649 }
650
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100651 // A non-white character that fits in with the current
652 // completion: Add to "compl_leader".
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000653 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000654 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100655#if defined(FEAT_EVAL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100656 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100657 char_u *str = do_insert_char_pre(c);
658 char_u *p;
659
660 if (str != NULL)
661 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100662 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100663 ins_compl_addleader(PTR2CHAR(p));
664 vim_free(str);
665 }
666 else
667#endif
668 ins_compl_addleader(c);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000669 continue;
670 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000671
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100672 // Pressing CTRL-Y selects the current match. When
673 // ins_compl_enter_selects() is set the Enter key does the
674 // same.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100675 if ((c == Ctrl_Y || (ins_compl_enter_selects()
Bram Moolenaarcbd3bd62016-10-17 20:47:02 +0200676 && (c == CAR || c == K_KENTER || c == NL)))
677 && stop_arrow() == OK)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000678 {
679 ins_compl_delete();
Bram Moolenaar472e8592016-10-15 17:06:47 +0200680 ins_compl_insert(FALSE);
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000681 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000682 }
683 }
684
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100685 // Prepare for or stop CTRL-X mode. This doesn't do completion, but
686 // it does fix up the text when finishing completion.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100687 ins_compl_init_get_longest();
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000688 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000689 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100691 // CTRL-\ CTRL-N goes to Normal mode,
692 // CTRL-\ CTRL-G goes to mode selected with 'insertmode',
693 // CTRL-\ CTRL-O is like CTRL-O but without moving the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 if (c == Ctrl_BSL)
695 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100696 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +0000697 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 ++no_mapping;
699 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000700 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 --no_mapping;
702 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000703 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100705 // it's something else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 vungetc(c);
707 c = Ctrl_BSL;
708 }
709 else if (c == Ctrl_G && p_im)
710 continue;
711 else
712 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000713 if (c == Ctrl_O)
714 {
715 ins_ctrl_o();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100716 ins_at_eol = FALSE; // cursor keeps its column
Bram Moolenaar488c6512005-08-11 20:09:58 +0000717 nomove = TRUE;
718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 count = 0;
720 goto doESCkey;
721 }
722 }
723
724#ifdef FEAT_DIGRAPHS
725 c = do_digraph(c);
726#endif
727
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100728 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode_cmdline())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 if (c == Ctrl_V || c == Ctrl_Q)
731 {
732 ins_ctrl_v();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100733 c = Ctrl_V; // pretend CTRL-V is last typed character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 continue;
735 }
736
737#ifdef FEAT_CINDENT
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200738 if (cindent_on() && ctrl_x_mode_none())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100740 // A key name preceded by a bang means this key is not to be
741 // inserted. Skip ahead to the re-indenting below.
742 // A key name preceded by a star means that indenting has to be
743 // done before inserting the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 line_is_white = inindent(0);
745 if (in_cinkeys(c, '!', line_is_white))
746 goto force_cindent;
747 if (can_cindent && in_cinkeys(c, '*', line_is_white)
748 && stop_arrow() == OK)
749 do_c_expr_indent();
750 }
751#endif
752
753#ifdef FEAT_RIGHTLEFT
754 if (curwin->w_p_rl)
755 switch (c)
756 {
757 case K_LEFT: c = K_RIGHT; break;
758 case K_S_LEFT: c = K_S_RIGHT; break;
759 case K_C_LEFT: c = K_C_RIGHT; break;
760 case K_RIGHT: c = K_LEFT; break;
761 case K_S_RIGHT: c = K_S_LEFT; break;
762 case K_C_RIGHT: c = K_C_LEFT; break;
763 }
764#endif
765
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 /*
767 * If 'keymodel' contains "startsel", may start selection. If it
768 * does, a CTRL-O and c will be stuffed, we need to get these
769 * characters.
770 */
771 if (ins_start_select(c))
772 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773
774 /*
775 * The big switch to handle a character in insert mode.
776 */
777 switch (c)
778 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100779 case ESC: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 if (echeck_abbr(ESC + ABBR_OFF))
781 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100782 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100784 case Ctrl_C: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785#ifdef FEAT_CMDWIN
786 if (c == Ctrl_C && cmdwin_type != 0)
787 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100788 // Close the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 cmdwin_result = K_IGNORE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100790 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000791 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 goto doESCkey;
793 }
794#endif
Bram Moolenaar0e5979a2018-06-17 19:36:33 +0200795#ifdef FEAT_JOB_CHANNEL
796 if (c == Ctrl_C && bt_prompt(curbuf))
797 {
798 if (invoke_prompt_interrupt())
799 {
800 if (!bt_prompt(curbuf))
801 // buffer changed to a non-prompt buffer, get out of
802 // Insert mode
803 goto doESCkey;
804 break;
805 }
806 }
807#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808
809#ifdef UNIX
810do_intr:
811#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100812 // when 'insertmode' set, and not halfway a mapping, don't leave
813 // Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 if (goto_im())
815 {
816 if (got_int)
817 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100818 (void)vgetc(); // flush all buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 got_int = FALSE;
820 }
821 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200822 vim_beep(BO_IM);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 break;
824 }
825doESCkey:
826 /*
827 * This is the ONLY return from edit()!
828 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100829 // Always update o_lnum, so that a "CTRL-O ." that adds a line
830 // still puts the cursor back after the inserted text.
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000831 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 o_lnum = curwin->w_cursor.lnum;
833
Bram Moolenaar488c6512005-08-11 20:09:58 +0000834 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +0000835 {
Bram Moolenaar4dbc2622018-11-02 11:59:15 +0100836 // When CTRL-C was typed got_int will be set, with the result
837 // that the autocommands won't be executed. When mapped got_int
838 // is not set, but let's keep the behavior the same.
839 if (cmdchar != 'r' && cmdchar != 'v' && c != Ctrl_C)
Bram Moolenaar9fa95062018-08-08 22:08:32 +0200840 ins_apply_autocmds(EVENT_INSERTLEAVE);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +0000841 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 continue;
845
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100846 case Ctrl_Z: // suspend when 'insertmode' set
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000847 if (!p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100848 goto normalchar; // insert CTRL-Z as normal char
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +0100849 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar74a47162017-02-26 19:09:05 +0100850#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100851 ui_cursor_shape(); // may need to update cursor shape
Bram Moolenaar74a47162017-02-26 19:09:05 +0100852#endif
853 continue;
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000854
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100855 case Ctrl_O: // execute one command
Bram Moolenaare344bea2005-09-01 20:46:49 +0000856#ifdef FEAT_COMPL_FUNC
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100857 if (ctrl_x_mode_omni())
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000858 goto docomplete;
859#endif
860 if (echeck_abbr(Ctrl_O + ABBR_OFF))
861 break;
862 ins_ctrl_o();
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000863
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100864 // don't move the cursor left when 'virtualedit' has "onemore".
Gary Johnson53ba05b2021-07-26 22:19:10 +0200865 if (get_ve_flags() & VE_ONEMORE)
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000866 {
867 ins_at_eol = FALSE;
868 nomove = TRUE;
869 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000870 count = 0;
871 goto doESCkey;
872
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100873 case K_INS: // toggle insert/replace mode
Bram Moolenaar572cb562005-08-05 21:35:02 +0000874 case K_KINS:
875 ins_insert(replaceState);
876 break;
877
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100878 case K_SELECT: // end of Select mode mapping - ignore
Bram Moolenaar572cb562005-08-05 21:35:02 +0000879 break;
880
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100881 case K_HELP: // Help key works like <ESC> <Help>
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000882 case K_F1:
883 case K_XF1:
884 stuffcharReadbuff(K_HELP);
885 if (p_im)
886 need_start_insertmode = TRUE;
887 goto doESCkey;
888
889#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100890 case K_F21: // NetBeans command
891 ++no_mapping; // don't map the next key hits
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000892 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000893 --no_mapping;
894 netbeans_keycommand(i);
895 break;
896#endif
897
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100898 case K_ZERO: // Insert the previously inserted text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 case NUL:
900 case Ctrl_A:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100901 // For ^@ the trailing ESC will end the insert, unless there is an
902 // error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
904 && c != Ctrl_A && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100905 goto doESCkey; // quit insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 inserted_space = FALSE;
907 break;
908
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100909 case Ctrl_R: // insert the contents of a register
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 ins_reg();
911 auto_format(FALSE, TRUE);
912 inserted_space = FALSE;
913 break;
914
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100915 case Ctrl_G: // commands starting with CTRL-G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 ins_ctrl_g();
917 break;
918
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100919 case Ctrl_HAT: // switch input mode and/or langmap
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000920 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 break;
922
923#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100924 case Ctrl__: // switch between languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 if (!p_ari)
926 goto normalchar;
927 ins_ctrl_();
928 break;
929#endif
930
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100931 case Ctrl_D: // Make indent one shiftwidth smaller.
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200932#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100933 if (ctrl_x_mode_path_defines())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 goto docomplete;
935#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100936 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100938 case Ctrl_T: // Make indent one shiftwidth greater.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100939 if (c == Ctrl_T && ctrl_x_mode_thesaurus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000941 if (has_compl_option(FALSE))
942 goto docomplete;
943 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200945
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 ins_shift(c, lastc);
947 auto_format(FALSE, TRUE);
948 inserted_space = FALSE;
949 break;
950
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100951 case K_DEL: // delete character under the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 case K_KDEL:
953 ins_del();
954 auto_format(FALSE, TRUE);
955 break;
956
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100957 case K_BS: // delete character before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 case Ctrl_H:
959 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
960 auto_format(FALSE, TRUE);
961 break;
962
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100963 case Ctrl_W: // delete word before the cursor
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200964#ifdef FEAT_JOB_CHANNEL
965 if (bt_prompt(curbuf) && (mod_mask & MOD_MASK_SHIFT) == 0)
966 {
967 // In a prompt window CTRL-W is used for window commands.
968 // Use Shift-CTRL-W to delete a word.
969 stuffcharReadbuff(Ctrl_W);
Bram Moolenaar942b4542018-06-17 16:23:34 +0200970 restart_edit = 'A';
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200971 nomove = TRUE;
972 count = 0;
973 goto doESCkey;
974 }
975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
977 auto_format(FALSE, TRUE);
978 break;
979
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100980 case Ctrl_U: // delete all inserted text in current line
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000981# ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100982 // CTRL-X CTRL-U completes with 'completefunc'.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100983 if (ctrl_x_mode_function())
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000984 goto docomplete;
985# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
987 auto_format(FALSE, TRUE);
988 inserted_space = FALSE;
989 break;
990
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100991 case K_LEFTMOUSE: // mouse keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 case K_LEFTMOUSE_NM:
993 case K_LEFTDRAG:
994 case K_LEFTRELEASE:
995 case K_LEFTRELEASE_NM:
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100996 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 case K_MIDDLEMOUSE:
998 case K_MIDDLEDRAG:
999 case K_MIDDLERELEASE:
1000 case K_RIGHTMOUSE:
1001 case K_RIGHTDRAG:
1002 case K_RIGHTRELEASE:
1003 case K_X1MOUSE:
1004 case K_X1DRAG:
1005 case K_X1RELEASE:
1006 case K_X2MOUSE:
1007 case K_X2DRAG:
1008 case K_X2RELEASE:
1009 ins_mouse(c);
1010 break;
1011
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001012 case K_MOUSEDOWN: // Default action for scroll wheel up: scroll up
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001013 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 break;
1015
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001016 case K_MOUSEUP: // Default action for scroll wheel down: scroll down
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001017 ins_mousescroll(MSCR_UP);
1018 break;
1019
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001020 case K_MOUSELEFT: // Scroll wheel left
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001021 ins_mousescroll(MSCR_LEFT);
1022 break;
1023
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001024 case K_MOUSERIGHT: // Scroll wheel right
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001025 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001027
Bram Moolenaarec2da362017-01-21 20:04:22 +01001028 case K_PS:
1029 bracketed_paste(PASTE_INSERT, FALSE, NULL);
1030 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001031 // invoked from normal mode, bail out
Bram Moolenaarec2da362017-01-21 20:04:22 +01001032 goto doESCkey;
1033 break;
1034 case K_PE:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001035 // Got K_PE without K_PS, ignore.
Bram Moolenaarec2da362017-01-21 20:04:22 +01001036 break;
1037
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001038#ifdef FEAT_GUI_TABLINE
1039 case K_TABLINE:
1040 case K_TABMENU:
1041 ins_tabline(c);
1042 break;
1043#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001045 case K_IGNORE: // Something mapped to nothing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 break;
1047
Bram Moolenaar957cf672020-11-12 14:21:06 +01001048 case K_COMMAND: // <Cmd>command<CR>
1049 do_cmdline(NULL, getcmdkeycmd, NULL, 0);
Bram Moolenaare41decc2020-11-14 21:34:59 +01001050#ifdef FEAT_TERMINAL
1051 if (term_use_loop())
1052 // Started a terminal that gets the input, exit Insert mode.
1053 goto doESCkey;
1054#endif
Bram Moolenaar957cf672020-11-12 14:21:06 +01001055 break;
1056
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001057 case K_CURSORHOLD: // Didn't type something for a while.
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001058 ins_apply_autocmds(EVENT_CURSORHOLDI);
Bram Moolenaar754b5602006-02-09 23:53:20 +00001059 did_cursorhold = TRUE;
1060 break;
Bram Moolenaar754b5602006-02-09 23:53:20 +00001061
Bram Moolenaar4f974752019-02-17 17:44:42 +01001062#ifdef FEAT_GUI_MSWIN
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001063 // On MS-Windows ignore <M-F4>, we get it when closing the window
1064 // was cancelled.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001065 case K_F4:
1066 if (mod_mask != MOD_MASK_ALT)
1067 goto normalchar;
1068 break;
1069#endif
1070
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071#ifdef FEAT_GUI
1072 case K_VER_SCROLLBAR:
1073 ins_scroll();
1074 break;
1075
1076 case K_HOR_SCROLLBAR:
1077 ins_horscroll();
1078 break;
1079#endif
1080
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001081 case K_HOME: // <Home>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 case K_S_HOME:
1084 case K_C_HOME:
1085 ins_home(c);
1086 break;
1087
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001088 case K_END: // <End>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 case K_S_END:
1091 case K_C_END:
1092 ins_end(c);
1093 break;
1094
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001095 case K_LEFT: // <Left>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001096 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1097 ins_s_left();
1098 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001099 ins_left();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 break;
1101
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001102 case K_S_LEFT: // <S-Left>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 case K_C_LEFT:
1104 ins_s_left();
1105 break;
1106
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001107 case K_RIGHT: // <Right>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001108 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1109 ins_s_right();
1110 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001111 ins_right();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 break;
1113
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001114 case K_S_RIGHT: // <S-Right>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 case K_C_RIGHT:
1116 ins_s_right();
1117 break;
1118
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001119 case K_UP: // <Up>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001120 if (pum_visible())
1121 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001122 if (mod_mask & MOD_MASK_SHIFT)
1123 ins_pageup();
1124 else
1125 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 break;
1127
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001128 case K_S_UP: // <S-Up>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 case K_PAGEUP:
1130 case K_KPAGEUP:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001131 if (pum_visible())
1132 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 ins_pageup();
1134 break;
1135
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001136 case K_DOWN: // <Down>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001137 if (pum_visible())
1138 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001139 if (mod_mask & MOD_MASK_SHIFT)
1140 ins_pagedown();
1141 else
1142 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 break;
1144
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001145 case K_S_DOWN: // <S-Down>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 case K_PAGEDOWN:
1147 case K_KPAGEDOWN:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001148 if (pum_visible())
1149 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 ins_pagedown();
1151 break;
1152
1153#ifdef FEAT_DND
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001154 case K_DROP: // drag-n-drop event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 ins_drop();
1156 break;
1157#endif
1158
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001159 case K_S_TAB: // When not mapped, use like a normal TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 c = TAB;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001161 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001163 case TAB: // TAB or Complete patterns along path
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001164#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001165 if (ctrl_x_mode_path_patterns())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 goto docomplete;
1167#endif
1168 inserted_space = FALSE;
1169 if (ins_tab())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001170 goto normalchar; // insert TAB as a normal char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 auto_format(FALSE, TRUE);
1172 break;
1173
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001174 case K_KENTER: // <Enter>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 c = CAR;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001176 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 case CAR:
1178 case NL:
Bram Moolenaar4033c552017-09-16 20:54:51 +02001179#if defined(FEAT_QUICKFIX)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001180 // In a quickfix window a <CR> jumps to the error under the
1181 // cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 if (bt_quickfix(curbuf) && c == CAR)
1183 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001184 if (curwin->w_llist_ref == NULL) // quickfix window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001185 do_cmdline_cmd((char_u *)".cc");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001186 else // location list window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001187 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 break;
1189 }
1190#endif
1191#ifdef FEAT_CMDWIN
1192 if (cmdwin_type != 0)
1193 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001194 // Execute the command in the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 cmdwin_result = CAR;
1196 goto doESCkey;
1197 }
1198#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02001199#ifdef FEAT_JOB_CHANNEL
1200 if (bt_prompt(curbuf))
1201 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02001202 invoke_prompt_callback();
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02001203 if (!bt_prompt(curbuf))
1204 // buffer changed to a non-prompt buffer, get out of
1205 // Insert mode
Bram Moolenaarf2732452018-06-03 14:47:35 +02001206 goto doESCkey;
1207 break;
1208 }
1209#endif
Bram Moolenaar24a2d722018-04-24 19:36:43 +02001210 if (ins_eol(c) == FAIL && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001211 goto doESCkey; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 auto_format(FALSE, FALSE);
1213 inserted_space = FALSE;
1214 break;
1215
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001216 case Ctrl_K: // digraph or keyword completion
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001217 if (ctrl_x_mode_dictionary())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001219 if (has_compl_option(TRUE))
1220 goto docomplete;
1221 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001223#ifdef FEAT_DIGRAPHS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 c = ins_digraph();
1225 if (c == NUL)
1226 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001227#endif
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001228 goto normalchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001230 case Ctrl_X: // Enter CTRL-X mode
Bram Moolenaar572cb562005-08-05 21:35:02 +00001231 ins_ctrl_x();
1232 break;
1233
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001234 case Ctrl_RSB: // Tag name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001235 if (!ctrl_x_mode_tags())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 goto normalchar;
1237 goto docomplete;
1238
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001239 case Ctrl_F: // File name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001240 if (!ctrl_x_mode_files())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 goto normalchar;
1242 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001243
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001244 case 's': // Spelling completion after ^X
Bram Moolenaar488c6512005-08-11 20:09:58 +00001245 case Ctrl_S:
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001246 if (!ctrl_x_mode_spell())
Bram Moolenaar488c6512005-08-11 20:09:58 +00001247 goto normalchar;
1248 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001250 case Ctrl_L: // Whole line completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001251 if (!ctrl_x_mode_whole_line())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001253 // CTRL-L with 'insertmode' set: Leave Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 if (p_im)
1255 {
1256 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1257 break;
1258 goto doESCkey;
1259 }
1260 goto normalchar;
1261 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001262 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001264 case Ctrl_P: // Do previous/next pattern completion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 case Ctrl_N:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001266 // if 'complete' is empty then plain ^P is no longer special,
1267 // but it is under other ^X modes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 if (*curbuf->b_p_cpt == NUL
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001269 && (ctrl_x_mode_normal() || ctrl_x_mode_whole_line())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001270 && !(compl_cont_status & CONT_LOCAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 goto normalchar;
1272
1273docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001274 compl_busy = TRUE;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001275#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001276 disable_fold_update++; // don't redraw folds here
Bram Moolenaara6c07602017-03-05 21:18:27 +01001277#endif
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01001278 if (ins_complete(c, TRUE) == FAIL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001279 compl_cont_status = 0;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001280#ifdef FEAT_FOLDING
Bram Moolenaar429fcfb2016-04-14 16:22:04 +02001281 disable_fold_update--;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001282#endif
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001283 compl_busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001286 case Ctrl_Y: // copy from previous line or scroll down
1287 case Ctrl_E: // copy from next line or scroll up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001288 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 break;
1290
1291 default:
1292#ifdef UNIX
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001293 if (c == intr_char) // special interrupt char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 goto do_intr;
1295#endif
1296
Bram Moolenaare659c952011-05-19 17:25:41 +02001297normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001299 * Insert a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001301#if defined(FEAT_EVAL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001302 if (!p_paste)
1303 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001304 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001305 char_u *str = do_insert_char_pre(c);
1306 char_u *p;
1307
1308 if (str != NULL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001309 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001310 if (*str != NUL && stop_arrow() != FAIL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001311 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001312 // Insert the new value of v:char literally.
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001313 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaare659c952011-05-19 17:25:41 +02001314 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001315 c = PTR2CHAR(p);
1316 if (c == CAR || c == K_KENTER || c == NL)
1317 ins_eol(c);
1318 else
1319 ins_char(c);
Bram Moolenaare659c952011-05-19 17:25:41 +02001320 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001321 AppendToRedobuffLit(str, -1);
Bram Moolenaare659c952011-05-19 17:25:41 +02001322 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001323 vim_free(str);
1324 c = NUL;
Bram Moolenaare659c952011-05-19 17:25:41 +02001325 }
1326
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001327 // If the new value is already inserted or an empty string
1328 // then don't insert any character.
Bram Moolenaare659c952011-05-19 17:25:41 +02001329 if (c == NUL)
1330 break;
1331 }
1332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333#ifdef FEAT_SMARTINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001334 // Try to perform smart-indenting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 ins_try_si(c);
1336#endif
1337
1338 if (c == ' ')
1339 {
1340 inserted_space = TRUE;
1341#ifdef FEAT_CINDENT
1342 if (inindent(0))
1343 can_cindent = FALSE;
1344#endif
1345 if (Insstart_blank_vcol == MAXCOL
1346 && curwin->w_cursor.lnum == Insstart.lnum)
1347 Insstart_blank_vcol = get_nolist_virtcol();
1348 }
1349
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001350 // Insert a normal character and check for abbreviations on a
1351 // special character. Let CTRL-] expand abbreviations without
1352 // inserting it.
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02001353 if (vim_iswordc(c) || (!echeck_abbr(
Bram Moolenaar13505972019-01-24 15:04:48 +01001354 // Add ABBR_OFF for characters above 0x100, this is
1355 // what check_abbr() expects.
1356 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
1357 && c != Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 {
1359 insert_special(c, FALSE, FALSE);
1360#ifdef FEAT_RIGHTLEFT
1361 revins_legal++;
1362 revins_chars++;
1363#endif
1364 }
1365
1366 auto_format(FALSE, TRUE);
1367
1368#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001369 // When inserting a character the cursor line must never be in a
1370 // closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 foldOpenCursor();
1372#endif
1373 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001374 } // end of switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001376 // If typed something may trigger CursorHoldI again.
Bram Moolenaar245c4102016-04-20 17:37:41 +02001377 if (c != K_CURSORHOLD
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001378#ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001379 // but not in CTRL-X mode, a script can't restore the state
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001380 && ctrl_x_mode_normal()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001381#endif
Bram Moolenaar245c4102016-04-20 17:37:41 +02001382 )
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001383 did_cursorhold = FALSE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001384
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001385 // If the cursor was moved we didn't just insert a space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 if (arrow_used)
1387 inserted_space = FALSE;
1388
1389#ifdef FEAT_CINDENT
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001390 if (can_cindent && cindent_on() && ctrl_x_mode_normal())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 {
1392force_cindent:
1393 /*
1394 * Indent now if a key was typed that is in 'cinkeys'.
1395 */
1396 if (in_cinkeys(c, ' ', line_is_white))
1397 {
1398 if (stop_arrow() == OK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001399 // re-indent the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 do_c_expr_indent();
1401 }
1402 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001403#endif // FEAT_CINDENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001405 } // for (;;)
1406 // NOTREACHED
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407}
1408
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001409 int
1410ins_need_undo_get(void)
1411{
1412 return ins_need_undo;
1413}
1414
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415/*
1416 * Redraw for Insert mode.
1417 * This is postponed until getting the next character to make '$' in the 'cpo'
1418 * option work correctly.
1419 * Only redraw when there are no characters available. This speeds up
1420 * inserting sequences of characters (e.g., for CTRL-R).
1421 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001422 void
Bram Moolenaar3397f742019-06-02 18:40:06 +02001423ins_redraw(int ready) // not busy with something
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001425#ifdef FEAT_CONCEAL
1426 linenr_T conceal_old_cursor_line = 0;
1427 linenr_T conceal_new_cursor_line = 0;
1428 int conceal_update_lines = FALSE;
1429#endif
1430
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001431 if (char_avail())
1432 return;
1433
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001434 // Trigger CursorMoved if the cursor moved. Not when the popup menu is
1435 // visible, the command might delete it.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001436 if (ready && (has_cursormovedI()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001437# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001438 || popup_visible
1439# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001440# if defined(FEAT_CONCEAL)
1441 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001442# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001443 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001444 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001445 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001446 {
1447# ifdef FEAT_SYN_HL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001448 // Need to update the screen first, to make sure syntax
1449 // highlighting is correct after making a change (e.g., inserting
1450 // a "(". The autocommand may also require a redraw, so it's done
1451 // again below, unfortunately.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001452 if (syntax_present(curwin) && must_redraw)
1453 update_screen(0);
1454# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001455 if (has_cursormovedI())
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001456 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001457 // Make sure curswant is correct, an autocommand may call
1458 // getcurpos().
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001459 update_curswant();
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001460 ins_apply_autocmds(EVENT_CURSORMOVEDI);
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001461 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001462#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001463 if (popup_visible)
1464 popup_check_cursor_pos();
1465#endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001466# ifdef FEAT_CONCEAL
1467 if (curwin->w_p_cole > 0)
1468 {
1469 conceal_old_cursor_line = last_cursormoved.lnum;
1470 conceal_new_cursor_line = curwin->w_cursor.lnum;
1471 conceal_update_lines = TRUE;
1472 }
1473# endif
1474 last_cursormoved = curwin->w_cursor;
1475 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001476
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001477 // Trigger TextChangedI if b_changedtick differs.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001478 if (ready && has_textchangedI()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001479 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001480 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001481 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001482 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001483 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar91d2e782018-08-07 19:05:01 +02001484
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001485 // save and restore curwin and curbuf, in case the autocmd changes them
1486 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001487 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001488 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001489 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001490 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1491 u_save(curwin->w_cursor.lnum,
1492 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 }
Bram Moolenaar5a093432018-02-10 18:15:19 +01001494
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001495 // Trigger TextChangedP if b_changedtick differs. When the popupmenu closes
1496 // TextChangedI will need to trigger for backwards compatibility, thus use
1497 // different b_last_changedtick* variables.
Bram Moolenaar5a093432018-02-10 18:15:19 +01001498 if (ready && has_textchangedP()
1499 && curbuf->b_last_changedtick_pum != CHANGEDTICK(curbuf)
1500 && pum_visible())
1501 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001502 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001503 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001504
1505 // save and restore curwin and curbuf, in case the autocmd changes them
1506 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001507 apply_autocmds(EVENT_TEXTCHANGEDP, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001508 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001509 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001510 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1511 u_save(curwin->w_cursor.lnum,
1512 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar5a093432018-02-10 18:15:19 +01001513 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001514
Bram Moolenaar8aeec402019-09-15 23:02:04 +02001515 // Trigger SafeState if nothing is pending.
1516 may_trigger_safestate(ready
1517 && !ins_compl_active()
1518 && !pum_visible());
1519
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001520#if defined(FEAT_CONCEAL)
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001521 if ((conceal_update_lines
1522 && (conceal_old_cursor_line != conceal_new_cursor_line
1523 || conceal_cursor_line(curwin)))
1524 || need_cursor_line_redraw)
1525 {
1526 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001527 redrawWinline(curwin, conceal_old_cursor_line);
1528 redrawWinline(curwin, conceal_new_cursor_line == 0
1529 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001530 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001531 need_cursor_line_redraw = FALSE;
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001532 }
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001533#endif
1534 if (must_redraw)
1535 update_screen(0);
1536 else if (clear_cmdline || redraw_cmdline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001537 showmode(); // clear cmdline and show mode
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001538 showruler(FALSE);
1539 setcursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001540 emsg_on_display = FALSE; // may remove error message now
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541}
1542
1543/*
1544 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1545 */
1546 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001547ins_ctrl_v(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548{
1549 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001550 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001552 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00001553 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554
1555 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001556 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001558 did_putchar = TRUE;
1559 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001560 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561
1562#ifdef FEAT_CMDL_INFO
1563 add_to_showcmd_c(Ctrl_V);
1564#endif
1565
Bram Moolenaar0684e362020-12-03 19:54:42 +01001566 // Do not change any modifyOtherKeys ESC sequence to a normal key for
1567 // CTRL-SHIFT-V.
1568 c = get_literal(mod_mask & MOD_MASK_SHIFT);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001569 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001570 // when the line fits in 'columns' the '^' is at the start of the next
1571 // line and will not removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001572 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573#ifdef FEAT_CMDL_INFO
1574 clear_showcmd();
1575#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001576
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 insert_special(c, FALSE, TRUE);
1578#ifdef FEAT_RIGHTLEFT
1579 revins_chars++;
1580 revins_legal++;
1581#endif
1582}
1583
1584/*
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001585 * After getting an ESC or CSI for a literal key: If the typeahead buffer
1586 * contains a modifyOtherKeys sequence then decode it and return the result.
1587 * Otherwise return "c".
1588 * Note that this doesn't wait for characters, they must be in the typeahead
1589 * buffer already.
1590 */
Yegappan Lakshmanan8ee52af2021-08-09 19:59:06 +02001591 static int
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001592decodeModifyOtherKeys(int c)
1593{
1594 char_u *p = typebuf.tb_buf + typebuf.tb_off;
1595 int idx;
1596 int form = 0;
1597 int argidx = 0;
1598 int arg[2] = {0, 0};
1599
1600 // Recognize:
1601 // form 0: {lead}{key};{modifier}u
1602 // form 1: {lead}27;{modifier};{key}~
Bram Moolenaar82aa6e02021-01-17 22:04:02 +01001603 if (typebuf.tb_len >= 4 && (c == CSI || (c == ESC && *p == '[')))
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001604 {
1605 idx = (*p == '[');
1606 if (p[idx] == '2' && p[idx + 1] == '7' && p[idx + 2] == ';')
1607 {
1608 form = 1;
1609 idx += 3;
1610 }
1611 while (idx < typebuf.tb_len && argidx < 2)
1612 {
1613 if (p[idx] == ';')
1614 ++argidx;
1615 else if (VIM_ISDIGIT(p[idx]))
1616 arg[argidx] = arg[argidx] * 10 + (p[idx] - '0');
1617 else
1618 break;
1619 ++idx;
1620 }
1621 if (idx < typebuf.tb_len
1622 && p[idx] == (form == 1 ? '~' : 'u')
1623 && argidx == 1)
1624 {
1625 // Match, consume the code.
1626 typebuf.tb_off += idx + 1;
1627 typebuf.tb_len -= idx + 1;
Bram Moolenaare49b4bb2020-03-11 13:01:40 +01001628#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
1629 if (typebuf.tb_len == 0)
1630 typebuf_was_filled = FALSE;
1631#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001632
1633 mod_mask = decode_modifiers(arg[!form]);
Bram Moolenaar975a8802020-06-06 22:36:24 +02001634 c = merge_modifyOtherKeys(arg[form], &mod_mask);
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001635 }
1636 }
1637
1638 return c;
1639}
1640
1641/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 * Put a character directly onto the screen. It's not stored in a buffer.
1643 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1644 */
1645static int pc_status;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001646#define PC_STATUS_UNSET 0 // pc_bytes was not set
1647#define PC_STATUS_RIGHT 1 // right halve of double-wide char
1648#define PC_STATUS_LEFT 2 // left halve of double-wide char
1649#define PC_STATUS_SET 3 // pc_bytes was filled
1650static char_u pc_bytes[MB_MAXBYTES + 1]; // saved bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651static int pc_attr;
1652static int pc_row;
1653static int pc_col;
1654
1655 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001656edit_putchar(int c, int highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657{
1658 int attr;
1659
1660 if (ScreenLines != NULL)
1661 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001662 update_topline(); // just in case w_topline isn't valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 validate_cursor();
1664 if (highlight)
Bram Moolenaar8820b482017-03-16 17:23:31 +01001665 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 else
1667 attr = 0;
1668 pc_row = W_WINROW(curwin) + curwin->w_wrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02001669 pc_col = curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 pc_status = PC_STATUS_UNSET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671#ifdef FEAT_RIGHTLEFT
1672 if (curwin->w_p_rl)
1673 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001674 pc_col += curwin->w_width - 1 - curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 if (has_mbyte)
1676 {
1677 int fix_col = mb_fix_col(pc_col, pc_row);
1678
1679 if (fix_col != pc_col)
1680 {
1681 screen_putchar(' ', pc_row, fix_col, attr);
1682 --curwin->w_wcol;
1683 pc_status = PC_STATUS_RIGHT;
1684 }
1685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 }
1687 else
1688#endif
1689 {
1690 pc_col += curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 if (mb_lefthalve(pc_row, pc_col))
1692 pc_status = PC_STATUS_LEFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 }
1694
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001695 // save the character to be able to put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 if (pc_status == PC_STATUS_UNSET)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 {
1698 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1699 pc_status = PC_STATUS_SET;
1700 }
1701 screen_putchar(c, pc_row, pc_col, attr);
1702 }
1703}
1704
Bram Moolenaarf2732452018-06-03 14:47:35 +02001705/*
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001706 * Set the insert start position for when using a prompt buffer.
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001707 */
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001708 void
1709set_insstart(linenr_T lnum, int col)
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001710{
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001711 Insstart.lnum = lnum;
1712 Insstart.col = col;
1713 Insstart_orig = Insstart;
1714 Insstart_textlen = Insstart.col;
1715 Insstart_blank_vcol = MAXCOL;
1716 arrow_used = FALSE;
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001717}
1718
1719/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 * Undo the previous edit_putchar().
1721 */
1722 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001723edit_unputchar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724{
1725 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1726 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 if (pc_status == PC_STATUS_RIGHT)
1728 ++curwin->w_wcol;
1729 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001730 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1733 }
1734}
1735
1736/*
1737 * Called when p_dollar is set: display a '$' at the end of the changed text
1738 * Only works when cursor is in the line that changes.
1739 */
1740 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001741display_dollar(colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742{
1743 colnr_T save_col;
1744
1745 if (!redrawing())
1746 return;
1747
1748 cursor_off();
1749 save_col = curwin->w_cursor.col;
1750 curwin->w_cursor.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 if (has_mbyte)
1752 {
1753 char_u *p;
1754
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001755 // If on the last byte of a multi-byte move to the first byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 p = ml_get_curline();
1757 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1758 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001759 curs_columns(FALSE); // recompute w_wrow and w_wcol
Bram Moolenaar02631462017-09-22 15:20:32 +02001760 if (curwin->w_wcol < curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 {
1762 edit_putchar('$', FALSE);
1763 dollar_vcol = curwin->w_virtcol;
1764 }
1765 curwin->w_cursor.col = save_col;
1766}
1767
1768/*
1769 * Call this function before moving the cursor from the normal insert position
1770 * in insert mode.
1771 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001772 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001773undisplay_dollar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001775 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001777 dollar_vcol = -1;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001778 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 }
1780}
1781
1782/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 * Truncate the space at the end of a line. This is to be used only in an
1784 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
1785 * modes.
1786 */
1787 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001788truncate_spaces(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789{
1790 int i;
1791
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001792 // find start of trailing white space
Bram Moolenaar1c465442017-03-12 20:10:05 +01001793 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 {
1795 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001796 replace_join(0); // remove a NUL from the replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 }
1798 line[i + 1] = NUL;
1799}
1800
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801/*
1802 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
1803 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001804 * Will attempt not to go before "col" even when there is a composing
1805 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 */
1807 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001808backspace_until_column(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809{
1810 while ((int)curwin->w_cursor.col > col)
1811 {
1812 curwin->w_cursor.col--;
1813 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001814 replace_do_bs(col);
1815 else if (!del_char_after_col(col))
1816 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 }
1818}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001820/*
1821 * Like del_char(), but make sure not to go before column "limit_col".
1822 * Only matters when there are composing characters.
1823 * Return TRUE when something was deleted.
1824 */
1825 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001826del_char_after_col(int limit_col UNUSED)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001827{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001828 if (enc_utf8 && limit_col >= 0)
1829 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001830 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001831
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001832 // Make sure the cursor is at the start of a character, but
1833 // skip forward again when going too far back because of a
1834 // composing character.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001835 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00001836 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001837 {
1838 int l = utf_ptr2len(ml_get_cursor());
1839
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001840 if (l == 0) // end of line
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001841 break;
1842 curwin->w_cursor.col += l;
1843 }
1844 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
1845 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001846 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001847 }
1848 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001849 (void)del_char(FALSE);
1850 return TRUE;
1851}
1852
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853/*
1854 * Next character is interpreted literally.
1855 * A one, two or three digit decimal number is interpreted as its byte value.
1856 * If one or two digits are entered, the next character is given to vungetc().
1857 * For Unicode a character > 255 may be returned.
Bram Moolenaar0684e362020-12-03 19:54:42 +01001858 * If "noReduceKeys" is TRUE do not change any modifyOtherKeys ESC sequence
1859 * into a normal key, return ESC.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 */
1861 int
Bram Moolenaar0684e362020-12-03 19:54:42 +01001862get_literal(int noReduceKeys)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863{
1864 int cc;
1865 int nc;
1866 int i;
1867 int hex = FALSE;
1868 int octal = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 int unicode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870
1871 if (got_int)
1872 return Ctrl_C;
1873
1874#ifdef FEAT_GUI
1875 /*
1876 * In GUI there is no point inserting the internal code for a special key.
1877 * It is more useful to insert the string "<KEY>" instead. This would
1878 * probably be useful in a text window too, but it would not be
1879 * vi-compatible (maybe there should be an option for it?) -- webb
1880 */
1881 if (gui.in_use)
1882 ++allow_keys;
1883#endif
1884#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001885 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001887 ++no_mapping; // don't map the next key hits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 cc = 0;
1889 i = 0;
1890 for (;;)
1891 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001892 nc = plain_vgetc();
Bram Moolenaar0684e362020-12-03 19:54:42 +01001893 if ((nc == ESC || nc == CSI) && !noReduceKeys)
1894 nc = decodeModifyOtherKeys(nc);
1895
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896#ifdef FEAT_CMDL_INFO
Bram Moolenaar13505972019-01-24 15:04:48 +01001897 if (!(State & CMDLINE) && MB_BYTE2LEN_CHECK(nc) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 add_to_showcmd(nc);
1899#endif
1900 if (nc == 'x' || nc == 'X')
1901 hex = TRUE;
1902 else if (nc == 'o' || nc == 'O')
1903 octal = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 else if (nc == 'u' || nc == 'U')
1905 unicode = nc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 else
1907 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001908 if (hex || unicode != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 {
1910 if (!vim_isxdigit(nc))
1911 break;
1912 cc = cc * 16 + hex2nr(nc);
1913 }
1914 else if (octal)
1915 {
1916 if (nc < '0' || nc > '7')
1917 break;
1918 cc = cc * 8 + nc - '0';
1919 }
1920 else
1921 {
1922 if (!VIM_ISDIGIT(nc))
1923 break;
1924 cc = cc * 10 + nc - '0';
1925 }
1926
1927 ++i;
1928 }
1929
Bram Moolenaar13505972019-01-24 15:04:48 +01001930 if (cc > 255 && unicode == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001931 cc = 255; // limit range to 0-255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 nc = 0;
1933
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001934 if (hex) // hex: up to two chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 {
1936 if (i >= 2)
1937 break;
1938 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001939 else if (unicode) // Unicode: up to four or eight chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 {
1941 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
1942 break;
1943 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001944 else if (i >= 3) // decimal or octal: up to three chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 break;
1946 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001947 if (i == 0) // no number entered
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001949 if (nc == K_ZERO) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 {
1951 cc = '\n';
1952 nc = 0;
1953 }
1954 else
1955 {
1956 cc = nc;
1957 nc = 0;
1958 }
1959 }
1960
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001961 if (cc == 0) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00001963 if (enc_dbcs && (cc & 0xff) == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001964 cc = '?'; // don't accept an illegal DBCS char, the NUL in the
1965 // second byte will cause trouble!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966
1967 --no_mapping;
1968#ifdef FEAT_GUI
1969 if (gui.in_use)
1970 --allow_keys;
1971#endif
1972 if (nc)
1973 vungetc(nc);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001974 got_int = FALSE; // CTRL-C typed after CTRL-V is not an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 return cc;
1976}
1977
1978/*
1979 * Insert character, taking care of special keys and mod_mask
1980 */
1981 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001982insert_special(
1983 int c,
1984 int allow_modmask,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001985 int ctrlv) // c was typed after CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986{
1987 char_u *p;
1988 int len;
1989
1990 /*
1991 * Special function key, translate into "<Key>". Up to the last '>' is
1992 * inserted with ins_str(), so as not to replace characters in replace
1993 * mode.
1994 * Only use mod_mask for special keys, to avoid things like <S-Space>,
1995 * unless 'allow_modmask' is TRUE.
1996 */
Bram Moolenaard0573012017-10-28 21:11:06 +02001997#ifdef MACOS_X
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001998 // Command-key never produces a normal key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 if (mod_mask & MOD_MASK_CMD)
2000 allow_modmask = TRUE;
2001#endif
2002 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
2003 {
2004 p = get_special_key_name(c, mod_mask);
2005 len = (int)STRLEN(p);
2006 c = p[len - 1];
2007 if (len > 2)
2008 {
2009 if (stop_arrow() == FAIL)
2010 return;
2011 p[len - 1] = NUL;
2012 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00002013 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 ctrlv = FALSE;
2015 }
2016 }
2017 if (stop_arrow() == OK)
2018 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
2019}
2020
2021/*
2022 * Special characters in this context are those that need processing other
2023 * than the simple insertion that can be performed here. This includes ESC
2024 * which terminates the insert, and CR/NL which need special processing to
2025 * open up a new line. This routine tries to optimize insertions performed by
2026 * the "redo", "undo" or "put" commands, so it needs to know when it should
2027 * stop and defer processing to the "normal" mechanism.
2028 * '0' and '^' are special, because they can be followed by CTRL-D.
2029 */
2030#ifdef EBCDIC
2031# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
2032#else
2033# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
2034#endif
2035
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02002036/*
2037 * "flags": INSCHAR_FORMAT - force formatting
2038 * INSCHAR_CTRLV - char typed just after CTRL-V
2039 * INSCHAR_NO_FEX - don't use 'formatexpr'
2040 *
2041 * NOTE: passes the flags value straight through to internal_format() which,
2042 * beside INSCHAR_FORMAT (above), is also looking for these:
2043 * INSCHAR_DO_COM - format comments
2044 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
2045 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002047insertchar(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002048 int c, // character to insert or NUL
2049 int flags, // INSCHAR_FORMAT, etc.
2050 int second_indent) // indent for second line if >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 int textwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 int fo_ins_blank;
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002055 int force_format = flags & INSCHAR_FORMAT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002057 textwidth = comp_textwidth(force_format);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
2060 /*
2061 * Try to break the line in two or more pieces when:
2062 * - Always do this if we have been called to do formatting only.
2063 * - Always do this when 'formatoptions' has the 'a' flag and the line
2064 * ends in white space.
2065 * - Otherwise:
2066 * - Don't do this if inserting a blank
2067 * - Don't do this if an existing character is being replaced, unless
2068 * we're in VREPLACE mode.
2069 * - Do this if the cursor is not on the line where insert started
2070 * or - 'formatoptions' doesn't have 'l' or the line was not too long
2071 * before the insert.
2072 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
2073 * before 'textwidth'
2074 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002075 if (textwidth > 0
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002076 && (force_format
Bram Moolenaar1c465442017-03-12 20:10:05 +01002077 || (!VIM_ISWHITE(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 && !((State & REPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 && !(State & VREPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 && *ml_get_cursor() != NUL)
2081 && (curwin->w_cursor.lnum != Insstart.lnum
2082 || ((!has_format_option(FO_INS_LONG)
2083 || Insstart_textlen <= (colnr_T)textwidth)
2084 && (!fo_ins_blank
2085 || Insstart_blank_vcol <= (colnr_T)textwidth
2086 ))))))
2087 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002088 // Format with 'formatexpr' when it's set. Use internal formatting
2089 // when 'formatexpr' isn't set or it returns non-zero.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002090#if defined(FEAT_EVAL)
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002091 int do_internal = TRUE;
2092 colnr_T virtcol = get_nolist_virtcol()
2093 + char2cells(c != NUL ? c : gchar_cursor());
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002094
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002095 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0
2096 && (force_format || virtcol > (colnr_T)textwidth))
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002097 {
2098 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002099 // It may be required to save for undo again, e.g. when setline()
2100 // was called.
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002101 ins_need_undo = TRUE;
2102 }
2103 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00002105 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002107
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002108 if (c == NUL) // only formatting was wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 return;
2110
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002111 // Check whether this character should end a comment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 if (did_ai && (int)c == end_comment_pending)
2113 {
2114 char_u *line;
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002115 char_u lead_end[COM_MAX_LEN]; // end-comment string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 int middle_len, end_len;
2117 int i;
2118
2119 /*
2120 * Need to remove existing (middle) comment leader and insert end
2121 * comment leader. First, check what comment leader we can find.
2122 */
Bram Moolenaar81340392012-06-06 16:12:59 +02002123 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002124 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) // Just checking
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002126 // Skip middle-comment string
2127 while (*p && p[-1] != ':') // find end of middle flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 ++p;
2129 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002130 // Don't count trailing white space for middle_len
Bram Moolenaar1c465442017-03-12 20:10:05 +01002131 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 --middle_len;
2133
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002134 // Find the end-comment string
2135 while (*p && p[-1] != ':') // find end of end flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 ++p;
2137 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
2138
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002139 // Skip white space before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 i = curwin->w_cursor.col;
Bram Moolenaar1c465442017-03-12 20:10:05 +01002141 while (--i >= 0 && VIM_ISWHITE(line[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 ;
2143 i++;
2144
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002145 // Skip to before the middle leader
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 i -= middle_len;
2147
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002148 // Check some expected things before we go on
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
2150 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002151 // Backspace over all the stuff we want to replace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 backspace_until_column(i);
2153
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002154 // Insert the end-comment string, except for the last
2155 // character, which will get inserted as normal later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 ins_bytes_len(lead_end, end_len - 1);
2157 }
2158 }
2159 }
2160 end_comment_pending = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161
2162 did_ai = FALSE;
2163#ifdef FEAT_SMARTINDENT
2164 did_si = FALSE;
2165 can_si = FALSE;
2166 can_si_back = FALSE;
2167#endif
2168
2169 /*
2170 * If there's any pending input, grab up to INPUT_BUFLEN at once.
2171 * This speeds up normal text input considerably.
2172 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
2173 * need to re-indent at a ':', or any other character (but not what
2174 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01002175 * Don't do this when there an InsertCharPre autocommand is defined,
2176 * because we need to fire the event for every character.
Bram Moolenaar39de9522018-05-08 22:48:00 +02002177 * Do the check for InsertCharPre before the call to vpeekc() because the
2178 * InsertCharPre autocommand could change the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 */
2180#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002181 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182#endif
2183
2184 if ( !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 && (!has_mbyte || (*mb_char2len)(c) == 1)
Bram Moolenaar39de9522018-05-08 22:48:00 +02002186 && !has_insertcharpre()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 && vpeekc() != NUL
2188 && !(State & REPLACE_FLAG)
2189#ifdef FEAT_CINDENT
2190 && !cindent_on()
2191#endif
2192#ifdef FEAT_RIGHTLEFT
2193 && !p_ri
2194#endif
Bram Moolenaar39de9522018-05-08 22:48:00 +02002195 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 {
2197#define INPUT_BUFLEN 100
2198 char_u buf[INPUT_BUFLEN + 1];
2199 int i;
2200 colnr_T virtcol = 0;
2201
2202 buf[0] = c;
2203 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002204 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 virtcol = get_nolist_virtcol();
2206 /*
2207 * Stop the string when:
2208 * - no more chars available
2209 * - finding a special character (command key)
2210 * - buffer is full
2211 * - running into the 'textwidth' boundary
2212 * - need to check for abbreviation: A non-word char after a word-char
2213 */
2214 while ( (c = vpeekc()) != NUL
2215 && !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 && i < INPUT_BUFLEN
2218 && (textwidth == 0
2219 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
2220 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
2221 {
2222#ifdef FEAT_RIGHTLEFT
2223 c = vgetc();
2224 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002225 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 buf[i++] = c;
2227#else
2228 buf[i++] = vgetc();
2229#endif
2230 }
2231
2232#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002233 do_digraph(-1); // clear digraphs
2234 do_digraph(buf[i-1]); // may be the start of a digraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235#endif
2236 buf[i] = NUL;
2237 ins_str(buf);
2238 if (flags & INSCHAR_CTRLV)
2239 {
2240 redo_literal(*buf);
2241 i = 1;
2242 }
2243 else
2244 i = 0;
2245 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002246 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 }
2248 else
2249 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002250 int cc;
2251
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
2253 {
2254 char_u buf[MB_MAXBYTES + 1];
2255
2256 (*mb_char2bytes)(c, buf);
2257 buf[cc] = NUL;
2258 ins_char_bytes(buf, cc);
2259 AppendCharToRedobuff(c);
2260 }
2261 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 {
2263 ins_char(c);
2264 if (flags & INSCHAR_CTRLV)
2265 redo_literal(c);
2266 else
2267 AppendCharToRedobuff(c);
2268 }
2269 }
2270}
2271
2272/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 * Put a character in the redo buffer, for when just after a CTRL-V.
2274 */
2275 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002276redo_literal(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277{
2278 char_u buf[10];
2279
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002280 // Only digits need special treatment. Translate them into a string of
2281 // three digits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 if (VIM_ISDIGIT(c))
2283 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002284 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 AppendToRedobuff(buf);
2286 }
2287 else
2288 AppendCharToRedobuff(c);
2289}
2290
2291/*
2292 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002293 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01002295 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002296start_arrow(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002297 pos_T *end_insert_pos) // can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298{
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002299 start_arrow_common(end_insert_pos, TRUE);
2300}
2301
2302/*
2303 * Like start_arrow() but with end_change argument.
2304 * Will prepare for redo of CTRL-G U if "end_change" is FALSE.
2305 */
2306 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002307start_arrow_with_change(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002308 pos_T *end_insert_pos, // can be NULL
2309 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002310{
2311 start_arrow_common(end_insert_pos, end_change);
2312 if (!end_change)
2313 {
2314 AppendCharToRedobuff(Ctrl_G);
2315 AppendCharToRedobuff('U');
2316 }
2317}
2318
2319 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002320start_arrow_common(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002321 pos_T *end_insert_pos, // can be NULL
2322 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002323{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002324 if (!arrow_used && end_change) // something has been inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 {
2326 AppendToRedobuff(ESC_STR);
Bram Moolenaarf332a652013-11-04 04:20:33 +01002327 stop_insert(end_insert_pos, FALSE, FALSE);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002328 arrow_used = TRUE; // this means we stopped the current insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002330#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002331 check_spell_redraw();
2332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333}
2334
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002335#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002336/*
2337 * If we skipped highlighting word at cursor, do it now.
2338 * It may be skipped again, thus reset spell_redraw_lnum first.
2339 */
2340 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002341check_spell_redraw(void)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002342{
2343 if (spell_redraw_lnum != 0)
2344 {
2345 linenr_T lnum = spell_redraw_lnum;
2346
2347 spell_redraw_lnum = 0;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01002348 redrawWinline(curwin, lnum);
Bram Moolenaar217ad922005-03-20 22:37:15 +00002349 }
2350}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002351
Bram Moolenaar217ad922005-03-20 22:37:15 +00002352#endif
2353
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354/*
2355 * stop_arrow() is called before a change is made in insert mode.
2356 * If an arrow key has been used, start a new insertion.
2357 * Returns FAIL if undo is impossible, shouldn't insert then.
2358 */
2359 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002360stop_arrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361{
2362 if (arrow_used)
2363 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002364 Insstart = curwin->w_cursor; // new insertion starts here
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002365 if (Insstart.col > Insstart_orig.col && !ins_need_undo)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002366 // Don't update the original insert position when moved to the
2367 // right, except when nothing was inserted yet.
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002368 update_Insstart_orig = FALSE;
2369 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
2370
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 if (u_save_cursor() == OK)
2372 {
2373 arrow_used = FALSE;
2374 ins_need_undo = FALSE;
2375 }
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002376
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 ai_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 if (State & VREPLACE_FLAG)
2379 {
2380 orig_line_count = curbuf->b_ml.ml_line_count;
2381 vr_lines_changed = 1;
2382 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 ResetRedobuff();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002384 AppendToRedobuff((char_u *)"1i"); // pretend we start an insertion
Bram Moolenaara9b1e742005-12-19 22:14:58 +00002385 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 }
2387 else if (ins_need_undo)
2388 {
2389 if (u_save_cursor() == OK)
2390 ins_need_undo = FALSE;
2391 }
2392
2393#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002394 // Always open fold at the cursor line when inserting something.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 foldOpenCursor();
2396#endif
2397
2398 return (arrow_used || ins_need_undo ? FAIL : OK);
2399}
2400
2401/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002402 * Do a few things to stop inserting.
2403 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
2404 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 */
2406 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002407stop_insert(
2408 pos_T *end_insert_pos,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002409 int esc, // called by ins_esc()
2410 int nomove) // <c-\><c-o>, don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002412 int cc;
2413 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414
2415 stop_redo_ins();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002416 replace_flush(); // abandon replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417
2418 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002419 * Save the inserted text for later redo with ^@ and CTRL-A.
2420 * Don't do it when "restart_edit" was set and nothing was inserted,
2421 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002423 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002424 if (did_restart_edit == 0 || (ptr != NULL
2425 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002426 {
2427 vim_free(last_insert);
2428 last_insert = ptr;
2429 last_insert_skip = new_insert_skip;
2430 }
2431 else
2432 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002434 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002436 // Auto-format now. It may seem strange to do this when stopping an
2437 // insertion (or moving the cursor), but it's required when appending
2438 // a line and having it end in a space. But only do it when something
2439 // was actually inserted, otherwise undo won't work.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002440 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002442 pos_T tpos = curwin->w_cursor;
2443
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002444 // When the cursor is at the end of the line after a space the
2445 // formatting will move it to the following word. Avoid that by
2446 // moving the cursor onto the space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 cc = 'x';
2448 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
2449 {
2450 dec_cursor();
2451 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002452 if (!VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002453 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 }
2455
2456 auto_format(TRUE, FALSE);
2457
Bram Moolenaar1c465442017-03-12 20:10:05 +01002458 if (VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002459 {
2460 if (gchar_cursor() != NUL)
2461 inc_cursor();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002462 // If the cursor is still at the same character, also keep
2463 // the "coladd".
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002464 if (gchar_cursor() == NUL
2465 && curwin->w_cursor.lnum == tpos.lnum
2466 && curwin->w_cursor.col == tpos.col)
2467 curwin->w_cursor.coladd = tpos.coladd;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002468 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 }
2470
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002471 // If a space was inserted for auto-formatting, remove it now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 check_auto_format(TRUE);
2473
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002474 // If we just did an auto-indent, remove the white space from the end
2475 // of the line, and put the cursor back.
2476 // Do this when ESC was used or moving the cursor up/down.
2477 // Check for the old position still being valid, just in case the text
2478 // got changed unexpectedly.
Bram Moolenaarf332a652013-11-04 04:20:33 +01002479 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00002480 && curwin->w_cursor.lnum != end_insert_pos->lnum))
2481 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002483 pos_T tpos = curwin->w_cursor;
2484
2485 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002486 check_cursor_col(); // make sure it is not past the line
Bram Moolenaar39f05632006-03-19 22:15:26 +00002487 for (;;)
2488 {
2489 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
2490 --curwin->w_cursor.col;
2491 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002492 if (!VIM_ISWHITE(cc))
Bram Moolenaar39f05632006-03-19 22:15:26 +00002493 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00002494 if (del_char(TRUE) == FAIL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002495 break; // should not happen
Bram Moolenaar39f05632006-03-19 22:15:26 +00002496 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002497 if (curwin->w_cursor.lnum != tpos.lnum)
2498 curwin->w_cursor = tpos;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002499 else
2500 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002501 // reset tpos, could have been invalidated in the loop above
Bram Moolenaaref6875b2014-11-12 18:59:25 +01002502 tpos = curwin->w_cursor;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002503 tpos.col++;
2504 if (cc != NUL && gchar_pos(&tpos) == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002505 ++curwin->w_cursor.col; // put cursor back on the NUL
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002508 // <C-S-Right> may have started Visual mode, adjust the position for
2509 // deleted characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
2511 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002512 int len = (int)STRLEN(ml_get_curline());
2513
2514 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002516 VIsual.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 VIsual.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 }
2519 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 }
2521 }
2522 did_ai = FALSE;
2523#ifdef FEAT_SMARTINDENT
2524 did_si = FALSE;
2525 can_si = FALSE;
2526 can_si_back = FALSE;
2527#endif
2528
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002529 // Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
2530 // now in a different buffer.
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002531 if (end_insert_pos != NULL)
2532 {
2533 curbuf->b_op_start = Insstart;
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002534 curbuf->b_op_start_orig = Insstart_orig;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002535 curbuf->b_op_end = *end_insert_pos;
2536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537}
2538
2539/*
2540 * Set the last inserted text to a single character.
2541 * Used for the replace command.
2542 */
2543 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002544set_last_insert(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545{
2546 char_u *s;
2547
2548 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 if (last_insert != NULL)
2551 {
2552 s = last_insert;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002553 // Use the CTRL-V only when entering a special char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 if (c < ' ' || c == DEL)
2555 *s++ = Ctrl_V;
2556 s = add_char2buf(c, s);
2557 *s++ = ESC;
2558 *s++ = NUL;
2559 last_insert_skip = 0;
2560 }
2561}
2562
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002563#if defined(EXITFREE) || defined(PROTO)
2564 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002565free_last_insert(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002566{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002567 VIM_CLEAR(last_insert);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002568}
2569#endif
2570
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571/*
2572 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
2573 * and CSI. Handle multi-byte characters.
2574 * Returns a pointer to after the added bytes.
2575 */
2576 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002577add_char2buf(int c, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578{
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002579 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 int i;
2581 int len;
2582
2583 len = (*mb_char2bytes)(c, temp);
2584 for (i = 0; i < len; ++i)
2585 {
2586 c = temp[i];
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002587 // Need to escape K_SPECIAL and CSI like in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 if (c == K_SPECIAL)
2589 {
2590 *s++ = K_SPECIAL;
2591 *s++ = KS_SPECIAL;
2592 *s++ = KE_FILLER;
2593 }
2594#ifdef FEAT_GUI
2595 else if (c == CSI)
2596 {
2597 *s++ = CSI;
2598 *s++ = KS_EXTRA;
2599 *s++ = (int)KE_CSI;
2600 }
2601#endif
2602 else
2603 *s++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 return s;
2606}
2607
2608/*
2609 * move cursor to start of line
2610 * if flags & BL_WHITE move to first non-white
2611 * if flags & BL_SOL move to first non-white if startofline is set,
2612 * otherwise keep "curswant" column
2613 * if flags & BL_FIX don't leave the cursor on a NUL.
2614 */
2615 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002616beginline(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617{
2618 if ((flags & BL_SOL) && !p_sol)
2619 coladvance(curwin->w_curswant);
2620 else
2621 {
2622 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624
2625 if (flags & (BL_WHITE | BL_SOL))
2626 {
2627 char_u *ptr;
2628
Bram Moolenaar1c465442017-03-12 20:10:05 +01002629 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
2631 ++curwin->w_cursor.col;
2632 }
2633 curwin->w_set_curswant = TRUE;
2634 }
2635}
2636
2637/*
2638 * oneright oneleft cursor_down cursor_up
2639 *
2640 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002641 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 * Return OK when successful, FAIL when we hit a line of file boundary.
2643 */
2644
2645 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002646oneright(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647{
2648 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 if (virtual_active())
2652 {
2653 pos_T prevpos = curwin->w_cursor;
2654
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002655 // Adjust for multi-wide char (excluding TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002657 coladvance(getviscol() + ((*ptr != TAB
2658 && vim_isprintc((*mb_ptr2char)(ptr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 ? ptr2cells(ptr) : 1));
2660 curwin->w_set_curswant = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002661 // Return OK if the cursor moved, FAIL otherwise (at window edge).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 return (prevpos.col != curwin->w_cursor.col
2663 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
2664 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665
2666 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002667 if (*ptr == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002668 return FAIL; // already at the very end
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002669
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002670 if (has_mbyte)
2671 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 else
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002673 l = 1;
2674
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002675 // move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
2676 // contains "onemore".
Gary Johnson53ba05b2021-07-26 22:19:10 +02002677 if (ptr[l] == NUL && (get_ve_flags() & VE_ONEMORE) == 0)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002678 return FAIL;
2679 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
2681 curwin->w_set_curswant = TRUE;
2682 return OK;
2683}
2684
2685 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002686oneleft(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 if (virtual_active())
2689 {
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002690#ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 int width;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002692#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 int v = getviscol();
2694
2695 if (v == 0)
2696 return FAIL;
2697
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002698#ifdef FEAT_LINEBREAK
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002699 // We might get stuck on 'showbreak', skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 width = 1;
2701 for (;;)
2702 {
2703 coladvance(v - width);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002704 // getviscol() is slow, skip it when 'showbreak' is empty,
2705 // 'breakindent' is not set and there are no multi-byte
2706 // characters
Bram Moolenaaree857022019-11-09 23:26:40 +01002707 if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri
Bram Moolenaar13505972019-01-24 15:04:48 +01002708 && !has_mbyte) || getviscol() < v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 break;
2710 ++width;
2711 }
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002712#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 coladvance(v - 1);
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002714#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715
2716 if (curwin->w_cursor.coladd == 1)
2717 {
2718 char_u *ptr;
2719
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002720 // Adjust for multi-wide char (not a TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002722 if (*ptr != TAB && vim_isprintc((*mb_ptr2char)(ptr))
2723 && ptr2cells(ptr) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 curwin->w_cursor.coladd = 0;
2725 }
2726
2727 curwin->w_set_curswant = TRUE;
2728 return OK;
2729 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730
2731 if (curwin->w_cursor.col == 0)
2732 return FAIL;
2733
2734 curwin->w_set_curswant = TRUE;
2735 --curwin->w_cursor.col;
2736
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002737 // if the character on the left of the current cursor is a multi-byte
2738 // character, move to its first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 if (has_mbyte)
2740 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 return OK;
2742}
2743
2744 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002745cursor_up(
2746 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002747 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748{
2749 linenr_T lnum;
2750
2751 if (n > 0)
2752 {
2753 lnum = curwin->w_cursor.lnum;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002754 // This fails if the cursor is already in the first line or the count
2755 // is larger than the line number and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002756 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 return FAIL;
2758 if (n >= lnum)
2759 lnum = 1;
2760 else
2761#ifdef FEAT_FOLDING
2762 if (hasAnyFolding(curwin))
2763 {
2764 /*
2765 * Count each sequence of folded lines as one logical line.
2766 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002767 // go to the start of the current fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 (void)hasFolding(lnum, &lnum, NULL);
2769
2770 while (n--)
2771 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002772 // move up one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 --lnum;
2774 if (lnum <= 1)
2775 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002776 // If we entered a fold, move to the beginning, unless in
2777 // Insert mode or when 'foldopen' contains "all": it will open
2778 // in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
2780 (void)hasFolding(lnum, &lnum, NULL);
2781 }
2782 if (lnum < 1)
2783 lnum = 1;
2784 }
2785 else
2786#endif
2787 lnum -= n;
2788 curwin->w_cursor.lnum = lnum;
2789 }
2790
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002791 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 coladvance(curwin->w_curswant);
2793
2794 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002795 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796
2797 return OK;
2798}
2799
2800/*
2801 * Cursor down a number of logical lines.
2802 */
2803 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002804cursor_down(
2805 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002806 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807{
2808 linenr_T lnum;
2809
2810 if (n > 0)
2811 {
2812 lnum = curwin->w_cursor.lnum;
2813#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002814 // Move to last line of fold, will fail if it's the end-of-file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 (void)hasFolding(lnum, NULL, &lnum);
2816#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002817 // This fails if the cursor is already in the last line or would move
2818 // beyond the last line and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002819 if (lnum >= curbuf->b_ml.ml_line_count
2820 || (lnum + n > curbuf->b_ml.ml_line_count
2821 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 return FAIL;
2823 if (lnum + n >= curbuf->b_ml.ml_line_count)
2824 lnum = curbuf->b_ml.ml_line_count;
2825 else
2826#ifdef FEAT_FOLDING
2827 if (hasAnyFolding(curwin))
2828 {
2829 linenr_T last;
2830
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002831 // count each sequence of folded lines as one logical line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 while (n--)
2833 {
2834 if (hasFolding(lnum, NULL, &last))
2835 lnum = last + 1;
2836 else
2837 ++lnum;
2838 if (lnum >= curbuf->b_ml.ml_line_count)
2839 break;
2840 }
2841 if (lnum > curbuf->b_ml.ml_line_count)
2842 lnum = curbuf->b_ml.ml_line_count;
2843 }
2844 else
2845#endif
2846 lnum += n;
2847 curwin->w_cursor.lnum = lnum;
2848 }
2849
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002850 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 coladvance(curwin->w_curswant);
2852
2853 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002854 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855
2856 return OK;
2857}
2858
2859/*
2860 * Stuff the last inserted text in the read buffer.
2861 * Last_insert actually is a copy of the redo buffer, so we
2862 * first have to remove the command.
2863 */
2864 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002865stuff_inserted(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002866 int c, // Command character to be inserted
2867 long count, // Repeat this many times
2868 int no_esc) // Don't add an ESC at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869{
2870 char_u *esc_ptr;
2871 char_u *ptr;
2872 char_u *last_ptr;
2873 char_u last = NUL;
2874
2875 ptr = get_last_insert();
2876 if (ptr == NULL)
2877 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02002878 emsg(_(e_no_inserted_text_yet));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 return FAIL;
2880 }
2881
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002882 // may want to stuff the command character, to start Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 if (c != NUL)
2884 stuffcharReadbuff(c);
2885 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002886 *esc_ptr = NUL; // remove the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002888 // when the last char is either "0" or "^" it will be quoted if no ESC
2889 // comes after it OR if it will inserted more than once and "ptr"
2890 // starts with ^D. -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
2892 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
2893 && (no_esc || (*ptr == Ctrl_D && count > 1)))
2894 {
2895 last = *last_ptr;
2896 *last_ptr = NUL;
2897 }
2898
2899 do
2900 {
2901 stuffReadbuff(ptr);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002902 // a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 if (last)
2904 stuffReadbuff((char_u *)(last == '0'
2905 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
2906 : IF_EB("\026^", CTRL_V_STR "^")));
2907 }
2908 while (--count > 0);
2909
2910 if (last)
2911 *last_ptr = last;
2912
2913 if (esc_ptr != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002914 *esc_ptr = ESC; // put the ESC back
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002916 // may want to stuff a trailing ESC, to get out of Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 if (!no_esc)
2918 stuffcharReadbuff(ESC);
2919
2920 return OK;
2921}
2922
2923 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002924get_last_insert(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925{
2926 if (last_insert == NULL)
2927 return NULL;
2928 return last_insert + last_insert_skip;
2929}
2930
2931/*
2932 * Get last inserted string, and remove trailing <Esc>.
2933 * Returns pointer to allocated memory (must be freed) or NULL.
2934 */
2935 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002936get_last_insert_save(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937{
2938 char_u *s;
2939 int len;
2940
2941 if (last_insert == NULL)
2942 return NULL;
2943 s = vim_strsave(last_insert + last_insert_skip);
2944 if (s != NULL)
2945 {
2946 len = (int)STRLEN(s);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002947 if (len > 0 && s[len - 1] == ESC) // remove trailing ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 s[len - 1] = NUL;
2949 }
2950 return s;
2951}
2952
2953/*
2954 * Check the word in front of the cursor for an abbreviation.
2955 * Called when the non-id character "c" has been entered.
2956 * When an abbreviation is recognized it is removed from the text and
2957 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
2958 */
2959 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002960echeck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002962 // Don't check for abbreviation in paste mode, when disabled and just
2963 // after moving around with cursor keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 if (p_paste || no_abbr || arrow_used)
2965 return FALSE;
2966
2967 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
2968 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
2969}
2970
2971/*
2972 * replace-stack functions
2973 *
2974 * When replacing characters, the replaced characters are remembered for each
2975 * new character. This is used to re-insert the old text when backspacing.
2976 *
2977 * There is a NUL headed list of characters for each character that is
2978 * currently in the file after the insertion point. When BS is used, one NUL
2979 * headed list is put back for the deleted character.
2980 *
2981 * For a newline, there are two NUL headed lists. One contains the characters
2982 * that the NL replaced. The extra one stores the characters after the cursor
2983 * that were deleted (always white space).
2984 *
2985 * Replace_offset is normally 0, in which case replace_push will add a new
2986 * character at the end of the stack. If replace_offset is not 0, that many
2987 * characters will be left on the stack above the newly inserted character.
2988 */
2989
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002990static char_u *replace_stack = NULL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002991static long replace_stack_nr = 0; // next entry in replace stack
2992static long replace_stack_len = 0; // max. number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993
2994 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002995replace_push(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002996 int c) // character that is replaced (NUL is none)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
2998 char_u *p;
2999
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003000 if (replace_stack_nr < replace_offset) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 return;
3002 if (replace_stack_len <= replace_stack_nr)
3003 {
3004 replace_stack_len += 50;
Bram Moolenaar3397f742019-06-02 18:40:06 +02003005 p = ALLOC_MULT(char_u, replace_stack_len);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003006 if (p == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 {
3008 replace_stack_len -= 50;
3009 return;
3010 }
3011 if (replace_stack != NULL)
3012 {
3013 mch_memmove(p, replace_stack,
3014 (size_t)(replace_stack_nr * sizeof(char_u)));
3015 vim_free(replace_stack);
3016 }
3017 replace_stack = p;
3018 }
3019 p = replace_stack + replace_stack_nr - replace_offset;
3020 if (replace_offset)
3021 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
3022 *p = c;
3023 ++replace_stack_nr;
3024}
3025
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003026/*
3027 * Push a character onto the replace stack. Handles a multi-byte character in
3028 * reverse byte order, so that the first byte is popped off first.
3029 * Return the number of bytes done (includes composing characters).
3030 */
3031 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003032replace_push_mb(char_u *p)
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003033{
3034 int l = (*mb_ptr2len)(p);
3035 int j;
3036
3037 for (j = l - 1; j >= 0; --j)
3038 replace_push(p[j]);
3039 return l;
3040}
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003041
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042/*
3043 * Pop one item from the replace stack.
3044 * return -1 if stack empty
3045 * return replaced character or NUL otherwise
3046 */
3047 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003048replace_pop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049{
3050 if (replace_stack_nr == 0)
3051 return -1;
3052 return (int)replace_stack[--replace_stack_nr];
3053}
3054
3055/*
3056 * Join the top two items on the replace stack. This removes to "off"'th NUL
3057 * encountered.
3058 */
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003059 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003060replace_join(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003061 int off) // offset for which NUL to remove
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062{
3063 int i;
3064
3065 for (i = replace_stack_nr; --i >= 0; )
3066 if (replace_stack[i] == NUL && off-- <= 0)
3067 {
3068 --replace_stack_nr;
3069 mch_memmove(replace_stack + i, replace_stack + i + 1,
3070 (size_t)(replace_stack_nr - i));
3071 return;
3072 }
3073}
3074
3075/*
3076 * Pop bytes from the replace stack until a NUL is found, and insert them
3077 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
3078 */
3079 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003080replace_pop_ins(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081{
3082 int cc;
3083 int oldState = State;
3084
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003085 State = NORMAL; // don't want REPLACE here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 while ((cc = replace_pop()) > 0)
3087 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 mb_replace_pop_ins(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 dec_cursor();
3090 }
3091 State = oldState;
3092}
3093
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094/*
3095 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
3096 * indicates a multi-byte char, pop the other bytes too.
3097 */
3098 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003099mb_replace_pop_ins(int cc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100{
3101 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02003102 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 int i;
3104 int c;
3105
3106 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
3107 {
3108 buf[0] = cc;
3109 for (i = 1; i < n; ++i)
3110 buf[i] = replace_pop();
3111 ins_bytes_len(buf, n);
3112 }
3113 else
3114 ins_char(cc);
3115
3116 if (enc_utf8)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003117 // Handle composing chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 for (;;)
3119 {
3120 c = replace_pop();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003121 if (c == -1) // stack empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 break;
3123 if ((n = MB_BYTE2LEN(c)) == 1)
3124 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003125 // Not a multi-byte char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 replace_push(c);
3127 break;
3128 }
3129 else
3130 {
3131 buf[0] = c;
3132 for (i = 1; i < n; ++i)
3133 buf[i] = replace_pop();
3134 if (utf_iscomposing(utf_ptr2char(buf)))
3135 ins_bytes_len(buf, n);
3136 else
3137 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003138 // Not a composing char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 for (i = n - 1; i >= 0; --i)
3140 replace_push(buf[i]);
3141 break;
3142 }
3143 }
3144 }
3145}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146
3147/*
3148 * make the replace stack empty
3149 * (called when exiting replace mode)
3150 */
3151 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003152replace_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153{
Bram Moolenaard23a8232018-02-10 18:45:26 +01003154 VIM_CLEAR(replace_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 replace_stack_len = 0;
3156 replace_stack_nr = 0;
3157}
3158
3159/*
3160 * Handle doing a BS for one character.
3161 * cc < 0: replace stack empty, just move cursor
3162 * cc == 0: character was inserted, delete it
3163 * cc > 0: character was replaced, put cc (first byte of original char) back
3164 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003165 * When "limit_col" is >= 0, don't delete before this column. Matters when
3166 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 */
3168 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003169replace_do_bs(int limit_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170{
3171 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 int orig_len = 0;
3173 int ins_len;
3174 int orig_vcols = 0;
3175 colnr_T start_vcol;
3176 char_u *p;
3177 int i;
3178 int vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179
3180 cc = replace_pop();
3181 if (cc > 0)
3182 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003183#ifdef FEAT_PROP_POPUP
Bram Moolenaar6d11f3b2019-01-06 17:44:38 +01003184 size_t len_before = 0; // init to shut up GCC
Bram Moolenaar196d1572019-01-02 23:47:18 +01003185
3186 if (curbuf->b_has_textprop)
3187 {
3188 // Do not adjust text properties for individual delete and insert
3189 // operations, do it afterwards on the resulting text.
3190 len_before = STRLEN(ml_get_curline());
3191 ++text_prop_frozen;
3192 }
3193#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 if (State & VREPLACE_FLAG)
3195 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003196 // Get the number of screen cells used by the character we are
3197 // going to delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
3199 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
3200 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 if (has_mbyte)
3202 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003203 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003205 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 replace_push(cc);
3207 }
3208 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 {
3210 pchar_cursor(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003212 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 }
3214 replace_pop_ins();
3215
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 if (State & VREPLACE_FLAG)
3217 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003218 // Get the number of screen cells used by the inserted characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003220 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 vcol = start_vcol;
3222 for (i = 0; i < ins_len; ++i)
3223 {
3224 vcol += chartabsize(p + i, vcol);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003225 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 }
3227 vcol -= start_vcol;
3228
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003229 // Delete spaces that were inserted after the cursor to keep the
3230 // text aligned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 curwin->w_cursor.col += ins_len;
3232 while (vcol > orig_vcols && gchar_cursor() == ' ')
3233 {
3234 del_char(FALSE);
3235 ++orig_vcols;
3236 }
3237 curwin->w_cursor.col -= ins_len;
3238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239
Bram Moolenaar196d1572019-01-02 23:47:18 +01003240 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003242
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003243#ifdef FEAT_PROP_POPUP
Bram Moolenaar196d1572019-01-02 23:47:18 +01003244 if (curbuf->b_has_textprop)
3245 {
3246 size_t len_now = STRLEN(ml_get_curline());
3247
3248 --text_prop_frozen;
3249 adjust_prop_columns(curwin->w_cursor.lnum, curwin->w_cursor.col,
Bram Moolenaarf3333b02019-05-19 22:53:40 +02003250 (int)(len_now - len_before), 0);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003251 }
3252#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 }
3254 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003255 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256}
3257
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
3259/*
3260 * Map Hebrew keyboard when in hkmap mode.
3261 */
3262 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003263hkmap(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003265 if (p_hkmapp) // phonetic mapping, by Ilya Dogolazky
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 {
3267 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
3268 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
3269 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
3270 static char_u map[26] =
3271 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
3272 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
3273 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
3274 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
3275 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
3276 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
3277 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
3278 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
3279 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
3280
3281 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
3282 return (int)(map[CharOrd(c)] - 1 + p_aleph);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003283 // '-1'='sofit'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 else if (c == 'x')
3285 return 'X';
3286 else if (c == 'q')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003287 return '\''; // {geresh}={'}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 else if (c == 246)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003289 return ' '; // \"o --> ' ' for a german keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 else if (c == 228)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003291 return ' '; // \"a --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 else if (c == 252)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003293 return ' '; // \"u --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294#ifdef EBCDIC
3295 else if (islower(c))
3296#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003297 // NOTE: islower() does not do the right thing for us on Linux so we
3298 // do this the same was as 5.7 and previous, so it works correctly on
3299 // all systems. Specifically, the e.g. Delete and Arrow keys are
3300 // munged and won't work if e.g. searching for Hebrew text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 else if (c >= 'a' && c <= 'z')
3302#endif
3303 return (int)(map[CharOrdLow(c)] + p_aleph);
3304 else
3305 return c;
3306 }
3307 else
3308 {
3309 switch (c)
3310 {
3311 case '`': return ';';
3312 case '/': return '.';
3313 case '\'': return ',';
3314 case 'q': return '/';
3315 case 'w': return '\'';
3316
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003317 // Hebrew letters - set offset from 'a'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 case ',': c = '{'; break;
3319 case '.': c = 'v'; break;
3320 case ';': c = 't'; break;
3321 default: {
3322 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
3323
3324#ifdef EBCDIC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003325 // see note about islower() above
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 if (!islower(c))
3327#else
3328 if (c < 'a' || c > 'z')
3329#endif
3330 return c;
3331 c = str[CharOrdLow(c)];
3332 break;
3333 }
3334 }
3335
3336 return (int)(CharOrdLow(c) + p_aleph);
3337 }
3338}
3339#endif
3340
3341 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003342ins_reg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343{
3344 int need_redraw = FALSE;
3345 int regname;
3346 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003347 int vis_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348
3349 /*
3350 * If we are going to wait for a character, show a '"'.
3351 */
3352 pc_status = PC_STATUS_UNSET;
3353 if (redrawing() && !char_avail())
3354 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003355 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00003356 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357
3358 edit_putchar('"', TRUE);
3359#ifdef FEAT_CMDL_INFO
3360 add_to_showcmd_c(Ctrl_R);
3361#endif
3362 }
3363
3364#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003365 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366#endif
3367
3368 /*
3369 * Don't map the register name. This also prevents the mode message to be
3370 * deleted when ESC is hit.
3371 */
3372 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003373 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003374 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
3377 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003378 // Get a third key for literal register insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 literally = regname;
3380#ifdef FEAT_CMDL_INFO
3381 add_to_showcmd_c(literally);
3382#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003383 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 }
3386 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003387 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388
3389#ifdef FEAT_EVAL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003390 // Don't call u_sync() while typing the expression or giving an error
3391 // message for it. Only call it explicitly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 ++no_u_sync;
3393 if (regname == '=')
3394 {
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003395 pos_T curpos = curwin->w_cursor;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003396# ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003398# endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003399 // Sync undo when evaluating the expression calls setline() or
3400 // append(), so that it can be undone separately.
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003401 u_sync_once = 2;
Bram Moolenaar5737ca22013-06-27 22:21:24 +02003402
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 regname = get_expr_register();
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003404
3405 // Cursor may be moved back a column.
3406 curwin->w_cursor = curpos;
3407 check_cursor();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003408# ifdef HAVE_INPUT_METHOD
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003409 // Restore the Input Method.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 if (im_on)
3411 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003412# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00003414 if (regname == NUL || !valid_yank_reg(regname, FALSE))
3415 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003416 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003417 need_redraw = TRUE; // remove the '"'
Bram Moolenaar677ee682005-01-27 14:41:15 +00003418 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 else
3420 {
3421#endif
3422 if (literally == Ctrl_O || literally == Ctrl_P)
3423 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003424 // Append the command to the redo buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 AppendCharToRedobuff(Ctrl_R);
3426 AppendCharToRedobuff(literally);
3427 AppendCharToRedobuff(regname);
3428
Bram Moolenaarc3516f72020-09-08 22:45:35 +02003429 do_put(regname, NULL, BACKWARD, 1L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
3431 }
3432 else if (insert_reg(regname, literally) == FAIL)
3433 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003434 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003435 need_redraw = TRUE; // remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003437 else if (stop_insert_mode)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003438 // When the '=' register was used and a function was invoked that
3439 // did ":stopinsert" then stuff_empty() returns FALSE but we won't
3440 // insert anything, need to remove the '"'
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003441 need_redraw = TRUE;
3442
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443#ifdef FEAT_EVAL
3444 }
3445 --no_u_sync;
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003446 if (u_sync_once == 1)
3447 ins_need_undo = TRUE;
3448 u_sync_once = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449#endif
3450#ifdef FEAT_CMDL_INFO
3451 clear_showcmd();
3452#endif
3453
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003454 // If the inserted register is empty, we need to remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 if (need_redraw || stuff_empty())
3456 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003457
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003458 // Disallow starting Visual mode here, would get a weird mode.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003459 if (!vis_active && VIsual_active)
3460 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461}
3462
3463/*
3464 * CTRL-G commands in Insert mode.
3465 */
3466 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003467ins_ctrl_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468{
3469 int c;
3470
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003471 // Right after CTRL-X the cursor will be after the ruler.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473
3474 /*
3475 * Don't map the second key. This also prevents the mode message to be
3476 * deleted when ESC is hit.
3477 */
3478 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003479 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003480 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003482 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 switch (c)
3484 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003485 // CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 case K_UP:
3487 case Ctrl_K:
3488 case 'k': ins_up(TRUE);
3489 break;
3490
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003491 // CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 case K_DOWN:
3493 case Ctrl_J:
3494 case 'j': ins_down(TRUE);
3495 break;
3496
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003497 // CTRL-G u: start new undoable edit
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003498 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003500
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003501 // Need to reset Insstart, esp. because a BS that joins
3502 // a line to the previous one must save for undo.
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01003503 update_Insstart_orig = FALSE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003504 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 break;
3506
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003507 // CTRL-G U: do not break undo with the next char
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003508 case 'U':
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003509 // Allow one left/right cursor movement with the next char,
3510 // without breaking undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003511 dont_sync_undo = MAYBE;
3512 break;
3513
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003514 // Unknown CTRL-G command, reserved for future expansion.
Bram Moolenaar165bc692015-07-21 17:53:25 +02003515 default: vim_beep(BO_CTRLG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 }
3517}
3518
3519/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003520 * CTRL-^ in Insert mode.
3521 */
3522 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003523ins_ctrl_hat(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003524{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003525 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003526 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003527 // ":lmap" mappings exists, Toggle use of ":lmap" mappings.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003528 if (State & LANGMAP)
3529 {
3530 curbuf->b_p_iminsert = B_IMODE_NONE;
3531 State &= ~LANGMAP;
3532 }
3533 else
3534 {
3535 curbuf->b_p_iminsert = B_IMODE_LMAP;
3536 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003537#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003538 im_set_active(FALSE);
3539#endif
3540 }
3541 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003542#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003543 else
3544 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003545 // There are no ":lmap" mappings, toggle IM
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003546 if (im_get_status())
3547 {
3548 curbuf->b_p_iminsert = B_IMODE_NONE;
3549 im_set_active(FALSE);
3550 }
3551 else
3552 {
3553 curbuf->b_p_iminsert = B_IMODE_IM;
3554 State &= ~LANGMAP;
3555 im_set_active(TRUE);
3556 }
3557 }
3558#endif
3559 set_iminsert_global();
3560 showmode();
3561#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003562 // may show different cursor shape or color
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003563 if (gui.in_use)
3564 gui_update_cursor(TRUE, FALSE);
3565#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003566#if defined(FEAT_KEYMAP)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003567 // Show/unshow value of 'keymap' in status lines.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003568 status_redraw_curbuf();
3569#endif
3570}
3571
3572/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 * Handle ESC in insert mode.
3574 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
3575 * insert.
3576 */
3577 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003578ins_esc(
3579 long *count,
3580 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003581 int nomove) // don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582{
3583 int temp;
3584 static int disabled_redraw = FALSE;
Bram Moolenaar644b49f2021-09-16 22:32:15 +02003585#ifdef FEAT_CONCEAL
3586 // Remember if the cursor line was concealed before changing State.
3587 int cursor_line_was_concealed = curwin->w_p_cole > 0
3588 && conceal_cursor_line(curwin);
3589#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003591#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003592 check_spell_redraw();
3593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594
3595 temp = curwin->w_cursor.col;
3596 if (disabled_redraw)
3597 {
3598 --RedrawingDisabled;
3599 disabled_redraw = FALSE;
3600 }
3601 if (!arrow_used)
3602 {
3603 /*
3604 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00003605 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
3606 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 */
3608 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00003609 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610
3611 /*
3612 * Repeating insert may take a long time. Check for
3613 * interrupt now and then.
3614 */
3615 if (*count > 0)
3616 {
3617 line_breakcheck();
3618 if (got_int)
3619 *count = 0;
3620 }
3621
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003622 if (--*count > 0) // repeat what was typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003624 // Vi repeats the insert without replacing characters.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003625 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
3626 State &= ~REPLACE_FLAG;
3627
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 (void)start_redo_ins();
3629 if (cmdchar == 'r' || cmdchar == 'v')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003630 stuffRedoReadbuff(ESC_STR); // no ESC in redo buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 ++RedrawingDisabled;
3632 disabled_redraw = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003633 return FALSE; // repeat the insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 }
Bram Moolenaarf332a652013-11-04 04:20:33 +01003635 stop_insert(&curwin->w_cursor, TRUE, nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 undisplay_dollar();
3637 }
3638
Bram Moolenaarb53e13a2020-10-21 12:19:53 +02003639 if (cmdchar != 'r' && cmdchar != 'v')
3640 ins_apply_autocmds(EVENT_INSERTLEAVEPRE);
3641
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003642 // When an autoindent was removed, curswant stays after the
3643 // indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
3645 curwin->w_set_curswant = TRUE;
3646
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003647 // Remember the last Insert position in the '^ mark.
Bram Moolenaare1004402020-10-24 20:49:43 +02003648 if ((cmdmod.cmod_flags & CMOD_KEEPJUMPS) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 curbuf->b_last_insert = curwin->w_cursor;
3650
3651 /*
3652 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00003653 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00003655 if (!nomove
3656 && (curwin->w_cursor.col != 0
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003657 || curwin->w_cursor.coladd > 0)
Bram Moolenaar488c6512005-08-11 20:09:58 +00003658 && (restart_edit == NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003659 || (gchar_cursor() == NUL && !VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660#ifdef FEAT_RIGHTLEFT
3661 && !revins_on
3662#endif
3663 )
3664 {
Gary Johnson53ba05b2021-07-26 22:19:10 +02003665 if (curwin->w_cursor.coladd > 0 || get_ve_flags() == VE_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 {
3667 oneleft();
3668 if (restart_edit != NUL)
3669 ++curwin->w_cursor.coladd;
3670 }
3671 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 {
3673 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003674 // Correct cursor for multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 if (has_mbyte)
3676 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 }
3678 }
3679
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003680#ifdef HAVE_INPUT_METHOD
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003681 // Disable IM to allow typing English directly for Normal mode commands.
3682 // When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
3683 // well).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 if (!(State & LANGMAP))
3685 im_save_status(&curbuf->b_p_iminsert);
3686 im_set_active(FALSE);
3687#endif
3688
3689 State = NORMAL;
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +02003690 trigger_modechanged();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003691 // need to position cursor again (e.g. when on a TAB )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 changed_cline_bef_curs();
3693
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695#ifdef CURSOR_SHAPE
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003696 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003698 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003699 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003700#ifdef FEAT_JOB_CHANNEL
3701 ch_log_output = TRUE;
3702#endif
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003703 // Re-enable bracketed paste mode.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003704 out_str(T_BE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003706 // Re-enable modifyOtherKeys.
3707 out_str(T_CTI);
3708 }
Bram Moolenaar644b49f2021-09-16 22:32:15 +02003709#ifdef FEAT_CONCEAL
3710 // Check if the cursor line needs redrawing after changing State. If
3711 // 'concealcursor' is "i" it needs to be redrawn without concealing.
3712 conceal_check_cursor_line(cursor_line_was_concealed);
3713#endif
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003714
Bram Moolenaarad3ec762019-04-21 00:00:13 +02003715 // When recording or for CTRL-O, need to display the new mode.
3716 // Otherwise remove the mode message.
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02003717 if (reg_recording != 0 || restart_edit != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 showmode();
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +02003719 else if (p_smd && (got_int || !skip_showmode()))
Bram Moolenaar32526b32019-01-19 17:43:09 +01003720 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003722 return TRUE; // exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723}
3724
3725#ifdef FEAT_RIGHTLEFT
3726/*
3727 * Toggle language: hkmap and revins_on.
3728 * Move to end of reverse inserted text.
3729 */
3730 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003731ins_ctrl_(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732{
3733 if (revins_on && revins_chars && revins_scol >= 0)
3734 {
3735 while (gchar_cursor() != NUL && revins_chars--)
3736 ++curwin->w_cursor.col;
3737 }
3738 p_ri = !p_ri;
3739 revins_on = (State == INSERT && p_ri);
3740 if (revins_on)
3741 {
3742 revins_scol = curwin->w_cursor.col;
3743 revins_legal++;
3744 revins_chars = 0;
3745 undisplay_dollar();
3746 }
3747 else
3748 revins_scol = -1;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003749 p_hkmap = curwin->w_p_rl ^ p_ri; // be consistent!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 showmode();
3751}
3752#endif
3753
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754/*
3755 * If 'keymodel' contains "startsel", may start selection.
3756 * Returns TRUE when a CTRL-O and other keys stuffed.
3757 */
3758 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003759ins_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760{
3761 if (km_startsel)
3762 switch (c)
3763 {
3764 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 case K_PAGEUP:
3767 case K_KPAGEUP:
3768 case K_PAGEDOWN:
3769 case K_KPAGEDOWN:
Bram Moolenaard0573012017-10-28 21:11:06 +02003770# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 case K_LEFT:
3772 case K_RIGHT:
3773 case K_UP:
3774 case K_DOWN:
3775 case K_END:
3776 case K_HOME:
3777# endif
3778 if (!(mod_mask & MOD_MASK_SHIFT))
3779 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003780 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 case K_S_LEFT:
3782 case K_S_RIGHT:
3783 case K_S_UP:
3784 case K_S_DOWN:
3785 case K_S_END:
3786 case K_S_HOME:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003787 // Start selection right away, the cursor can move with
3788 // CTRL-O when beyond the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 start_selection();
3790
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003791 // Execute the key in (insert) Select mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 stuffcharReadbuff(Ctrl_O);
3793 if (mod_mask)
3794 {
3795 char_u buf[4];
3796
3797 buf[0] = K_SPECIAL;
3798 buf[1] = KS_MODIFIER;
3799 buf[2] = mod_mask;
3800 buf[3] = NUL;
3801 stuffReadbuff(buf);
3802 }
3803 stuffcharReadbuff(c);
3804 return TRUE;
3805 }
3806 return FALSE;
3807}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808
3809/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003810 * <Insert> key in Insert mode: toggle insert/replace mode.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003811 */
3812 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003813ins_insert(int replaceState)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003814{
Bram Moolenaar14184a32019-02-16 15:10:30 +01003815#ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003816 set_vim_var_string(VV_INSERTMODE,
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02003817 (char_u *)((State & REPLACE_FLAG) ? "i"
3818 : replaceState == VREPLACE ? "v"
3819 : "r"), 1);
Bram Moolenaar14184a32019-02-16 15:10:30 +01003820#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02003821 ins_apply_autocmds(EVENT_INSERTCHANGE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003822 if (State & REPLACE_FLAG)
3823 State = INSERT | (State & LANGMAP);
3824 else
3825 State = replaceState | (State & LANGMAP);
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +02003826 trigger_modechanged();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003827 AppendCharToRedobuff(K_INS);
3828 showmode();
3829#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003830 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003831#endif
3832}
3833
3834/*
3835 * Pressed CTRL-O in Insert mode.
3836 */
3837 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003838ins_ctrl_o(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003839{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003840 if (State & VREPLACE_FLAG)
3841 restart_edit = 'V';
Bram Moolenaar0684e362020-12-03 19:54:42 +01003842 else if (State & REPLACE_FLAG)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003843 restart_edit = 'R';
3844 else
3845 restart_edit = 'I';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003846 if (virtual_active())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003847 ins_at_eol = FALSE; // cursor always keeps its column
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003848 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003849 ins_at_eol = (gchar_cursor() == NUL);
3850}
3851
3852/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 * If the cursor is on an indent, ^T/^D insert/delete one
3854 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00003855 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 * with vi. But vi only supports ^T and ^D after an
3857 * autoindent, we support it everywhere.
3858 */
3859 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003860ins_shift(int c, int lastc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861{
3862 if (stop_arrow() == FAIL)
3863 return;
3864 AppendCharToRedobuff(c);
3865
3866 /*
3867 * 0^D and ^^D: remove all indent.
3868 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00003869 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
3870 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 {
3872 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003873 (void)del_char(FALSE); // delete the '^' or '0'
3874 // In Replace mode, restore the characters that '^' or '0' replaced.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 if (State & REPLACE_FLAG)
3876 replace_pop_ins();
3877 if (lastc == '^')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003878 old_indent = get_indent(); // remember curr. indent
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003879 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 }
3881 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003882 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
3884 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
3885 did_ai = FALSE;
3886#ifdef FEAT_SMARTINDENT
3887 did_si = FALSE;
3888 can_si = FALSE;
3889 can_si_back = FALSE;
3890#endif
3891#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003892 can_cindent = FALSE; // no cindenting after ^D or ^T
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893#endif
3894}
3895
3896 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003897ins_del(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898{
3899 int temp;
3900
3901 if (stop_arrow() == FAIL)
3902 return;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003903 if (gchar_cursor() == NUL) // delete newline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 {
3905 temp = curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003906 if (!can_bs(BS_EOL) // only if "eol" included
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02003907 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003908 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 else
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003910 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 curwin->w_cursor.col = temp;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003912 // Adjust orig_line_count in case more lines have been deleted than
3913 // have been added. That makes sure, that open_line() later
3914 // can access all buffer lines correctly
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003915 if (State & VREPLACE_FLAG &&
3916 orig_line_count > curbuf->b_ml.ml_line_count)
3917 orig_line_count = curbuf->b_ml.ml_line_count;
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003920 else if (del_char(FALSE) == FAIL) // delete char under cursor
Bram Moolenaar165bc692015-07-21 17:53:25 +02003921 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 did_ai = FALSE;
3923#ifdef FEAT_SMARTINDENT
3924 did_si = FALSE;
3925 can_si = FALSE;
3926 can_si_back = FALSE;
3927#endif
3928 AppendCharToRedobuff(K_DEL);
3929}
3930
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003931/*
3932 * Delete one character for ins_bs().
3933 */
3934 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003935ins_bs_one(colnr_T *vcolp)
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003936{
3937 dec_cursor();
3938 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
3939 if (State & REPLACE_FLAG)
3940 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003941 // Don't delete characters before the insert point when in
3942 // Replace mode
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003943 if (curwin->w_cursor.lnum != Insstart.lnum
3944 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003945 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003946 }
3947 else
3948 (void)del_char(FALSE);
3949}
3950
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951/*
3952 * Handle Backspace, delete-word and delete-line in Insert mode.
3953 * Return TRUE when backspace was actually used.
3954 */
3955 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003956ins_bs(
3957 int c,
3958 int mode,
3959 int *inserted_space_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960{
3961 linenr_T lnum;
3962 int cc;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003963 int temp = 0; // init for GCC
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003964 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 colnr_T mincol;
3966 int did_backspace = FALSE;
3967 int in_indent;
3968 int oldState;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003969 int cpc[MAX_MCO]; // composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970
3971 /*
3972 * can't delete anything in an empty file
3973 * can't backup past first character in buffer
3974 * can't backup past starting point unless 'backspace' > 1
3975 * can backup to a previous line if 'backspace' == 0
3976 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003977 if ( BUFEMPTY()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 || (
3979#ifdef FEAT_RIGHTLEFT
3980 !revins_on &&
3981#endif
3982 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
3983 || (!can_bs(BS_START)
Bram Moolenaar6f624482020-11-11 20:52:40 +01003984 && ((arrow_used
3985#ifdef FEAT_JOB_CHANNEL
3986 && !bt_prompt(curbuf)
3987#endif
3988 ) || (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02003989 && curwin->w_cursor.col <= Insstart_orig.col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
3991 && curwin->w_cursor.col <= ai_col)
3992 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
3993 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003994 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 return FALSE;
3996 }
3997
3998 if (stop_arrow() == FAIL)
3999 return FALSE;
4000 in_indent = inindent(0);
4001#ifdef FEAT_CINDENT
4002 if (in_indent)
4003 can_cindent = FALSE;
4004#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004005 end_comment_pending = NUL; // After BS, don't auto-end comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004007 if (revins_on) // put cursor after last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 inc_cursor();
4009#endif
4010
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004011 // Virtualedit:
4012 // BACKSPACE_CHAR eats a virtual space
4013 // BACKSPACE_WORD eats all coladd
4014 // BACKSPACE_LINE eats all coladd and keeps going
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 if (curwin->w_cursor.coladd > 0)
4016 {
4017 if (mode == BACKSPACE_CHAR)
4018 {
4019 --curwin->w_cursor.coladd;
4020 return TRUE;
4021 }
4022 if (mode == BACKSPACE_WORD)
4023 {
4024 curwin->w_cursor.coladd = 0;
4025 return TRUE;
4026 }
4027 curwin->w_cursor.coladd = 0;
4028 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029
4030 /*
Bram Moolenaar878c2632017-04-01 15:15:52 +02004031 * Delete newline!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 */
4033 if (curwin->w_cursor.col == 0)
4034 {
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004035 lnum = Insstart.lnum;
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004036 if (curwin->w_cursor.lnum == lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037#ifdef FEAT_RIGHTLEFT
4038 || revins_on
4039#endif
4040 )
4041 {
4042 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
4043 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
4044 return FALSE;
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004045 --Insstart.lnum;
Bram Moolenaar04000562017-04-03 21:35:42 +02004046 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 }
4048 /*
4049 * In replace mode:
4050 * cc < 0: NL was inserted, delete it
4051 * cc >= 0: NL was replaced, put original characters back
4052 */
4053 cc = -1;
4054 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004055 cc = replace_pop(); // returns -1 if NL was inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 /*
4057 * In replace mode, in the line we started replacing, we only move the
4058 * cursor.
4059 */
4060 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
4061 {
4062 dec_cursor();
4063 }
4064 else
4065 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 if (!(State & VREPLACE_FLAG)
4067 || curwin->w_cursor.lnum > orig_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004069 temp = gchar_cursor(); // remember current char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004071
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004072 // When "aw" is in 'formatoptions' we must delete the space at
4073 // the end of the line, otherwise the line will be broken
4074 // again when auto-formatting.
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004075 if (has_format_option(FO_AUTO)
4076 && has_format_option(FO_WHITE_PAR))
4077 {
4078 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
4079 TRUE);
4080 int len;
4081
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004082 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004083 if (len > 0 && ptr[len - 1] == ' ')
4084 ptr[len - 1] = NUL;
4085 }
4086
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004087 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 if (temp == NUL && gchar_cursor() != NUL)
4089 inc_cursor();
4090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 else
4092 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093
4094 /*
4095 * In REPLACE mode we have to put back the text that was replaced
4096 * by the NL. On the replace stack is first a NUL-terminated
4097 * sequence of characters that were deleted and then the
4098 * characters that NL replaced.
4099 */
4100 if (State & REPLACE_FLAG)
4101 {
4102 /*
4103 * Do the next ins_char() in NORMAL state, to
4104 * prevent ins_char() from replacing characters and
4105 * avoiding showmatch().
4106 */
4107 oldState = State;
4108 State = NORMAL;
4109 /*
4110 * restore characters (blanks) deleted after cursor
4111 */
4112 while (cc > 0)
4113 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004114 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 mb_replace_pop_ins(cc);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004116 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 cc = replace_pop();
4118 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004119 // restore the characters that NL replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 replace_pop_ins();
4121 State = oldState;
4122 }
4123 }
4124 did_ai = FALSE;
4125 }
4126 else
4127 {
4128 /*
4129 * Delete character(s) before the cursor.
4130 */
4131#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004132 if (revins_on) // put cursor on last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 dec_cursor();
4134#endif
4135 mincol = 0;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004136 // keep indent
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004137 if (mode == BACKSPACE_LINE
4138 && (curbuf->b_p_ai
4139#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00004140 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004141#endif
4142 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143#ifdef FEAT_RIGHTLEFT
4144 && !revins_on
4145#endif
4146 )
4147 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004148 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00004150 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004152 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 }
4154
4155 /*
4156 * Handle deleting one 'shiftwidth' or 'softtabstop'.
4157 */
4158 if ( mode == BACKSPACE_CHAR
4159 && ((p_sta && in_indent)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004160 || ((get_sts_value() != 0
4161#ifdef FEAT_VARTABS
4162 || tabstop_count(curbuf->b_p_vsts_array)
4163#endif
4164 )
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00004165 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 && (*(ml_get_cursor() - 1) == TAB
4167 || (*(ml_get_cursor() - 1) == ' '
4168 && (!*inserted_space_p
4169 || arrow_used))))))
4170 {
4171 int ts;
4172 colnr_T vcol;
4173 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004174 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175
4176 *inserted_space_p = FALSE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004177 // Compute the virtual column where we want to be. Since
4178 // 'showbreak' may get in the way, need to get the last column of
4179 // the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004181 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 dec_cursor();
4183 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
4184 inc_cursor();
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004185#ifdef FEAT_VARTABS
4186 if (p_sta && in_indent)
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004187 {
4188 ts = (int)get_sw_value(curbuf);
4189 want_vcol = (want_vcol / ts) * ts;
4190 }
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004191 else
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004192 want_vcol = tabstop_start(want_vcol, get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004193 curbuf->b_p_vsts_array);
4194#else
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004195 if (p_sta && in_indent)
4196 ts = (int)get_sw_value(curbuf);
4197 else
4198 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 want_vcol = (want_vcol / ts) * ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004200#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004202 // delete characters until we are at or before want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 while (vcol > want_vcol
Bram Moolenaar1c465442017-03-12 20:10:05 +01004204 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004205 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004207 // insert extra spaces until we are at want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 while (vcol < want_vcol)
4209 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004210 // Remember the first char we inserted
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004211 if (curwin->w_cursor.lnum == Insstart_orig.lnum
4212 && curwin->w_cursor.col < Insstart_orig.col)
4213 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 if (State & VREPLACE_FLAG)
4216 ins_char(' ');
4217 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218 {
4219 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004220 if ((State & REPLACE_FLAG))
4221 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 }
4223 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
4224 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004225
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004226 // If we are now back where we started delete one character. Can
4227 // happen when using 'sts' and 'linebreak'.
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004228 if (vcol >= start_vcol)
4229 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 }
4231
4232 /*
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004233 * Delete up to starting point, start of line or previous word.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 */
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004235 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004237 int cclass = 0, prev_cclass = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004239 if (has_mbyte)
4240 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004241 do
4242 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004244 if (!revins_on) // put cursor on char to be deleted
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004245#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 dec_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004247
4248 cc = gchar_cursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004249 // look multi-byte character class
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004250 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004252 prev_cclass = cclass;
4253 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 }
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004255
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004256 // start of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004257 if (mode == BACKSPACE_WORD && !vim_isspace(cc))
4258 {
4259 mode = BACKSPACE_WORD_NOT_SPACE;
4260 temp = vim_iswordc(cc);
4261 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004262 // end of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004263 else if (mode == BACKSPACE_WORD_NOT_SPACE
4264 && ((vim_isspace(cc) || vim_iswordc(cc) != temp)
Bram Moolenaar13505972019-01-24 15:04:48 +01004265 || prev_cclass != cclass))
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004266 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267#ifdef FEAT_RIGHTLEFT
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004268 if (!revins_on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004270 inc_cursor();
4271#ifdef FEAT_RIGHTLEFT
4272 else if (State & REPLACE_FLAG)
4273 dec_cursor();
4274#endif
4275 break;
4276 }
4277 if (State & REPLACE_FLAG)
4278 replace_do_bs(-1);
4279 else
4280 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004281 if (enc_utf8 && p_deco)
4282 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004283 (void)del_char(FALSE);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004284 /*
4285 * If there are combining characters and 'delcombine' is set
4286 * move the cursor back. Don't back up before the base
4287 * character.
4288 */
4289 if (enc_utf8 && p_deco && cpc[0] != NUL)
4290 inc_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004291#ifdef FEAT_RIGHTLEFT
4292 if (revins_chars)
4293 {
4294 revins_chars--;
4295 revins_legal++;
4296 }
4297 if (revins_on && gchar_cursor() == NUL)
4298 break;
4299#endif
4300 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004301 // Just a single backspace?:
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004302 if (mode == BACKSPACE_CHAR)
4303 break;
4304 } while (
4305#ifdef FEAT_RIGHTLEFT
4306 revins_on ||
4307#endif
4308 (curwin->w_cursor.col > mincol
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02004309 && (can_bs(BS_NOSTOP)
4310 || (curwin->w_cursor.lnum != Insstart_orig.lnum
4311 || curwin->w_cursor.col != Insstart_orig.col)
4312 )));
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 did_backspace = TRUE;
4315 }
4316#ifdef FEAT_SMARTINDENT
4317 did_si = FALSE;
4318 can_si = FALSE;
4319 can_si_back = FALSE;
4320#endif
4321 if (curwin->w_cursor.col <= 1)
4322 did_ai = FALSE;
4323 /*
4324 * It's a little strange to put backspaces into the redo
4325 * buffer, but it makes auto-indent a lot easier to deal
4326 * with.
4327 */
4328 AppendCharToRedobuff(c);
4329
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004330 // If deleted before the insertion point, adjust it
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004331 if (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02004332 && curwin->w_cursor.col < Insstart_orig.col)
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004333 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004335 // vi behaviour: the cursor moves backward but the character that
4336 // was there remains visible
4337 // Vim behaviour: the cursor moves backward and the character that
4338 // was there is erased from the screen.
4339 // We can emulate the vi behaviour by pretending there is a dollar
4340 // displayed even when there isn't.
4341 // --pkv Sun Jan 19 01:56:40 EST 2003
Bram Moolenaar76b9b362012-02-04 23:35:00 +01004342 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 dollar_vcol = curwin->w_virtcol;
4344
Bram Moolenaarce3be472008-01-14 19:12:28 +00004345#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004346 // When deleting a char the cursor line must never be in a closed fold.
4347 // E.g., when 'foldmethod' is indent and deleting the first non-white
4348 // char before a Tab.
Bram Moolenaarce3be472008-01-14 19:12:28 +00004349 if (did_backspace)
4350 foldOpenCursor();
4351#endif
4352
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 return did_backspace;
4354}
4355
Bram Moolenaarec2da362017-01-21 20:04:22 +01004356/*
4357 * Handle receiving P_PS: start paste mode. Inserts the following text up to
4358 * P_PE literally.
4359 * When "drop" is TRUE then consume the text and drop it.
4360 */
4361 int
4362bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
4363{
4364 int c;
4365 char_u buf[NUMBUFLEN + MB_MAXBYTES];
4366 int idx = 0;
4367 char_u *end = find_termcode((char_u *)"PE");
4368 int ret_char = -1;
4369 int save_allow_keys = allow_keys;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004370 int save_paste = p_paste;
Bram Moolenaarec2da362017-01-21 20:04:22 +01004371
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004372 // If the end code is too long we can't detect it, read everything.
Bram Moolenaarfe4bbac2020-01-20 21:12:20 +01004373 if (end != NULL && STRLEN(end) >= NUMBUFLEN)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004374 end = NULL;
4375 ++no_mapping;
4376 allow_keys = 0;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004377 if (!p_paste)
4378 // Also have the side effects of setting 'paste' to make it work much
4379 // faster.
4380 set_option_value((char_u *)"paste", TRUE, NULL, 0);
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004381
Bram Moolenaarec2da362017-01-21 20:04:22 +01004382 for (;;)
4383 {
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004384 // When the end is not defined read everything there is.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004385 if (end == NULL && vpeekc() == NUL)
4386 break;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004387 do
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004388 c = vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +01004389 while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004390 if (c == NUL || got_int || (ex_normal_busy > 0 && c == Ctrl_C))
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004391 // When CTRL-C was encountered the typeahead will be flushed and we
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004392 // won't get the end sequence. Except when using ":normal".
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004393 break;
4394
Bram Moolenaarec2da362017-01-21 20:04:22 +01004395 if (has_mbyte)
4396 idx += (*mb_char2bytes)(c, buf + idx);
4397 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004398 buf[idx++] = c;
4399 buf[idx] = NUL;
Bram Moolenaar866c6882017-04-07 14:02:01 +02004400 if (end != NULL && STRNCMP(buf, end, idx) == 0)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004401 {
4402 if (end[idx] == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004403 break; // Found the end of paste code.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004404 continue;
4405 }
4406 if (!drop)
4407 {
4408 switch (mode)
4409 {
4410 case PASTE_CMDLINE:
4411 put_on_cmdline(buf, idx, TRUE);
4412 break;
4413
4414 case PASTE_EX:
4415 if (gap != NULL && ga_grow(gap, idx) == OK)
4416 {
4417 mch_memmove((char *)gap->ga_data + gap->ga_len,
4418 buf, (size_t)idx);
4419 gap->ga_len += idx;
4420 }
4421 break;
4422
4423 case PASTE_INSERT:
4424 if (stop_arrow() == OK)
4425 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004426 c = buf[0];
4427 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL))
4428 ins_eol(c);
4429 else
Bram Moolenaar076e5022017-01-24 18:58:30 +01004430 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004431 ins_char_bytes(buf, idx);
Bram Moolenaar076e5022017-01-24 18:58:30 +01004432 AppendToRedobuffLit(buf, idx);
4433 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01004434 }
4435 break;
4436
4437 case PASTE_ONE_CHAR:
4438 if (ret_char == -1)
4439 {
Bram Moolenaarec2da362017-01-21 20:04:22 +01004440 if (has_mbyte)
4441 ret_char = (*mb_ptr2char)(buf);
4442 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004443 ret_char = buf[0];
4444 }
4445 break;
4446 }
4447 }
4448 idx = 0;
4449 }
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004450
Bram Moolenaarec2da362017-01-21 20:04:22 +01004451 --no_mapping;
4452 allow_keys = save_allow_keys;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004453 if (!save_paste)
4454 set_option_value((char_u *)"paste", FALSE, NULL, 0);
Bram Moolenaarec2da362017-01-21 20:04:22 +01004455
4456 return ret_char;
4457}
4458
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004459#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004460 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004461ins_tabline(int c)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004462{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004463 // We will be leaving the current window, unless closing another tab.
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004464 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
4465 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
4466 {
4467 undisplay_dollar();
4468 start_arrow(&curwin->w_cursor);
4469# ifdef FEAT_CINDENT
4470 can_cindent = TRUE;
4471# endif
4472 }
4473
4474 if (c == K_TABLINE)
4475 goto_tabpage(current_tab);
4476 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004477 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004478 handle_tabmenu();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004479 redraw_statuslines(); // will redraw the tabline when needed
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004480 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004481}
4482#endif
4483
4484#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004486ins_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487{
4488 pos_T tpos;
4489
4490 undisplay_dollar();
4491 tpos = curwin->w_cursor;
4492 if (gui_do_scroll())
4493 {
4494 start_arrow(&tpos);
4495# ifdef FEAT_CINDENT
4496 can_cindent = TRUE;
4497# endif
4498 }
4499}
4500
4501 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004502ins_horscroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503{
4504 pos_T tpos;
4505
4506 undisplay_dollar();
4507 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004508 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 {
4510 start_arrow(&tpos);
4511# ifdef FEAT_CINDENT
4512 can_cindent = TRUE;
4513# endif
4514 }
4515}
4516#endif
4517
4518 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004519ins_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520{
4521 pos_T tpos;
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004522 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523
4524#ifdef FEAT_FOLDING
4525 if ((fdo_flags & FDO_HOR) && KeyTyped)
4526 foldOpenCursor();
4527#endif
4528 undisplay_dollar();
4529 tpos = curwin->w_cursor;
4530 if (oneleft() == OK)
4531 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004532#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004533 // Only call start_arrow() when not busy with preediting, it will
4534 // break undo. K_LEFT is inserted in im_correct_cursor().
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02004535 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting())
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004536#endif
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004537 {
4538 start_arrow_with_change(&tpos, end_change);
4539 if (!end_change)
4540 AppendCharToRedobuff(K_LEFT);
4541 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004543 // If exit reversed string, position is fixed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
4545 revins_legal++;
4546 revins_chars++;
4547#endif
4548 }
4549
4550 /*
4551 * if 'whichwrap' set for cursor in insert mode may go to
4552 * previous line
4553 */
4554 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
4555 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004556 // always break undo when moving upwards/downwards, else undo may break
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 start_arrow(&tpos);
4558 --(curwin->w_cursor.lnum);
4559 coladvance((colnr_T)MAXCOL);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004560 curwin->w_set_curswant = TRUE; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 }
4562 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004563 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004564 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565}
4566
4567 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004568ins_home(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569{
4570 pos_T tpos;
4571
4572#ifdef FEAT_FOLDING
4573 if ((fdo_flags & FDO_HOR) && KeyTyped)
4574 foldOpenCursor();
4575#endif
4576 undisplay_dollar();
4577 tpos = curwin->w_cursor;
4578 if (c == K_C_HOME)
4579 curwin->w_cursor.lnum = 1;
4580 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 curwin->w_curswant = 0;
4583 start_arrow(&tpos);
4584}
4585
4586 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004587ins_end(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588{
4589 pos_T tpos;
4590
4591#ifdef FEAT_FOLDING
4592 if ((fdo_flags & FDO_HOR) && KeyTyped)
4593 foldOpenCursor();
4594#endif
4595 undisplay_dollar();
4596 tpos = curwin->w_cursor;
4597 if (c == K_C_END)
4598 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4599 coladvance((colnr_T)MAXCOL);
4600 curwin->w_curswant = MAXCOL;
4601
4602 start_arrow(&tpos);
4603}
4604
4605 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004606ins_s_left()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004608 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609#ifdef FEAT_FOLDING
4610 if ((fdo_flags & FDO_HOR) && KeyTyped)
4611 foldOpenCursor();
4612#endif
4613 undisplay_dollar();
4614 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
4615 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004616 start_arrow_with_change(&curwin->w_cursor, end_change);
4617 if (!end_change)
4618 AppendCharToRedobuff(K_S_LEFT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 (void)bck_word(1L, FALSE, FALSE);
4620 curwin->w_set_curswant = TRUE;
4621 }
4622 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004623 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004624 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625}
4626
4627 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004628ins_right(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004630 int end_change = dont_sync_undo == FALSE; // end undoable change
4631
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632#ifdef FEAT_FOLDING
4633 if ((fdo_flags & FDO_HOR) && KeyTyped)
4634 foldOpenCursor();
4635#endif
4636 undisplay_dollar();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004637 if (gchar_cursor() != NUL || virtual_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 {
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004639 start_arrow_with_change(&curwin->w_cursor, end_change);
4640 if (!end_change)
4641 AppendCharToRedobuff(K_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 if (virtual_active())
4644 oneright();
4645 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004648 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 ++curwin->w_cursor.col;
4651 }
4652
4653#ifdef FEAT_RIGHTLEFT
4654 revins_legal++;
4655 if (revins_chars)
4656 revins_chars--;
4657#endif
4658 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004659 // if 'whichwrap' set for cursor in insert mode, may move the
4660 // cursor to the next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 else if (vim_strchr(p_ww, ']') != NULL
4662 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4663 {
4664 start_arrow(&curwin->w_cursor);
4665 curwin->w_set_curswant = TRUE;
4666 ++curwin->w_cursor.lnum;
4667 curwin->w_cursor.col = 0;
4668 }
4669 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004670 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004671 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672}
4673
4674 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004675ins_s_right()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004677 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678#ifdef FEAT_FOLDING
4679 if ((fdo_flags & FDO_HOR) && KeyTyped)
4680 foldOpenCursor();
4681#endif
4682 undisplay_dollar();
4683 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4684 || gchar_cursor() != NUL)
4685 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004686 start_arrow_with_change(&curwin->w_cursor, end_change);
4687 if (!end_change)
4688 AppendCharToRedobuff(K_S_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 (void)fwd_word(1L, FALSE, 0);
4690 curwin->w_set_curswant = TRUE;
4691 }
4692 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004693 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004694 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695}
4696
4697 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004698ins_up(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004699 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700{
4701 pos_T tpos;
4702 linenr_T old_topline = curwin->w_topline;
4703#ifdef FEAT_DIFF
4704 int old_topfill = curwin->w_topfill;
4705#endif
4706
4707 undisplay_dollar();
4708 tpos = curwin->w_cursor;
4709 if (cursor_up(1L, TRUE) == OK)
4710 {
4711 if (startcol)
4712 coladvance(getvcol_nolist(&Insstart));
4713 if (old_topline != curwin->w_topline
4714#ifdef FEAT_DIFF
4715 || old_topfill != curwin->w_topfill
4716#endif
4717 )
4718 redraw_later(VALID);
4719 start_arrow(&tpos);
4720#ifdef FEAT_CINDENT
4721 can_cindent = TRUE;
4722#endif
4723 }
4724 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004725 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726}
4727
4728 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004729ins_pageup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730{
4731 pos_T tpos;
4732
4733 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004734
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004735 if (mod_mask & MOD_MASK_CTRL)
4736 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004737 // <C-PageUp>: tab page back
Bram Moolenaarbc444822006-10-17 11:37:50 +00004738 if (first_tabpage->tp_next != NULL)
4739 {
4740 start_arrow(&curwin->w_cursor);
4741 goto_tabpage(-1);
4742 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004743 return;
4744 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004745
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 tpos = curwin->w_cursor;
4747 if (onepage(BACKWARD, 1L) == OK)
4748 {
4749 start_arrow(&tpos);
4750#ifdef FEAT_CINDENT
4751 can_cindent = TRUE;
4752#endif
4753 }
4754 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004755 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756}
4757
4758 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004759ins_down(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004760 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761{
4762 pos_T tpos;
4763 linenr_T old_topline = curwin->w_topline;
4764#ifdef FEAT_DIFF
4765 int old_topfill = curwin->w_topfill;
4766#endif
4767
4768 undisplay_dollar();
4769 tpos = curwin->w_cursor;
4770 if (cursor_down(1L, TRUE) == OK)
4771 {
4772 if (startcol)
4773 coladvance(getvcol_nolist(&Insstart));
4774 if (old_topline != curwin->w_topline
4775#ifdef FEAT_DIFF
4776 || old_topfill != curwin->w_topfill
4777#endif
4778 )
4779 redraw_later(VALID);
4780 start_arrow(&tpos);
4781#ifdef FEAT_CINDENT
4782 can_cindent = TRUE;
4783#endif
4784 }
4785 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004786 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787}
4788
4789 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004790ins_pagedown(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791{
4792 pos_T tpos;
4793
4794 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004795
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004796 if (mod_mask & MOD_MASK_CTRL)
4797 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004798 // <C-PageDown>: tab page forward
Bram Moolenaarbc444822006-10-17 11:37:50 +00004799 if (first_tabpage->tp_next != NULL)
4800 {
4801 start_arrow(&curwin->w_cursor);
4802 goto_tabpage(0);
4803 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004804 return;
4805 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004806
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 tpos = curwin->w_cursor;
4808 if (onepage(FORWARD, 1L) == OK)
4809 {
4810 start_arrow(&tpos);
4811#ifdef FEAT_CINDENT
4812 can_cindent = TRUE;
4813#endif
4814 }
4815 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004816 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817}
4818
4819#ifdef FEAT_DND
4820 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004821ins_drop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822{
Bram Moolenaarc3516f72020-09-08 22:45:35 +02004823 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824}
4825#endif
4826
4827/*
4828 * Handle TAB in Insert or Replace mode.
4829 * Return TRUE when the TAB needs to be inserted like a normal character.
4830 */
4831 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004832ins_tab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833{
4834 int ind;
4835 int i;
4836 int temp;
4837
4838 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
4839 Insstart_blank_vcol = get_nolist_virtcol();
4840 if (echeck_abbr(TAB + ABBR_OFF))
4841 return FALSE;
4842
4843 ind = inindent(0);
4844#ifdef FEAT_CINDENT
4845 if (ind)
4846 can_cindent = FALSE;
4847#endif
4848
4849 /*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004850 * When nothing special, insert TAB like a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 */
4852 if (!curbuf->b_p_et
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004853#ifdef FEAT_VARTABS
4854 && !(p_sta && ind
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004855 // These five lines mean 'tabstop' != 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004856 && ((tabstop_count(curbuf->b_p_vts_array) > 1)
4857 || (tabstop_count(curbuf->b_p_vts_array) == 1
4858 && tabstop_first(curbuf->b_p_vts_array)
4859 != get_sw_value(curbuf))
4860 || (tabstop_count(curbuf->b_p_vts_array) == 0
4861 && curbuf->b_p_ts != get_sw_value(curbuf))))
4862 && tabstop_count(curbuf->b_p_vsts_array) == 0
4863#else
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004864 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004865#endif
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004866 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 return TRUE;
4868
4869 if (stop_arrow() == FAIL)
4870 return TRUE;
4871
4872 did_ai = FALSE;
4873#ifdef FEAT_SMARTINDENT
4874 did_si = FALSE;
4875 can_si = FALSE;
4876 can_si_back = FALSE;
4877#endif
4878 AppendToRedobuff((char_u *)"\t");
4879
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004880#ifdef FEAT_VARTABS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004881 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004882 {
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004883 temp = (int)get_sw_value(curbuf);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004884 temp -= get_nolist_virtcol() % temp;
4885 }
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004886 else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts != 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004887 // use 'softtabstop' when set
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004888 temp = tabstop_padding(get_nolist_virtcol(), get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004889 curbuf->b_p_vsts_array);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004890 else // otherwise use 'tabstop'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004891 temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts,
4892 curbuf->b_p_vts_array);
4893#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004894 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004895 temp = (int)get_sw_value(curbuf);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004896 else if (curbuf->b_p_sts != 0) // use 'softtabstop' when set
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004897 temp = (int)get_sts_value();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004898 else // otherwise use 'tabstop'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 temp = (int)curbuf->b_p_ts;
4900 temp -= get_nolist_virtcol() % temp;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004901#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902
4903 /*
4904 * Insert the first space with ins_char(). It will delete one char in
4905 * replace mode. Insert the rest with ins_str(); it will not delete any
4906 * chars. For VREPLACE mode, we use ins_char() for all characters.
4907 */
4908 ins_char(' ');
4909 while (--temp > 0)
4910 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 if (State & VREPLACE_FLAG)
4912 ins_char(' ');
4913 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 {
4915 ins_str((char_u *)" ");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004916 if (State & REPLACE_FLAG) // no char replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 replace_push(NUL);
4918 }
4919 }
4920
4921 /*
4922 * When 'expandtab' not set: Replace spaces by TABs where possible.
4923 */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004924#ifdef FEAT_VARTABS
4925 if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0
4926 || get_sts_value() > 0
4927 || (p_sta && ind)))
4928#else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004929 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 {
4932 char_u *ptr;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004933 char_u *saved_line = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 pos_T fpos;
4936 pos_T *cursor;
4937 colnr_T want_vcol, vcol;
4938 int change_col = -1;
4939 int save_list = curwin->w_p_list;
4940
4941 /*
4942 * Get the current line. For VREPLACE mode, don't make real changes
4943 * yet, just work on a copy of the line.
4944 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 if (State & VREPLACE_FLAG)
4946 {
4947 pos = curwin->w_cursor;
4948 cursor = &pos;
4949 saved_line = vim_strsave(ml_get_curline());
4950 if (saved_line == NULL)
4951 return FALSE;
4952 ptr = saved_line + pos.col;
4953 }
4954 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 {
4956 ptr = ml_get_cursor();
4957 cursor = &curwin->w_cursor;
4958 }
4959
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004960 // When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
4962 curwin->w_p_list = FALSE;
4963
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004964 // Find first white before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 fpos = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +01004966 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 {
4968 --fpos.col;
4969 --ptr;
4970 }
4971
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004972 // In Replace mode, don't change characters before the insert point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 if ((State & REPLACE_FLAG)
4974 && fpos.lnum == Insstart.lnum
4975 && fpos.col < Insstart.col)
4976 {
4977 ptr += Insstart.col - fpos.col;
4978 fpos.col = Insstart.col;
4979 }
4980
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004981 // compute virtual column numbers of first white and cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 getvcol(curwin, &fpos, &vcol, NULL, NULL);
4983 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
4984
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004985 // Use as many TABs as possible. Beware of 'breakindent', 'showbreak'
4986 // and 'linebreak' adding extra virtual columns.
Bram Moolenaar1c465442017-03-12 20:10:05 +01004987 while (VIM_ISWHITE(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02004989 i = lbr_chartabsize(NULL, (char_u *)"\t", vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 if (vcol + i > want_vcol)
4991 break;
4992 if (*ptr != TAB)
4993 {
4994 *ptr = TAB;
4995 if (change_col < 0)
4996 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004997 change_col = fpos.col; // Column of first change
4998 // May have to adjust Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
5000 Insstart.col = fpos.col;
5001 }
5002 }
5003 ++fpos.col;
5004 ++ptr;
5005 vcol += i;
5006 }
5007
5008 if (change_col >= 0)
5009 {
5010 int repl_off = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005011 char_u *line = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005013 // Skip over the spaces we need.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 while (vcol < want_vcol && *ptr == ' ')
5015 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02005016 vcol += lbr_chartabsize(line, ptr, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 ++ptr;
5018 ++repl_off;
5019 }
5020 if (vcol > want_vcol)
5021 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005022 // Must have a char with 'showbreak' just before it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 --ptr;
5024 --repl_off;
5025 }
5026 fpos.col += repl_off;
5027
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005028 // Delete following spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 i = cursor->col - fpos.col;
5030 if (i > 0)
5031 {
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005032#ifdef FEAT_PROP_POPUP
5033 if (!(State & VREPLACE_FLAG))
5034 {
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005035 char_u *newp;
5036 int col;
5037
5038 newp = alloc(curbuf->b_ml.ml_line_len - i);
5039 if (newp == NULL)
5040 return FALSE;
5041
5042 col = ptr - curbuf->b_ml.ml_line_ptr;
5043 if (col > 0)
5044 mch_memmove(newp, ptr - col, col);
5045 mch_memmove(newp + col, ptr + i,
5046 curbuf->b_ml.ml_line_len - col - i);
5047
5048 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY)
5049 vim_free(curbuf->b_ml.ml_line_ptr);
5050 curbuf->b_ml.ml_line_ptr = newp;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005051 curbuf->b_ml.ml_line_len -= i;
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005052 curbuf->b_ml.ml_flags =
5053 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005054 }
5055 else
5056#endif
5057 STRMOVE(ptr, ptr + i);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005058 // correct replace stack.
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005059 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 for (temp = i; --temp >= 0; )
5061 replace_join(repl_off);
5062 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00005063#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005064 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00005065 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02005066 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00005067 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
5068 (char_u *)"\t", 1);
5069 }
5070#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 cursor->col -= i;
5072
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 /*
5074 * In VREPLACE mode, we haven't changed anything yet. Do it now by
5075 * backspacing over the changed spacing and then inserting the new
5076 * spacing.
5077 */
5078 if (State & VREPLACE_FLAG)
5079 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005080 // Backspace from real cursor to change_col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 backspace_until_column(change_col);
5082
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005083 // Insert each char in saved_line from changed_col to
5084 // ptr-cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 ins_bytes_len(saved_line + change_col,
5086 cursor->col - change_col);
5087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 }
5089
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 if (State & VREPLACE_FLAG)
5091 vim_free(saved_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 curwin->w_p_list = save_list;
5093 }
5094
5095 return FALSE;
5096}
5097
5098/*
5099 * Handle CR or NL in insert mode.
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005100 * Return FAIL when out of memory or can't undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005102 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005103ins_eol(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104{
5105 int i;
5106
5107 if (echeck_abbr(c + ABBR_OFF))
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005108 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 if (stop_arrow() == FAIL)
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005110 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 undisplay_dollar();
5112
5113 /*
5114 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
5115 * character under the cursor. Only push a NUL on the replace stack,
5116 * nothing to put back when the NL is deleted.
5117 */
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005118 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 replace_push(NUL);
5120
5121 /*
5122 * In VREPLACE mode, a NL replaces the rest of the line, and starts
5123 * replacing the next line, so we push all of the characters left on the
5124 * line onto the replace stack. This is not done here though, it is done
5125 * in open_line().
5126 */
5127
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005128 // Put cursor on NUL if on the last char and coladd is 1 (happens after
5129 // CTRL-O).
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005130 if (virtual_active() && curwin->w_cursor.coladd > 0)
5131 coladvance(getviscol());
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005132
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005134 // NL in reverse insert will always start in the end of
5135 // current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 if (revins_on)
5137 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
5138#endif
5139
5140 AppendToRedobuff(NL_STR);
5141 i = open_line(FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02005142 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM : 0, old_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 old_indent = 0;
5144#ifdef FEAT_CINDENT
5145 can_cindent = TRUE;
5146#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005147#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005148 // When inserting a line the cursor line must never be in a closed fold.
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005149 foldOpenCursor();
5150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005152 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153}
5154
5155#ifdef FEAT_DIGRAPHS
5156/*
5157 * Handle digraph in insert mode.
5158 * Returns character still to be inserted, or NUL when nothing remaining to be
5159 * done.
5160 */
5161 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005162ins_digraph(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163{
5164 int c;
5165 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005166 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167
5168 pc_status = PC_STATUS_UNSET;
5169 if (redrawing() && !char_avail())
5170 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005171 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005172 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173
5174 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005175 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176#ifdef FEAT_CMDL_INFO
5177 add_to_showcmd_c(Ctrl_K);
5178#endif
5179 }
5180
5181#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005182 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183#endif
5184
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005185 // don't map the digraph chars. This also prevents the
5186 // mode message to be deleted when ESC is hit
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 ++no_mapping;
5188 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005189 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 --no_mapping;
5191 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005192 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005193 // when the line fits in 'columns' the '?' is at the start of the next
5194 // line and will not be removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005195 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02005196
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005197 if (IS_SPECIAL(c) || mod_mask) // special key
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 {
5199#ifdef FEAT_CMDL_INFO
5200 clear_showcmd();
5201#endif
5202 insert_special(c, TRUE, FALSE);
5203 return NUL;
5204 }
5205 if (c != ESC)
5206 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005207 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 if (redrawing() && !char_avail())
5209 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005210 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005211 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212
5213 if (char2cells(c) == 1)
5214 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00005215 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005217 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 }
5219#ifdef FEAT_CMDL_INFO
5220 add_to_showcmd_c(c);
5221#endif
5222 }
5223 ++no_mapping;
5224 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005225 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 --no_mapping;
5227 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005228 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005229 // when the line fits in 'columns' the '?' is at the start of the
5230 // next line and will not be removed by a redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005231 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 if (cc != ESC)
5233 {
5234 AppendToRedobuff((char_u *)CTRL_V_STR);
h-east29b85712021-07-26 21:54:04 +02005235 c = digraph_get(c, cc, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236#ifdef FEAT_CMDL_INFO
5237 clear_showcmd();
5238#endif
5239 return c;
5240 }
5241 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242#ifdef FEAT_CMDL_INFO
5243 clear_showcmd();
5244#endif
5245 return NUL;
5246}
5247#endif
5248
5249/*
5250 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
5251 * Returns the char to be inserted, or NUL if none found.
5252 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005253 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005254ins_copychar(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255{
5256 int c;
5257 int temp;
5258 char_u *ptr, *prev_ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005259 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260
5261 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
5262 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02005263 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 return NUL;
5265 }
5266
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005267 // try to advance to the cursor column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 temp = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005269 line = ptr = ml_get(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 prev_ptr = ptr;
5271 validate_virtcol();
5272 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
5273 {
5274 prev_ptr = ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005275 temp += lbr_chartabsize_adv(line, &ptr, (colnr_T)temp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 }
5277 if ((colnr_T)temp > curwin->w_virtcol)
5278 ptr = prev_ptr;
5279
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 c = (*mb_ptr2char)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 if (c == NUL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005282 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 return c;
5284}
5285
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005286/*
5287 * CTRL-Y or CTRL-E typed in Insert mode.
5288 */
5289 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005290ins_ctrl_ey(int tc)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005291{
5292 int c = tc;
5293
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005294 if (ctrl_x_mode_scroll())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005295 {
5296 if (c == Ctrl_Y)
5297 scrolldown_clamp();
5298 else
5299 scrollup_clamp();
5300 redraw_later(VALID);
5301 }
5302 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005303 {
5304 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
5305 if (c != NUL)
5306 {
5307 long tw_save;
5308
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005309 // The character must be taken literally, insert like it
5310 // was typed after a CTRL-V, and pretend 'textwidth'
5311 // wasn't set. Digits, 'o' and 'x' are special after a
5312 // CTRL-V, don't use it for these.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005313 if (c < 256 && !isalnum(c))
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005314 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005315 tw_save = curbuf->b_p_tw;
5316 curbuf->b_p_tw = -1;
5317 insert_special(c, TRUE, FALSE);
5318 curbuf->b_p_tw = tw_save;
5319#ifdef FEAT_RIGHTLEFT
5320 revins_chars++;
5321 revins_legal++;
5322#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005323 c = Ctrl_V; // pretend CTRL-V is last character
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005324 auto_format(FALSE, TRUE);
5325 }
5326 }
5327 return c;
5328}
5329
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330/*
5331 * Get the value that w_virtcol would have when 'list' is off.
5332 * Unless 'cpo' contains the 'L' flag.
5333 */
Bram Moolenaarf9514162018-11-22 03:08:29 +01005334 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005335get_nolist_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336{
Bram Moolenaarf9514162018-11-22 03:08:29 +01005337 // check validity of cursor in current buffer
5338 if (curwin->w_buffer == NULL
5339 || curwin->w_buffer->b_ml.ml_mfp == NULL
5340 || curwin->w_cursor.lnum > curwin->w_buffer->b_ml.ml_line_count)
5341 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
5343 return getvcol_nolist(&curwin->w_cursor);
5344 validate_virtcol();
5345 return curwin->w_virtcol;
5346}
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005347
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005348#if defined(FEAT_EVAL)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005349/*
5350 * Handle the InsertCharPre autocommand.
5351 * "c" is the character that was typed.
5352 * Return a pointer to allocated memory with the replacement string.
5353 * Return NULL to continue inserting "c".
5354 */
5355 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005356do_insert_char_pre(int c)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005357{
Bram Moolenaar704984a2012-06-01 14:57:51 +02005358 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +02005359 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005360 int save_State = State;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005361
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005362 // Return quickly when there is nothing to do.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005363 if (!has_insertcharpre())
5364 return NULL;
5365
Bram Moolenaar704984a2012-06-01 14:57:51 +02005366 if (has_mbyte)
5367 buf[(*mb_char2bytes)(c, buf)] = NUL;
5368 else
Bram Moolenaar704984a2012-06-01 14:57:51 +02005369 {
5370 buf[0] = c;
5371 buf[1] = NUL;
5372 }
5373
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005374 // Lock the text to avoid weird things from happening.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005375 ++textwinlock;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005376 set_vim_var_string(VV_CHAR, buf, -1); // set v:char
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005377
Bram Moolenaar704984a2012-06-01 14:57:51 +02005378 res = NULL;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005379 if (ins_apply_autocmds(EVENT_INSERTCHARPRE))
Bram Moolenaar704984a2012-06-01 14:57:51 +02005380 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005381 // Get the value of v:char. It may be empty or more than one
5382 // character. Only use it when changed, otherwise continue with the
5383 // original character to avoid breaking autoindent.
Bram Moolenaar704984a2012-06-01 14:57:51 +02005384 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
5385 res = vim_strsave(get_vim_var_str(VV_CHAR));
5386 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005387
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005388 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005389 --textwinlock;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005390
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005391 // Restore the State, it may have been changed.
5392 State = save_State;
5393
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005394 return res;
5395}
5396#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005397
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005398#if defined(FEAT_CINDENT) || defined(PROTO)
5399 int
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005400get_can_cindent(void)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005401{
5402 return can_cindent;
5403}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005404
5405 void
5406set_can_cindent(int val)
5407{
5408 can_cindent = val;
5409}
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005410#endif
5411
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005412/*
5413 * Trigger "event" and take care of fixing undo.
5414 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005415 int
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005416ins_apply_autocmds(event_T event)
5417{
5418 varnumber_T tick = CHANGEDTICK(curbuf);
5419 int r;
5420
5421 r = apply_autocmds(event, NULL, NULL, FALSE, curbuf);
5422
5423 // If u_savesub() was called then we are not prepared to start
5424 // a new line. Call u_save() with no contents to fix that.
Bram Moolenaardb934952020-04-27 20:18:31 +02005425 // Except when leaving Insert mode.
5426 if (event != EVENT_INSERTLEAVE && tick != CHANGEDTICK(curbuf))
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005427 u_save(curwin->w_cursor.lnum, (linenr_T)(curwin->w_cursor.lnum + 1));
5428
5429 return r;
5430}