blob: 6bdeded000bc0b4f5723ce4755955ecbf30c8f59 [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
287 stop_insert_mode = FALSE;
288
Bram Moolenaarea042672021-06-29 20:22:32 +0200289#ifdef FEAT_CONCEAL
290 // Check if the cursor line needs redrawing after changing State. If
291 // 'concealcursor' is "n" it needs to be redrawn without concealing.
292 conceal_check_cursor_line(cursor_line_was_concealed);
293#endif
294
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295 /*
296 * Need to recompute the cursor position, it might move when the cursor is
297 * on a TAB or special character.
298 */
299 curs_columns(TRUE);
300
301 /*
302 * Enable langmap or IME, indicated by 'iminsert'.
303 * Note that IME may enabled/disabled without us noticing here, thus the
304 * 'iminsert' value may not reflect what is actually used. It is updated
305 * when hitting <Esc>.
306 */
307 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
308 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100309#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
311#endif
312
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314#ifdef FEAT_CMDL_INFO
315 clear_showcmd();
316#endif
317#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100318 // there is no reverse replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 revins_on = (State == INSERT && p_ri);
320 if (revins_on)
321 undisplay_dollar();
322 revins_chars = 0;
323 revins_legal = 0;
324 revins_scol = -1;
325#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100326 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100327 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200328#ifdef FEAT_JOB_CHANNEL
329 ch_log_output = TRUE;
330#endif
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100331 // Disable bracketed paste mode, we won't recognize the escape
332 // sequences.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100333 out_str(T_BD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100335 // Disable modifyOtherKeys, keys with modifiers would cause exiting
336 // Insert mode.
337 out_str(T_CTE);
338 }
339
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 /*
341 * Handle restarting Insert mode.
Bram Moolenaara6c07602017-03-05 21:18:27 +0100342 * Don't do this for "CTRL-O ." (repeat an insert): In that case we get
343 * here with something in the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 */
345 if (restart_edit != 0 && stuff_empty())
346 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 /*
348 * After a paste we consider text typed to be part of the insert for
349 * the pasted text. You can backspace over the pasted text too.
350 */
351 if (where_paste_started.lnum)
352 arrow_used = FALSE;
353 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 arrow_used = TRUE;
355 restart_edit = 0;
356
357 /*
358 * If the cursor was after the end-of-line before the CTRL-O and it is
359 * now at the end-of-line, put it after the end-of-line (this is not
360 * correct in very rare cases).
361 * Also do this if curswant is greater than the current virtual
362 * column. Eg after "^O$" or "^O80|".
363 */
364 validate_virtcol();
365 update_curswant();
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000366 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 || curwin->w_curswant > curwin->w_virtcol)
368 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
369 {
370 if (ptr[1] == NUL)
371 ++curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 else if (has_mbyte)
373 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000374 i = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 if (ptr[i] == NUL)
376 curwin->w_cursor.col += i;
377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000379 ins_at_eol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 }
381 else
382 arrow_used = FALSE;
383
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100384 // we are in insert mode now, don't need to start it anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385 need_start_insertmode = FALSE;
386
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100387 // Need to save the line for undo before inserting the first char.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 ins_need_undo = TRUE;
389
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390 where_paste_started.lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391#ifdef FEAT_CINDENT
392 can_cindent = TRUE;
393#endif
394#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100395 // The cursor line is not in a closed fold, unless 'insertmode' is set or
396 // restarting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 if (!p_im && did_restart_edit == 0)
398 foldOpenCursor();
399#endif
400
401 /*
402 * If 'showmode' is set, show the current (insert/replace/..) mode.
403 * A warning message for changing a readonly file is given here, before
404 * actually changing anything. It's put after the mode, if any.
405 */
406 i = 0;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000407 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 i = showmode();
409
410 if (!p_im && did_restart_edit == 0)
Bram Moolenaar21af89e2008-01-02 21:09:33 +0000411 change_warning(i == 0 ? 0 : i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412
413#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100414 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415#endif
416#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100417 do_digraph(-1); // clear digraphs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418#endif
419
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000420 /*
421 * Get the current length of the redo buffer, those characters have to be
422 * skipped if we want to get to the inserted characters.
423 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 ptr = get_inserted();
425 if (ptr == NULL)
426 new_insert_skip = 0;
427 else
428 {
429 new_insert_skip = (int)STRLEN(ptr);
430 vim_free(ptr);
431 }
432
433 old_indent = 0;
434
435 /*
436 * Main loop in Insert mode: repeat until Insert mode is left.
437 */
438 for (;;)
439 {
440#ifdef FEAT_RIGHTLEFT
441 if (!revins_legal)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100442 revins_scol = -1; // reset on illegal motions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 else
444 revins_legal = 0;
445#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100446 if (arrow_used) // don't repeat insert when arrow key used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 count = 0;
448
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100449 if (update_Insstart_orig)
450 Insstart_orig = Insstart;
451
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200452 if (stop_insert_mode && !pum_visible())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100454 // ":stopinsert" used or 'insertmode' reset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 count = 0;
456 goto doESCkey;
457 }
458
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100459 // set curwin->w_curswant for next K_DOWN or K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 if (!arrow_used)
461 curwin->w_set_curswant = TRUE;
462
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100463 // If there is no typeahead may check for timestamps (e.g., for when a
464 // menu invoked a shell command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 if (stuff_empty())
466 {
467 did_check_timestamps = FALSE;
468 if (need_check_timestamps)
469 check_timestamps(FALSE);
470 }
471
472 /*
473 * When emsg() was called msg_scroll will have been set.
474 */
475 msg_scroll = FALSE;
476
477#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100478 // When 'mousefocus' is set a mouse movement may have taken us to
479 // another window. "need_mouse_correct" may then be set because of an
480 // autocommand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 if (need_mouse_correct)
482 gui_mouse_correct();
483#endif
484
485#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100486 // Open fold at the cursor line, according to 'foldopen'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487 if (fdo_flags & FDO_INSERT)
488 foldOpenCursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100489 // Close folds where the cursor isn't, according to 'foldclose'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 if (!char_avail())
491 foldCheckClose();
492#endif
493
Bram Moolenaarf2732452018-06-03 14:47:35 +0200494#ifdef FEAT_JOB_CHANNEL
495 if (bt_prompt(curbuf))
496 {
497 init_prompt(cmdchar_todo);
498 cmdchar_todo = NUL;
499 }
500#endif
501
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 /*
503 * If we inserted a character at the last position of the last line in
504 * the window, scroll the window one line up. This avoids an extra
505 * redraw.
506 * This is detected when the cursor column is smaller after inserting
507 * something.
508 * Don't do this when the topline changed already, it has
509 * already been adjusted (by insertchar() calling open_line())).
510 */
511 if (curbuf->b_mod_set
512 && curwin->w_p_wrap
513 && !did_backspace
514 && curwin->w_topline == old_topline
515#ifdef FEAT_DIFF
516 && curwin->w_topfill == old_topfill
517#endif
518 )
519 {
520 mincol = curwin->w_wcol;
521 validate_cursor_col();
522
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200523 if (
524#ifdef FEAT_VARTABS
525 (int)curwin->w_wcol < mincol - tabstop_at(
526 get_nolist_virtcol(), curbuf->b_p_ts,
527 curbuf->b_p_vts_array)
528#else
529 (int)curwin->w_wcol < mincol - curbuf->b_p_ts
530#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 && curwin->w_wrow == W_WINROW(curwin)
Bram Moolenaar375e3392019-01-31 18:26:10 +0100532 + curwin->w_height - 1 - get_scrolloff_value()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 && (curwin->w_cursor.lnum != curwin->w_topline
534#ifdef FEAT_DIFF
535 || curwin->w_topfill > 0
536#endif
537 ))
538 {
539#ifdef FEAT_DIFF
540 if (curwin->w_topfill > 0)
541 --curwin->w_topfill;
542 else
543#endif
544#ifdef FEAT_FOLDING
545 if (hasFolding(curwin->w_topline, NULL, &old_topline))
546 set_topline(curwin, old_topline + 1);
547 else
548#endif
549 set_topline(curwin, curwin->w_topline + 1);
550 }
551 }
552
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100553 // May need to adjust w_topline to show the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 update_topline();
555
556 did_backspace = FALSE;
557
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100558 validate_cursor(); // may set must_redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559
560 /*
561 * Redraw the display when no characters are waiting.
562 * Also shows mode, ruler and positions cursor.
563 */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000564 ins_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 if (curwin->w_p_scb)
567 do_check_scrollbind(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568
Bram Moolenaar860cae12010-06-05 23:22:07 +0200569 if (curwin->w_p_crb)
570 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 update_curswant();
572 old_topline = curwin->w_topline;
573#ifdef FEAT_DIFF
574 old_topfill = curwin->w_topfill;
575#endif
576
577#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100578 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579#endif
580
581 /*
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100582 * Get a character for Insert mode. Ignore K_IGNORE and K_NOP.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 */
Bram Moolenaar6c5bdb72015-03-13 13:24:23 +0100584 if (c != K_CURSORHOLD)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100585 lastc = c; // remember the previous char for CTRL-D
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200586
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100587 // After using CTRL-G U the next cursor key will not break undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200588 if (dont_sync_undo == MAYBE)
589 dont_sync_undo = TRUE;
590 else
591 dont_sync_undo = FALSE;
Bram Moolenaarec2da362017-01-21 20:04:22 +0100592 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100593 // Got here from normal mode when bracketed paste started.
Bram Moolenaarec2da362017-01-21 20:04:22 +0100594 c = K_PS;
595 else
596 do
597 {
598 c = safe_vgetc();
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200599
600 if (stop_insert_mode)
601 {
602 // Insert mode ended, possibly from a callback.
Bram Moolenaard0e1b712020-09-27 20:13:03 +0200603 if (c != K_IGNORE && c != K_NOP)
604 vungetc(c);
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200605 count = 0;
606 nomove = TRUE;
Bram Moolenaard0e1b712020-09-27 20:13:03 +0200607 ins_compl_prep(ESC);
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200608 goto doESCkey;
609 }
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100610 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100612 // Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V.
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000613 did_cursorhold = TRUE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000614
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615#ifdef FEAT_RIGHTLEFT
616 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100617 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000620 /*
621 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000622 * and the cursor is still in the completed word. Only when there is
623 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000624 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100625 if (ins_compl_active()
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000626 && pum_wanted()
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100627 && curwin->w_cursor.col >= ins_compl_col()
628 && ins_compl_has_shown_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000629 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100630 // BS: Delete one character from "compl_leader".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000631 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100632 && curwin->w_cursor.col > ins_compl_col()
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000633 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000634 continue;
635
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100636 // When no match was selected or it was edited.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100637 if (!ins_compl_used_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000638 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100639 // CTRL-L: Add one character from the current match to
640 // "compl_leader". Except when at the original match and
641 // there is nothing to add, CTRL-L works like CTRL-P then.
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000642 if (c == Ctrl_L
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100643 && (!ctrl_x_mode_line_or_eval()
644 || ins_compl_long_shown_match()))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000645 {
646 ins_compl_addfrommatch();
647 continue;
648 }
649
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100650 // A non-white character that fits in with the current
651 // completion: Add to "compl_leader".
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000652 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000653 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100654#if defined(FEAT_EVAL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100655 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100656 char_u *str = do_insert_char_pre(c);
657 char_u *p;
658
659 if (str != NULL)
660 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100661 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100662 ins_compl_addleader(PTR2CHAR(p));
663 vim_free(str);
664 }
665 else
666#endif
667 ins_compl_addleader(c);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000668 continue;
669 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000670
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100671 // Pressing CTRL-Y selects the current match. When
672 // ins_compl_enter_selects() is set the Enter key does the
673 // same.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100674 if ((c == Ctrl_Y || (ins_compl_enter_selects()
Bram Moolenaarcbd3bd62016-10-17 20:47:02 +0200675 && (c == CAR || c == K_KENTER || c == NL)))
676 && stop_arrow() == OK)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000677 {
678 ins_compl_delete();
Bram Moolenaar472e8592016-10-15 17:06:47 +0200679 ins_compl_insert(FALSE);
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000680 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000681 }
682 }
683
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100684 // Prepare for or stop CTRL-X mode. This doesn't do completion, but
685 // it does fix up the text when finishing completion.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100686 ins_compl_init_get_longest();
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000687 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000688 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100690 // CTRL-\ CTRL-N goes to Normal mode,
691 // CTRL-\ CTRL-G goes to mode selected with 'insertmode',
692 // CTRL-\ CTRL-O is like CTRL-O but without moving the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 if (c == Ctrl_BSL)
694 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100695 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +0000696 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 ++no_mapping;
698 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000699 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 --no_mapping;
701 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000702 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100704 // it's something else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 vungetc(c);
706 c = Ctrl_BSL;
707 }
708 else if (c == Ctrl_G && p_im)
709 continue;
710 else
711 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000712 if (c == Ctrl_O)
713 {
714 ins_ctrl_o();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100715 ins_at_eol = FALSE; // cursor keeps its column
Bram Moolenaar488c6512005-08-11 20:09:58 +0000716 nomove = TRUE;
717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 count = 0;
719 goto doESCkey;
720 }
721 }
722
723#ifdef FEAT_DIGRAPHS
724 c = do_digraph(c);
725#endif
726
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100727 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode_cmdline())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 if (c == Ctrl_V || c == Ctrl_Q)
730 {
731 ins_ctrl_v();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100732 c = Ctrl_V; // pretend CTRL-V is last typed character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 continue;
734 }
735
736#ifdef FEAT_CINDENT
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200737 if (cindent_on() && ctrl_x_mode_none())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100739 // A key name preceded by a bang means this key is not to be
740 // inserted. Skip ahead to the re-indenting below.
741 // A key name preceded by a star means that indenting has to be
742 // done before inserting the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 line_is_white = inindent(0);
744 if (in_cinkeys(c, '!', line_is_white))
745 goto force_cindent;
746 if (can_cindent && in_cinkeys(c, '*', line_is_white)
747 && stop_arrow() == OK)
748 do_c_expr_indent();
749 }
750#endif
751
752#ifdef FEAT_RIGHTLEFT
753 if (curwin->w_p_rl)
754 switch (c)
755 {
756 case K_LEFT: c = K_RIGHT; break;
757 case K_S_LEFT: c = K_S_RIGHT; break;
758 case K_C_LEFT: c = K_C_RIGHT; break;
759 case K_RIGHT: c = K_LEFT; break;
760 case K_S_RIGHT: c = K_S_LEFT; break;
761 case K_C_RIGHT: c = K_C_LEFT; break;
762 }
763#endif
764
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 /*
766 * If 'keymodel' contains "startsel", may start selection. If it
767 * does, a CTRL-O and c will be stuffed, we need to get these
768 * characters.
769 */
770 if (ins_start_select(c))
771 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772
773 /*
774 * The big switch to handle a character in insert mode.
775 */
776 switch (c)
777 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100778 case ESC: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 if (echeck_abbr(ESC + ABBR_OFF))
780 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100781 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100783 case Ctrl_C: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784#ifdef FEAT_CMDWIN
785 if (c == Ctrl_C && cmdwin_type != 0)
786 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100787 // Close the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 cmdwin_result = K_IGNORE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100789 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000790 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 goto doESCkey;
792 }
793#endif
Bram Moolenaar0e5979a2018-06-17 19:36:33 +0200794#ifdef FEAT_JOB_CHANNEL
795 if (c == Ctrl_C && bt_prompt(curbuf))
796 {
797 if (invoke_prompt_interrupt())
798 {
799 if (!bt_prompt(curbuf))
800 // buffer changed to a non-prompt buffer, get out of
801 // Insert mode
802 goto doESCkey;
803 break;
804 }
805 }
806#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807
808#ifdef UNIX
809do_intr:
810#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100811 // when 'insertmode' set, and not halfway a mapping, don't leave
812 // Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 if (goto_im())
814 {
815 if (got_int)
816 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100817 (void)vgetc(); // flush all buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 got_int = FALSE;
819 }
820 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200821 vim_beep(BO_IM);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 break;
823 }
824doESCkey:
825 /*
826 * This is the ONLY return from edit()!
827 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100828 // Always update o_lnum, so that a "CTRL-O ." that adds a line
829 // still puts the cursor back after the inserted text.
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000830 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 o_lnum = curwin->w_cursor.lnum;
832
Bram Moolenaar488c6512005-08-11 20:09:58 +0000833 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +0000834 {
Bram Moolenaar4dbc2622018-11-02 11:59:15 +0100835 // When CTRL-C was typed got_int will be set, with the result
836 // that the autocommands won't be executed. When mapped got_int
837 // is not set, but let's keep the behavior the same.
838 if (cmdchar != 'r' && cmdchar != 'v' && c != Ctrl_C)
Bram Moolenaar9fa95062018-08-08 22:08:32 +0200839 ins_apply_autocmds(EVENT_INSERTLEAVE);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +0000840 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 continue;
844
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100845 case Ctrl_Z: // suspend when 'insertmode' set
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000846 if (!p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100847 goto normalchar; // insert CTRL-Z as normal char
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +0100848 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar74a47162017-02-26 19:09:05 +0100849#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100850 ui_cursor_shape(); // may need to update cursor shape
Bram Moolenaar74a47162017-02-26 19:09:05 +0100851#endif
852 continue;
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000853
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100854 case Ctrl_O: // execute one command
Bram Moolenaare344bea2005-09-01 20:46:49 +0000855#ifdef FEAT_COMPL_FUNC
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100856 if (ctrl_x_mode_omni())
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000857 goto docomplete;
858#endif
859 if (echeck_abbr(Ctrl_O + ABBR_OFF))
860 break;
861 ins_ctrl_o();
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000862
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100863 // don't move the cursor left when 'virtualedit' has "onemore".
Gary Johnson53ba05b2021-07-26 22:19:10 +0200864 if (get_ve_flags() & VE_ONEMORE)
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000865 {
866 ins_at_eol = FALSE;
867 nomove = TRUE;
868 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000869 count = 0;
870 goto doESCkey;
871
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100872 case K_INS: // toggle insert/replace mode
Bram Moolenaar572cb562005-08-05 21:35:02 +0000873 case K_KINS:
874 ins_insert(replaceState);
875 break;
876
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100877 case K_SELECT: // end of Select mode mapping - ignore
Bram Moolenaar572cb562005-08-05 21:35:02 +0000878 break;
879
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100880 case K_HELP: // Help key works like <ESC> <Help>
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000881 case K_F1:
882 case K_XF1:
883 stuffcharReadbuff(K_HELP);
884 if (p_im)
885 need_start_insertmode = TRUE;
886 goto doESCkey;
887
888#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100889 case K_F21: // NetBeans command
890 ++no_mapping; // don't map the next key hits
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000891 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000892 --no_mapping;
893 netbeans_keycommand(i);
894 break;
895#endif
896
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100897 case K_ZERO: // Insert the previously inserted text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 case NUL:
899 case Ctrl_A:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100900 // For ^@ the trailing ESC will end the insert, unless there is an
901 // error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
903 && c != Ctrl_A && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100904 goto doESCkey; // quit insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 inserted_space = FALSE;
906 break;
907
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100908 case Ctrl_R: // insert the contents of a register
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 ins_reg();
910 auto_format(FALSE, TRUE);
911 inserted_space = FALSE;
912 break;
913
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100914 case Ctrl_G: // commands starting with CTRL-G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 ins_ctrl_g();
916 break;
917
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100918 case Ctrl_HAT: // switch input mode and/or langmap
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000919 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 break;
921
922#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100923 case Ctrl__: // switch between languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 if (!p_ari)
925 goto normalchar;
926 ins_ctrl_();
927 break;
928#endif
929
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100930 case Ctrl_D: // Make indent one shiftwidth smaller.
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200931#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100932 if (ctrl_x_mode_path_defines())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 goto docomplete;
934#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100935 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100937 case Ctrl_T: // Make indent one shiftwidth greater.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100938 if (c == Ctrl_T && ctrl_x_mode_thesaurus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000940 if (has_compl_option(FALSE))
941 goto docomplete;
942 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200944
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 ins_shift(c, lastc);
946 auto_format(FALSE, TRUE);
947 inserted_space = FALSE;
948 break;
949
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100950 case K_DEL: // delete character under the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 case K_KDEL:
952 ins_del();
953 auto_format(FALSE, TRUE);
954 break;
955
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100956 case K_BS: // delete character before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 case Ctrl_H:
958 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
959 auto_format(FALSE, TRUE);
960 break;
961
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100962 case Ctrl_W: // delete word before the cursor
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200963#ifdef FEAT_JOB_CHANNEL
964 if (bt_prompt(curbuf) && (mod_mask & MOD_MASK_SHIFT) == 0)
965 {
966 // In a prompt window CTRL-W is used for window commands.
967 // Use Shift-CTRL-W to delete a word.
968 stuffcharReadbuff(Ctrl_W);
Bram Moolenaar942b4542018-06-17 16:23:34 +0200969 restart_edit = 'A';
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200970 nomove = TRUE;
971 count = 0;
972 goto doESCkey;
973 }
974#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
976 auto_format(FALSE, TRUE);
977 break;
978
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100979 case Ctrl_U: // delete all inserted text in current line
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000980# ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100981 // CTRL-X CTRL-U completes with 'completefunc'.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100982 if (ctrl_x_mode_function())
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000983 goto docomplete;
984# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
986 auto_format(FALSE, TRUE);
987 inserted_space = FALSE;
988 break;
989
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100990 case K_LEFTMOUSE: // mouse keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 case K_LEFTMOUSE_NM:
992 case K_LEFTDRAG:
993 case K_LEFTRELEASE:
994 case K_LEFTRELEASE_NM:
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100995 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 case K_MIDDLEMOUSE:
997 case K_MIDDLEDRAG:
998 case K_MIDDLERELEASE:
999 case K_RIGHTMOUSE:
1000 case K_RIGHTDRAG:
1001 case K_RIGHTRELEASE:
1002 case K_X1MOUSE:
1003 case K_X1DRAG:
1004 case K_X1RELEASE:
1005 case K_X2MOUSE:
1006 case K_X2DRAG:
1007 case K_X2RELEASE:
1008 ins_mouse(c);
1009 break;
1010
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001011 case K_MOUSEDOWN: // Default action for scroll wheel up: scroll up
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001012 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 break;
1014
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001015 case K_MOUSEUP: // Default action for scroll wheel down: scroll down
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001016 ins_mousescroll(MSCR_UP);
1017 break;
1018
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001019 case K_MOUSELEFT: // Scroll wheel left
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001020 ins_mousescroll(MSCR_LEFT);
1021 break;
1022
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001023 case K_MOUSERIGHT: // Scroll wheel right
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001024 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001026
Bram Moolenaarec2da362017-01-21 20:04:22 +01001027 case K_PS:
1028 bracketed_paste(PASTE_INSERT, FALSE, NULL);
1029 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001030 // invoked from normal mode, bail out
Bram Moolenaarec2da362017-01-21 20:04:22 +01001031 goto doESCkey;
1032 break;
1033 case K_PE:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001034 // Got K_PE without K_PS, ignore.
Bram Moolenaarec2da362017-01-21 20:04:22 +01001035 break;
1036
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001037#ifdef FEAT_GUI_TABLINE
1038 case K_TABLINE:
1039 case K_TABMENU:
1040 ins_tabline(c);
1041 break;
1042#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001044 case K_IGNORE: // Something mapped to nothing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 break;
1046
Bram Moolenaar957cf672020-11-12 14:21:06 +01001047 case K_COMMAND: // <Cmd>command<CR>
1048 do_cmdline(NULL, getcmdkeycmd, NULL, 0);
Bram Moolenaare41decc2020-11-14 21:34:59 +01001049#ifdef FEAT_TERMINAL
1050 if (term_use_loop())
1051 // Started a terminal that gets the input, exit Insert mode.
1052 goto doESCkey;
1053#endif
Bram Moolenaar957cf672020-11-12 14:21:06 +01001054 break;
1055
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001056 case K_CURSORHOLD: // Didn't type something for a while.
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001057 ins_apply_autocmds(EVENT_CURSORHOLDI);
Bram Moolenaar754b5602006-02-09 23:53:20 +00001058 did_cursorhold = TRUE;
1059 break;
Bram Moolenaar754b5602006-02-09 23:53:20 +00001060
Bram Moolenaar4f974752019-02-17 17:44:42 +01001061#ifdef FEAT_GUI_MSWIN
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001062 // On MS-Windows ignore <M-F4>, we get it when closing the window
1063 // was cancelled.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001064 case K_F4:
1065 if (mod_mask != MOD_MASK_ALT)
1066 goto normalchar;
1067 break;
1068#endif
1069
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070#ifdef FEAT_GUI
1071 case K_VER_SCROLLBAR:
1072 ins_scroll();
1073 break;
1074
1075 case K_HOR_SCROLLBAR:
1076 ins_horscroll();
1077 break;
1078#endif
1079
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001080 case K_HOME: // <Home>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 case K_S_HOME:
1083 case K_C_HOME:
1084 ins_home(c);
1085 break;
1086
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001087 case K_END: // <End>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 case K_S_END:
1090 case K_C_END:
1091 ins_end(c);
1092 break;
1093
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001094 case K_LEFT: // <Left>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001095 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1096 ins_s_left();
1097 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001098 ins_left();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 break;
1100
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001101 case K_S_LEFT: // <S-Left>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 case K_C_LEFT:
1103 ins_s_left();
1104 break;
1105
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001106 case K_RIGHT: // <Right>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001107 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1108 ins_s_right();
1109 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001110 ins_right();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 break;
1112
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001113 case K_S_RIGHT: // <S-Right>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 case K_C_RIGHT:
1115 ins_s_right();
1116 break;
1117
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001118 case K_UP: // <Up>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001119 if (pum_visible())
1120 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001121 if (mod_mask & MOD_MASK_SHIFT)
1122 ins_pageup();
1123 else
1124 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 break;
1126
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001127 case K_S_UP: // <S-Up>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 case K_PAGEUP:
1129 case K_KPAGEUP:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001130 if (pum_visible())
1131 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 ins_pageup();
1133 break;
1134
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001135 case K_DOWN: // <Down>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001136 if (pum_visible())
1137 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001138 if (mod_mask & MOD_MASK_SHIFT)
1139 ins_pagedown();
1140 else
1141 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 break;
1143
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001144 case K_S_DOWN: // <S-Down>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 case K_PAGEDOWN:
1146 case K_KPAGEDOWN:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001147 if (pum_visible())
1148 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 ins_pagedown();
1150 break;
1151
1152#ifdef FEAT_DND
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001153 case K_DROP: // drag-n-drop event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 ins_drop();
1155 break;
1156#endif
1157
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001158 case K_S_TAB: // When not mapped, use like a normal TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 c = TAB;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001160 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001162 case TAB: // TAB or Complete patterns along path
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001163#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001164 if (ctrl_x_mode_path_patterns())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 goto docomplete;
1166#endif
1167 inserted_space = FALSE;
1168 if (ins_tab())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001169 goto normalchar; // insert TAB as a normal char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 auto_format(FALSE, TRUE);
1171 break;
1172
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001173 case K_KENTER: // <Enter>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 c = CAR;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001175 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 case CAR:
1177 case NL:
Bram Moolenaar4033c552017-09-16 20:54:51 +02001178#if defined(FEAT_QUICKFIX)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001179 // In a quickfix window a <CR> jumps to the error under the
1180 // cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 if (bt_quickfix(curbuf) && c == CAR)
1182 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001183 if (curwin->w_llist_ref == NULL) // quickfix window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001184 do_cmdline_cmd((char_u *)".cc");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001185 else // location list window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001186 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 break;
1188 }
1189#endif
1190#ifdef FEAT_CMDWIN
1191 if (cmdwin_type != 0)
1192 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001193 // Execute the command in the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 cmdwin_result = CAR;
1195 goto doESCkey;
1196 }
1197#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02001198#ifdef FEAT_JOB_CHANNEL
1199 if (bt_prompt(curbuf))
1200 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02001201 invoke_prompt_callback();
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02001202 if (!bt_prompt(curbuf))
1203 // buffer changed to a non-prompt buffer, get out of
1204 // Insert mode
Bram Moolenaarf2732452018-06-03 14:47:35 +02001205 goto doESCkey;
1206 break;
1207 }
1208#endif
Bram Moolenaar24a2d722018-04-24 19:36:43 +02001209 if (ins_eol(c) == FAIL && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001210 goto doESCkey; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 auto_format(FALSE, FALSE);
1212 inserted_space = FALSE;
1213 break;
1214
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001215 case Ctrl_K: // digraph or keyword completion
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001216 if (ctrl_x_mode_dictionary())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001218 if (has_compl_option(TRUE))
1219 goto docomplete;
1220 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001222#ifdef FEAT_DIGRAPHS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 c = ins_digraph();
1224 if (c == NUL)
1225 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001226#endif
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001227 goto normalchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001229 case Ctrl_X: // Enter CTRL-X mode
Bram Moolenaar572cb562005-08-05 21:35:02 +00001230 ins_ctrl_x();
1231 break;
1232
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001233 case Ctrl_RSB: // Tag name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001234 if (!ctrl_x_mode_tags())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 goto normalchar;
1236 goto docomplete;
1237
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001238 case Ctrl_F: // File name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001239 if (!ctrl_x_mode_files())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 goto normalchar;
1241 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001242
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001243 case 's': // Spelling completion after ^X
Bram Moolenaar488c6512005-08-11 20:09:58 +00001244 case Ctrl_S:
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001245 if (!ctrl_x_mode_spell())
Bram Moolenaar488c6512005-08-11 20:09:58 +00001246 goto normalchar;
1247 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001249 case Ctrl_L: // Whole line completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001250 if (!ctrl_x_mode_whole_line())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001252 // CTRL-L with 'insertmode' set: Leave Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 if (p_im)
1254 {
1255 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1256 break;
1257 goto doESCkey;
1258 }
1259 goto normalchar;
1260 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001261 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001263 case Ctrl_P: // Do previous/next pattern completion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 case Ctrl_N:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001265 // if 'complete' is empty then plain ^P is no longer special,
1266 // but it is under other ^X modes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 if (*curbuf->b_p_cpt == NUL
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001268 && (ctrl_x_mode_normal() || ctrl_x_mode_whole_line())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001269 && !(compl_cont_status & CONT_LOCAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 goto normalchar;
1271
1272docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001273 compl_busy = TRUE;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001274#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001275 disable_fold_update++; // don't redraw folds here
Bram Moolenaara6c07602017-03-05 21:18:27 +01001276#endif
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01001277 if (ins_complete(c, TRUE) == FAIL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001278 compl_cont_status = 0;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001279#ifdef FEAT_FOLDING
Bram Moolenaar429fcfb2016-04-14 16:22:04 +02001280 disable_fold_update--;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001281#endif
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001282 compl_busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001285 case Ctrl_Y: // copy from previous line or scroll down
1286 case Ctrl_E: // copy from next line or scroll up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001287 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 break;
1289
1290 default:
1291#ifdef UNIX
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001292 if (c == intr_char) // special interrupt char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 goto do_intr;
1294#endif
1295
Bram Moolenaare659c952011-05-19 17:25:41 +02001296normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001298 * Insert a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001300#if defined(FEAT_EVAL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001301 if (!p_paste)
1302 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001303 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001304 char_u *str = do_insert_char_pre(c);
1305 char_u *p;
1306
1307 if (str != NULL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001308 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001309 if (*str != NUL && stop_arrow() != FAIL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001310 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001311 // Insert the new value of v:char literally.
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001312 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaare659c952011-05-19 17:25:41 +02001313 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001314 c = PTR2CHAR(p);
1315 if (c == CAR || c == K_KENTER || c == NL)
1316 ins_eol(c);
1317 else
1318 ins_char(c);
Bram Moolenaare659c952011-05-19 17:25:41 +02001319 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001320 AppendToRedobuffLit(str, -1);
Bram Moolenaare659c952011-05-19 17:25:41 +02001321 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001322 vim_free(str);
1323 c = NUL;
Bram Moolenaare659c952011-05-19 17:25:41 +02001324 }
1325
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001326 // If the new value is already inserted or an empty string
1327 // then don't insert any character.
Bram Moolenaare659c952011-05-19 17:25:41 +02001328 if (c == NUL)
1329 break;
1330 }
1331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332#ifdef FEAT_SMARTINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001333 // Try to perform smart-indenting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 ins_try_si(c);
1335#endif
1336
1337 if (c == ' ')
1338 {
1339 inserted_space = TRUE;
1340#ifdef FEAT_CINDENT
1341 if (inindent(0))
1342 can_cindent = FALSE;
1343#endif
1344 if (Insstart_blank_vcol == MAXCOL
1345 && curwin->w_cursor.lnum == Insstart.lnum)
1346 Insstart_blank_vcol = get_nolist_virtcol();
1347 }
1348
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001349 // Insert a normal character and check for abbreviations on a
1350 // special character. Let CTRL-] expand abbreviations without
1351 // inserting it.
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02001352 if (vim_iswordc(c) || (!echeck_abbr(
Bram Moolenaar13505972019-01-24 15:04:48 +01001353 // Add ABBR_OFF for characters above 0x100, this is
1354 // what check_abbr() expects.
1355 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
1356 && c != Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 {
1358 insert_special(c, FALSE, FALSE);
1359#ifdef FEAT_RIGHTLEFT
1360 revins_legal++;
1361 revins_chars++;
1362#endif
1363 }
1364
1365 auto_format(FALSE, TRUE);
1366
1367#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001368 // When inserting a character the cursor line must never be in a
1369 // closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 foldOpenCursor();
1371#endif
1372 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001373 } // end of switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001375 // If typed something may trigger CursorHoldI again.
Bram Moolenaar245c4102016-04-20 17:37:41 +02001376 if (c != K_CURSORHOLD
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001377#ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001378 // but not in CTRL-X mode, a script can't restore the state
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001379 && ctrl_x_mode_normal()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001380#endif
Bram Moolenaar245c4102016-04-20 17:37:41 +02001381 )
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001382 did_cursorhold = FALSE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001383
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001384 // If the cursor was moved we didn't just insert a space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 if (arrow_used)
1386 inserted_space = FALSE;
1387
1388#ifdef FEAT_CINDENT
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001389 if (can_cindent && cindent_on() && ctrl_x_mode_normal())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 {
1391force_cindent:
1392 /*
1393 * Indent now if a key was typed that is in 'cinkeys'.
1394 */
1395 if (in_cinkeys(c, ' ', line_is_white))
1396 {
1397 if (stop_arrow() == OK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001398 // re-indent the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 do_c_expr_indent();
1400 }
1401 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001402#endif // FEAT_CINDENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001404 } // for (;;)
1405 // NOTREACHED
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406}
1407
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001408 int
1409ins_need_undo_get(void)
1410{
1411 return ins_need_undo;
1412}
1413
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414/*
1415 * Redraw for Insert mode.
1416 * This is postponed until getting the next character to make '$' in the 'cpo'
1417 * option work correctly.
1418 * Only redraw when there are no characters available. This speeds up
1419 * inserting sequences of characters (e.g., for CTRL-R).
1420 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001421 void
Bram Moolenaar3397f742019-06-02 18:40:06 +02001422ins_redraw(int ready) // not busy with something
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001424#ifdef FEAT_CONCEAL
1425 linenr_T conceal_old_cursor_line = 0;
1426 linenr_T conceal_new_cursor_line = 0;
1427 int conceal_update_lines = FALSE;
1428#endif
1429
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001430 if (char_avail())
1431 return;
1432
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001433 // Trigger CursorMoved if the cursor moved. Not when the popup menu is
1434 // visible, the command might delete it.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001435 if (ready && (has_cursormovedI()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001436# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001437 || popup_visible
1438# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001439# if defined(FEAT_CONCEAL)
1440 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001441# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001442 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001443 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001444 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001445 {
1446# ifdef FEAT_SYN_HL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001447 // Need to update the screen first, to make sure syntax
1448 // highlighting is correct after making a change (e.g., inserting
1449 // a "(". The autocommand may also require a redraw, so it's done
1450 // again below, unfortunately.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001451 if (syntax_present(curwin) && must_redraw)
1452 update_screen(0);
1453# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001454 if (has_cursormovedI())
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001455 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001456 // Make sure curswant is correct, an autocommand may call
1457 // getcurpos().
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001458 update_curswant();
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001459 ins_apply_autocmds(EVENT_CURSORMOVEDI);
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001460 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001461#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001462 if (popup_visible)
1463 popup_check_cursor_pos();
1464#endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001465# ifdef FEAT_CONCEAL
1466 if (curwin->w_p_cole > 0)
1467 {
1468 conceal_old_cursor_line = last_cursormoved.lnum;
1469 conceal_new_cursor_line = curwin->w_cursor.lnum;
1470 conceal_update_lines = TRUE;
1471 }
1472# endif
1473 last_cursormoved = curwin->w_cursor;
1474 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001475
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001476 // Trigger TextChangedI if b_changedtick differs.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001477 if (ready && has_textchangedI()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001478 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001479 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001480 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001481 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001482 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar91d2e782018-08-07 19:05:01 +02001483
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001484 // save and restore curwin and curbuf, in case the autocmd changes them
1485 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001486 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001487 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001488 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001489 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1490 u_save(curwin->w_cursor.lnum,
1491 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 }
Bram Moolenaar5a093432018-02-10 18:15:19 +01001493
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001494 // Trigger TextChangedP if b_changedtick differs. When the popupmenu closes
1495 // TextChangedI will need to trigger for backwards compatibility, thus use
1496 // different b_last_changedtick* variables.
Bram Moolenaar5a093432018-02-10 18:15:19 +01001497 if (ready && has_textchangedP()
1498 && curbuf->b_last_changedtick_pum != CHANGEDTICK(curbuf)
1499 && pum_visible())
1500 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001501 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001502 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001503
1504 // save and restore curwin and curbuf, in case the autocmd changes them
1505 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001506 apply_autocmds(EVENT_TEXTCHANGEDP, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001507 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001508 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001509 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1510 u_save(curwin->w_cursor.lnum,
1511 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar5a093432018-02-10 18:15:19 +01001512 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001513
Bram Moolenaar8aeec402019-09-15 23:02:04 +02001514 // Trigger SafeState if nothing is pending.
1515 may_trigger_safestate(ready
1516 && !ins_compl_active()
1517 && !pum_visible());
1518
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001519#if defined(FEAT_CONCEAL)
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001520 if ((conceal_update_lines
1521 && (conceal_old_cursor_line != conceal_new_cursor_line
1522 || conceal_cursor_line(curwin)))
1523 || need_cursor_line_redraw)
1524 {
1525 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001526 redrawWinline(curwin, conceal_old_cursor_line);
1527 redrawWinline(curwin, conceal_new_cursor_line == 0
1528 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001529 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001530 need_cursor_line_redraw = FALSE;
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001531 }
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001532#endif
1533 if (must_redraw)
1534 update_screen(0);
1535 else if (clear_cmdline || redraw_cmdline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001536 showmode(); // clear cmdline and show mode
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001537 showruler(FALSE);
1538 setcursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001539 emsg_on_display = FALSE; // may remove error message now
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540}
1541
1542/*
1543 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1544 */
1545 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001546ins_ctrl_v(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547{
1548 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001549 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001551 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00001552 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553
1554 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001555 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001557 did_putchar = TRUE;
1558 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001559 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560
1561#ifdef FEAT_CMDL_INFO
1562 add_to_showcmd_c(Ctrl_V);
1563#endif
1564
Bram Moolenaar0684e362020-12-03 19:54:42 +01001565 // Do not change any modifyOtherKeys ESC sequence to a normal key for
1566 // CTRL-SHIFT-V.
1567 c = get_literal(mod_mask & MOD_MASK_SHIFT);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001568 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001569 // when the line fits in 'columns' the '^' is at the start of the next
1570 // line and will not removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001571 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572#ifdef FEAT_CMDL_INFO
1573 clear_showcmd();
1574#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001575
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 insert_special(c, FALSE, TRUE);
1577#ifdef FEAT_RIGHTLEFT
1578 revins_chars++;
1579 revins_legal++;
1580#endif
1581}
1582
1583/*
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001584 * After getting an ESC or CSI for a literal key: If the typeahead buffer
1585 * contains a modifyOtherKeys sequence then decode it and return the result.
1586 * Otherwise return "c".
1587 * Note that this doesn't wait for characters, they must be in the typeahead
1588 * buffer already.
1589 */
1590 int
1591decodeModifyOtherKeys(int c)
1592{
1593 char_u *p = typebuf.tb_buf + typebuf.tb_off;
1594 int idx;
1595 int form = 0;
1596 int argidx = 0;
1597 int arg[2] = {0, 0};
1598
1599 // Recognize:
1600 // form 0: {lead}{key};{modifier}u
1601 // form 1: {lead}27;{modifier};{key}~
Bram Moolenaar82aa6e02021-01-17 22:04:02 +01001602 if (typebuf.tb_len >= 4 && (c == CSI || (c == ESC && *p == '[')))
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001603 {
1604 idx = (*p == '[');
1605 if (p[idx] == '2' && p[idx + 1] == '7' && p[idx + 2] == ';')
1606 {
1607 form = 1;
1608 idx += 3;
1609 }
1610 while (idx < typebuf.tb_len && argidx < 2)
1611 {
1612 if (p[idx] == ';')
1613 ++argidx;
1614 else if (VIM_ISDIGIT(p[idx]))
1615 arg[argidx] = arg[argidx] * 10 + (p[idx] - '0');
1616 else
1617 break;
1618 ++idx;
1619 }
1620 if (idx < typebuf.tb_len
1621 && p[idx] == (form == 1 ? '~' : 'u')
1622 && argidx == 1)
1623 {
1624 // Match, consume the code.
1625 typebuf.tb_off += idx + 1;
1626 typebuf.tb_len -= idx + 1;
Bram Moolenaare49b4bb2020-03-11 13:01:40 +01001627#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
1628 if (typebuf.tb_len == 0)
1629 typebuf_was_filled = FALSE;
1630#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001631
1632 mod_mask = decode_modifiers(arg[!form]);
Bram Moolenaar975a8802020-06-06 22:36:24 +02001633 c = merge_modifyOtherKeys(arg[form], &mod_mask);
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001634 }
1635 }
1636
1637 return c;
1638}
1639
1640/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 * Put a character directly onto the screen. It's not stored in a buffer.
1642 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1643 */
1644static int pc_status;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001645#define PC_STATUS_UNSET 0 // pc_bytes was not set
1646#define PC_STATUS_RIGHT 1 // right halve of double-wide char
1647#define PC_STATUS_LEFT 2 // left halve of double-wide char
1648#define PC_STATUS_SET 3 // pc_bytes was filled
1649static char_u pc_bytes[MB_MAXBYTES + 1]; // saved bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650static int pc_attr;
1651static int pc_row;
1652static int pc_col;
1653
1654 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001655edit_putchar(int c, int highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656{
1657 int attr;
1658
1659 if (ScreenLines != NULL)
1660 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001661 update_topline(); // just in case w_topline isn't valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 validate_cursor();
1663 if (highlight)
Bram Moolenaar8820b482017-03-16 17:23:31 +01001664 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 else
1666 attr = 0;
1667 pc_row = W_WINROW(curwin) + curwin->w_wrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02001668 pc_col = curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 pc_status = PC_STATUS_UNSET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670#ifdef FEAT_RIGHTLEFT
1671 if (curwin->w_p_rl)
1672 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001673 pc_col += curwin->w_width - 1 - curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 if (has_mbyte)
1675 {
1676 int fix_col = mb_fix_col(pc_col, pc_row);
1677
1678 if (fix_col != pc_col)
1679 {
1680 screen_putchar(' ', pc_row, fix_col, attr);
1681 --curwin->w_wcol;
1682 pc_status = PC_STATUS_RIGHT;
1683 }
1684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 }
1686 else
1687#endif
1688 {
1689 pc_col += curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 if (mb_lefthalve(pc_row, pc_col))
1691 pc_status = PC_STATUS_LEFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 }
1693
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001694 // save the character to be able to put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 if (pc_status == PC_STATUS_UNSET)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 {
1697 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1698 pc_status = PC_STATUS_SET;
1699 }
1700 screen_putchar(c, pc_row, pc_col, attr);
1701 }
1702}
1703
Bram Moolenaarf2732452018-06-03 14:47:35 +02001704/*
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001705 * Set the insert start position for when using a prompt buffer.
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001706 */
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001707 void
1708set_insstart(linenr_T lnum, int col)
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001709{
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001710 Insstart.lnum = lnum;
1711 Insstart.col = col;
1712 Insstart_orig = Insstart;
1713 Insstart_textlen = Insstart.col;
1714 Insstart_blank_vcol = MAXCOL;
1715 arrow_used = FALSE;
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001716}
1717
1718/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 * Undo the previous edit_putchar().
1720 */
1721 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001722edit_unputchar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723{
1724 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1725 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 if (pc_status == PC_STATUS_RIGHT)
1727 ++curwin->w_wcol;
1728 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001729 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1732 }
1733}
1734
1735/*
1736 * Called when p_dollar is set: display a '$' at the end of the changed text
1737 * Only works when cursor is in the line that changes.
1738 */
1739 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001740display_dollar(colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741{
1742 colnr_T save_col;
1743
1744 if (!redrawing())
1745 return;
1746
1747 cursor_off();
1748 save_col = curwin->w_cursor.col;
1749 curwin->w_cursor.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 if (has_mbyte)
1751 {
1752 char_u *p;
1753
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001754 // If on the last byte of a multi-byte move to the first byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 p = ml_get_curline();
1756 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1757 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001758 curs_columns(FALSE); // recompute w_wrow and w_wcol
Bram Moolenaar02631462017-09-22 15:20:32 +02001759 if (curwin->w_wcol < curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 {
1761 edit_putchar('$', FALSE);
1762 dollar_vcol = curwin->w_virtcol;
1763 }
1764 curwin->w_cursor.col = save_col;
1765}
1766
1767/*
1768 * Call this function before moving the cursor from the normal insert position
1769 * in insert mode.
1770 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001771 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001772undisplay_dollar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001774 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001776 dollar_vcol = -1;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001777 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 }
1779}
1780
1781/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 * Truncate the space at the end of a line. This is to be used only in an
1783 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
1784 * modes.
1785 */
1786 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001787truncate_spaces(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
1789 int i;
1790
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001791 // find start of trailing white space
Bram Moolenaar1c465442017-03-12 20:10:05 +01001792 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 {
1794 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001795 replace_join(0); // remove a NUL from the replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 }
1797 line[i + 1] = NUL;
1798}
1799
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800/*
1801 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
1802 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001803 * Will attempt not to go before "col" even when there is a composing
1804 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 */
1806 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001807backspace_until_column(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808{
1809 while ((int)curwin->w_cursor.col > col)
1810 {
1811 curwin->w_cursor.col--;
1812 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001813 replace_do_bs(col);
1814 else if (!del_char_after_col(col))
1815 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 }
1817}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001819/*
1820 * Like del_char(), but make sure not to go before column "limit_col".
1821 * Only matters when there are composing characters.
1822 * Return TRUE when something was deleted.
1823 */
1824 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001825del_char_after_col(int limit_col UNUSED)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001826{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001827 if (enc_utf8 && limit_col >= 0)
1828 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001829 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001830
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001831 // Make sure the cursor is at the start of a character, but
1832 // skip forward again when going too far back because of a
1833 // composing character.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001834 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00001835 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001836 {
1837 int l = utf_ptr2len(ml_get_cursor());
1838
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001839 if (l == 0) // end of line
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001840 break;
1841 curwin->w_cursor.col += l;
1842 }
1843 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
1844 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001845 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001846 }
1847 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001848 (void)del_char(FALSE);
1849 return TRUE;
1850}
1851
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852/*
1853 * Next character is interpreted literally.
1854 * A one, two or three digit decimal number is interpreted as its byte value.
1855 * If one or two digits are entered, the next character is given to vungetc().
1856 * For Unicode a character > 255 may be returned.
Bram Moolenaar0684e362020-12-03 19:54:42 +01001857 * If "noReduceKeys" is TRUE do not change any modifyOtherKeys ESC sequence
1858 * into a normal key, return ESC.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 */
1860 int
Bram Moolenaar0684e362020-12-03 19:54:42 +01001861get_literal(int noReduceKeys)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862{
1863 int cc;
1864 int nc;
1865 int i;
1866 int hex = FALSE;
1867 int octal = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 int unicode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869
1870 if (got_int)
1871 return Ctrl_C;
1872
1873#ifdef FEAT_GUI
1874 /*
1875 * In GUI there is no point inserting the internal code for a special key.
1876 * It is more useful to insert the string "<KEY>" instead. This would
1877 * probably be useful in a text window too, but it would not be
1878 * vi-compatible (maybe there should be an option for it?) -- webb
1879 */
1880 if (gui.in_use)
1881 ++allow_keys;
1882#endif
1883#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001884 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001886 ++no_mapping; // don't map the next key hits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 cc = 0;
1888 i = 0;
1889 for (;;)
1890 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001891 nc = plain_vgetc();
Bram Moolenaar0684e362020-12-03 19:54:42 +01001892 if ((nc == ESC || nc == CSI) && !noReduceKeys)
1893 nc = decodeModifyOtherKeys(nc);
1894
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895#ifdef FEAT_CMDL_INFO
Bram Moolenaar13505972019-01-24 15:04:48 +01001896 if (!(State & CMDLINE) && MB_BYTE2LEN_CHECK(nc) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 add_to_showcmd(nc);
1898#endif
1899 if (nc == 'x' || nc == 'X')
1900 hex = TRUE;
1901 else if (nc == 'o' || nc == 'O')
1902 octal = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 else if (nc == 'u' || nc == 'U')
1904 unicode = nc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 else
1906 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001907 if (hex || unicode != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 {
1909 if (!vim_isxdigit(nc))
1910 break;
1911 cc = cc * 16 + hex2nr(nc);
1912 }
1913 else if (octal)
1914 {
1915 if (nc < '0' || nc > '7')
1916 break;
1917 cc = cc * 8 + nc - '0';
1918 }
1919 else
1920 {
1921 if (!VIM_ISDIGIT(nc))
1922 break;
1923 cc = cc * 10 + nc - '0';
1924 }
1925
1926 ++i;
1927 }
1928
Bram Moolenaar13505972019-01-24 15:04:48 +01001929 if (cc > 255 && unicode == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001930 cc = 255; // limit range to 0-255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 nc = 0;
1932
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001933 if (hex) // hex: up to two chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 {
1935 if (i >= 2)
1936 break;
1937 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001938 else if (unicode) // Unicode: up to four or eight chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 {
1940 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
1941 break;
1942 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001943 else if (i >= 3) // decimal or octal: up to three chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 break;
1945 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001946 if (i == 0) // no number entered
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001948 if (nc == K_ZERO) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 {
1950 cc = '\n';
1951 nc = 0;
1952 }
1953 else
1954 {
1955 cc = nc;
1956 nc = 0;
1957 }
1958 }
1959
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001960 if (cc == 0) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00001962 if (enc_dbcs && (cc & 0xff) == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001963 cc = '?'; // don't accept an illegal DBCS char, the NUL in the
1964 // second byte will cause trouble!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965
1966 --no_mapping;
1967#ifdef FEAT_GUI
1968 if (gui.in_use)
1969 --allow_keys;
1970#endif
1971 if (nc)
1972 vungetc(nc);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001973 got_int = FALSE; // CTRL-C typed after CTRL-V is not an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 return cc;
1975}
1976
1977/*
1978 * Insert character, taking care of special keys and mod_mask
1979 */
1980 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001981insert_special(
1982 int c,
1983 int allow_modmask,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001984 int ctrlv) // c was typed after CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985{
1986 char_u *p;
1987 int len;
1988
1989 /*
1990 * Special function key, translate into "<Key>". Up to the last '>' is
1991 * inserted with ins_str(), so as not to replace characters in replace
1992 * mode.
1993 * Only use mod_mask for special keys, to avoid things like <S-Space>,
1994 * unless 'allow_modmask' is TRUE.
1995 */
Bram Moolenaard0573012017-10-28 21:11:06 +02001996#ifdef MACOS_X
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001997 // Command-key never produces a normal key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 if (mod_mask & MOD_MASK_CMD)
1999 allow_modmask = TRUE;
2000#endif
2001 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
2002 {
2003 p = get_special_key_name(c, mod_mask);
2004 len = (int)STRLEN(p);
2005 c = p[len - 1];
2006 if (len > 2)
2007 {
2008 if (stop_arrow() == FAIL)
2009 return;
2010 p[len - 1] = NUL;
2011 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00002012 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 ctrlv = FALSE;
2014 }
2015 }
2016 if (stop_arrow() == OK)
2017 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
2018}
2019
2020/*
2021 * Special characters in this context are those that need processing other
2022 * than the simple insertion that can be performed here. This includes ESC
2023 * which terminates the insert, and CR/NL which need special processing to
2024 * open up a new line. This routine tries to optimize insertions performed by
2025 * the "redo", "undo" or "put" commands, so it needs to know when it should
2026 * stop and defer processing to the "normal" mechanism.
2027 * '0' and '^' are special, because they can be followed by CTRL-D.
2028 */
2029#ifdef EBCDIC
2030# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
2031#else
2032# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
2033#endif
2034
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02002035/*
2036 * "flags": INSCHAR_FORMAT - force formatting
2037 * INSCHAR_CTRLV - char typed just after CTRL-V
2038 * INSCHAR_NO_FEX - don't use 'formatexpr'
2039 *
2040 * NOTE: passes the flags value straight through to internal_format() which,
2041 * beside INSCHAR_FORMAT (above), is also looking for these:
2042 * INSCHAR_DO_COM - format comments
2043 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
2044 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002046insertchar(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002047 int c, // character to insert or NUL
2048 int flags, // INSCHAR_FORMAT, etc.
2049 int second_indent) // indent for second line if >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 int textwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 int fo_ins_blank;
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002054 int force_format = flags & INSCHAR_FORMAT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002056 textwidth = comp_textwidth(force_format);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058
2059 /*
2060 * Try to break the line in two or more pieces when:
2061 * - Always do this if we have been called to do formatting only.
2062 * - Always do this when 'formatoptions' has the 'a' flag and the line
2063 * ends in white space.
2064 * - Otherwise:
2065 * - Don't do this if inserting a blank
2066 * - Don't do this if an existing character is being replaced, unless
2067 * we're in VREPLACE mode.
2068 * - Do this if the cursor is not on the line where insert started
2069 * or - 'formatoptions' doesn't have 'l' or the line was not too long
2070 * before the insert.
2071 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
2072 * before 'textwidth'
2073 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002074 if (textwidth > 0
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002075 && (force_format
Bram Moolenaar1c465442017-03-12 20:10:05 +01002076 || (!VIM_ISWHITE(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 && !((State & REPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 && !(State & VREPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 && *ml_get_cursor() != NUL)
2080 && (curwin->w_cursor.lnum != Insstart.lnum
2081 || ((!has_format_option(FO_INS_LONG)
2082 || Insstart_textlen <= (colnr_T)textwidth)
2083 && (!fo_ins_blank
2084 || Insstart_blank_vcol <= (colnr_T)textwidth
2085 ))))))
2086 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002087 // Format with 'formatexpr' when it's set. Use internal formatting
2088 // when 'formatexpr' isn't set or it returns non-zero.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002089#if defined(FEAT_EVAL)
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002090 int do_internal = TRUE;
2091 colnr_T virtcol = get_nolist_virtcol()
2092 + char2cells(c != NUL ? c : gchar_cursor());
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002093
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002094 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0
2095 && (force_format || virtcol > (colnr_T)textwidth))
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002096 {
2097 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002098 // It may be required to save for undo again, e.g. when setline()
2099 // was called.
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002100 ins_need_undo = TRUE;
2101 }
2102 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00002104 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002106
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002107 if (c == NUL) // only formatting was wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 return;
2109
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002110 // Check whether this character should end a comment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 if (did_ai && (int)c == end_comment_pending)
2112 {
2113 char_u *line;
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002114 char_u lead_end[COM_MAX_LEN]; // end-comment string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 int middle_len, end_len;
2116 int i;
2117
2118 /*
2119 * Need to remove existing (middle) comment leader and insert end
2120 * comment leader. First, check what comment leader we can find.
2121 */
Bram Moolenaar81340392012-06-06 16:12:59 +02002122 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002123 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) // Just checking
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002125 // Skip middle-comment string
2126 while (*p && p[-1] != ':') // find end of middle flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 ++p;
2128 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002129 // Don't count trailing white space for middle_len
Bram Moolenaar1c465442017-03-12 20:10:05 +01002130 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 --middle_len;
2132
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002133 // Find the end-comment string
2134 while (*p && p[-1] != ':') // find end of end flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 ++p;
2136 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
2137
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002138 // Skip white space before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 i = curwin->w_cursor.col;
Bram Moolenaar1c465442017-03-12 20:10:05 +01002140 while (--i >= 0 && VIM_ISWHITE(line[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 ;
2142 i++;
2143
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002144 // Skip to before the middle leader
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 i -= middle_len;
2146
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002147 // Check some expected things before we go on
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
2149 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002150 // Backspace over all the stuff we want to replace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 backspace_until_column(i);
2152
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002153 // Insert the end-comment string, except for the last
2154 // character, which will get inserted as normal later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 ins_bytes_len(lead_end, end_len - 1);
2156 }
2157 }
2158 }
2159 end_comment_pending = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160
2161 did_ai = FALSE;
2162#ifdef FEAT_SMARTINDENT
2163 did_si = FALSE;
2164 can_si = FALSE;
2165 can_si_back = FALSE;
2166#endif
2167
2168 /*
2169 * If there's any pending input, grab up to INPUT_BUFLEN at once.
2170 * This speeds up normal text input considerably.
2171 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
2172 * need to re-indent at a ':', or any other character (but not what
2173 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01002174 * Don't do this when there an InsertCharPre autocommand is defined,
2175 * because we need to fire the event for every character.
Bram Moolenaar39de9522018-05-08 22:48:00 +02002176 * Do the check for InsertCharPre before the call to vpeekc() because the
2177 * InsertCharPre autocommand could change the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 */
2179#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002180 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181#endif
2182
2183 if ( !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 && (!has_mbyte || (*mb_char2len)(c) == 1)
Bram Moolenaar39de9522018-05-08 22:48:00 +02002185 && !has_insertcharpre()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 && vpeekc() != NUL
2187 && !(State & REPLACE_FLAG)
2188#ifdef FEAT_CINDENT
2189 && !cindent_on()
2190#endif
2191#ifdef FEAT_RIGHTLEFT
2192 && !p_ri
2193#endif
Bram Moolenaar39de9522018-05-08 22:48:00 +02002194 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 {
2196#define INPUT_BUFLEN 100
2197 char_u buf[INPUT_BUFLEN + 1];
2198 int i;
2199 colnr_T virtcol = 0;
2200
2201 buf[0] = c;
2202 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002203 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 virtcol = get_nolist_virtcol();
2205 /*
2206 * Stop the string when:
2207 * - no more chars available
2208 * - finding a special character (command key)
2209 * - buffer is full
2210 * - running into the 'textwidth' boundary
2211 * - need to check for abbreviation: A non-word char after a word-char
2212 */
2213 while ( (c = vpeekc()) != NUL
2214 && !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 && i < INPUT_BUFLEN
2217 && (textwidth == 0
2218 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
2219 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
2220 {
2221#ifdef FEAT_RIGHTLEFT
2222 c = vgetc();
2223 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002224 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 buf[i++] = c;
2226#else
2227 buf[i++] = vgetc();
2228#endif
2229 }
2230
2231#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002232 do_digraph(-1); // clear digraphs
2233 do_digraph(buf[i-1]); // may be the start of a digraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234#endif
2235 buf[i] = NUL;
2236 ins_str(buf);
2237 if (flags & INSCHAR_CTRLV)
2238 {
2239 redo_literal(*buf);
2240 i = 1;
2241 }
2242 else
2243 i = 0;
2244 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002245 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 }
2247 else
2248 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002249 int cc;
2250
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
2252 {
2253 char_u buf[MB_MAXBYTES + 1];
2254
2255 (*mb_char2bytes)(c, buf);
2256 buf[cc] = NUL;
2257 ins_char_bytes(buf, cc);
2258 AppendCharToRedobuff(c);
2259 }
2260 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 {
2262 ins_char(c);
2263 if (flags & INSCHAR_CTRLV)
2264 redo_literal(c);
2265 else
2266 AppendCharToRedobuff(c);
2267 }
2268 }
2269}
2270
2271/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 * Put a character in the redo buffer, for when just after a CTRL-V.
2273 */
2274 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002275redo_literal(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276{
2277 char_u buf[10];
2278
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002279 // Only digits need special treatment. Translate them into a string of
2280 // three digits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 if (VIM_ISDIGIT(c))
2282 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002283 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 AppendToRedobuff(buf);
2285 }
2286 else
2287 AppendCharToRedobuff(c);
2288}
2289
2290/*
2291 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002292 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01002294 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002295start_arrow(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002296 pos_T *end_insert_pos) // can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297{
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002298 start_arrow_common(end_insert_pos, TRUE);
2299}
2300
2301/*
2302 * Like start_arrow() but with end_change argument.
2303 * Will prepare for redo of CTRL-G U if "end_change" is FALSE.
2304 */
2305 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002306start_arrow_with_change(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002307 pos_T *end_insert_pos, // can be NULL
2308 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002309{
2310 start_arrow_common(end_insert_pos, end_change);
2311 if (!end_change)
2312 {
2313 AppendCharToRedobuff(Ctrl_G);
2314 AppendCharToRedobuff('U');
2315 }
2316}
2317
2318 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002319start_arrow_common(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002320 pos_T *end_insert_pos, // can be NULL
2321 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002322{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002323 if (!arrow_used && end_change) // something has been inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 {
2325 AppendToRedobuff(ESC_STR);
Bram Moolenaarf332a652013-11-04 04:20:33 +01002326 stop_insert(end_insert_pos, FALSE, FALSE);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002327 arrow_used = TRUE; // this means we stopped the current insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002329#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002330 check_spell_redraw();
2331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332}
2333
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002334#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002335/*
2336 * If we skipped highlighting word at cursor, do it now.
2337 * It may be skipped again, thus reset spell_redraw_lnum first.
2338 */
2339 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002340check_spell_redraw(void)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002341{
2342 if (spell_redraw_lnum != 0)
2343 {
2344 linenr_T lnum = spell_redraw_lnum;
2345
2346 spell_redraw_lnum = 0;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01002347 redrawWinline(curwin, lnum);
Bram Moolenaar217ad922005-03-20 22:37:15 +00002348 }
2349}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002350
Bram Moolenaar217ad922005-03-20 22:37:15 +00002351#endif
2352
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353/*
2354 * stop_arrow() is called before a change is made in insert mode.
2355 * If an arrow key has been used, start a new insertion.
2356 * Returns FAIL if undo is impossible, shouldn't insert then.
2357 */
2358 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002359stop_arrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360{
2361 if (arrow_used)
2362 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002363 Insstart = curwin->w_cursor; // new insertion starts here
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002364 if (Insstart.col > Insstart_orig.col && !ins_need_undo)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002365 // Don't update the original insert position when moved to the
2366 // right, except when nothing was inserted yet.
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002367 update_Insstart_orig = FALSE;
2368 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
2369
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 if (u_save_cursor() == OK)
2371 {
2372 arrow_used = FALSE;
2373 ins_need_undo = FALSE;
2374 }
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002375
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 ai_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 if (State & VREPLACE_FLAG)
2378 {
2379 orig_line_count = curbuf->b_ml.ml_line_count;
2380 vr_lines_changed = 1;
2381 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 ResetRedobuff();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002383 AppendToRedobuff((char_u *)"1i"); // pretend we start an insertion
Bram Moolenaara9b1e742005-12-19 22:14:58 +00002384 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 }
2386 else if (ins_need_undo)
2387 {
2388 if (u_save_cursor() == OK)
2389 ins_need_undo = FALSE;
2390 }
2391
2392#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002393 // Always open fold at the cursor line when inserting something.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 foldOpenCursor();
2395#endif
2396
2397 return (arrow_used || ins_need_undo ? FAIL : OK);
2398}
2399
2400/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002401 * Do a few things to stop inserting.
2402 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
2403 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 */
2405 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002406stop_insert(
2407 pos_T *end_insert_pos,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002408 int esc, // called by ins_esc()
2409 int nomove) // <c-\><c-o>, don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002411 int cc;
2412 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413
2414 stop_redo_ins();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002415 replace_flush(); // abandon replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416
2417 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002418 * Save the inserted text for later redo with ^@ and CTRL-A.
2419 * Don't do it when "restart_edit" was set and nothing was inserted,
2420 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002422 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002423 if (did_restart_edit == 0 || (ptr != NULL
2424 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002425 {
2426 vim_free(last_insert);
2427 last_insert = ptr;
2428 last_insert_skip = new_insert_skip;
2429 }
2430 else
2431 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002433 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002435 // Auto-format now. It may seem strange to do this when stopping an
2436 // insertion (or moving the cursor), but it's required when appending
2437 // a line and having it end in a space. But only do it when something
2438 // was actually inserted, otherwise undo won't work.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002439 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002441 pos_T tpos = curwin->w_cursor;
2442
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002443 // When the cursor is at the end of the line after a space the
2444 // formatting will move it to the following word. Avoid that by
2445 // moving the cursor onto the space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 cc = 'x';
2447 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
2448 {
2449 dec_cursor();
2450 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002451 if (!VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002452 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 }
2454
2455 auto_format(TRUE, FALSE);
2456
Bram Moolenaar1c465442017-03-12 20:10:05 +01002457 if (VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002458 {
2459 if (gchar_cursor() != NUL)
2460 inc_cursor();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002461 // If the cursor is still at the same character, also keep
2462 // the "coladd".
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002463 if (gchar_cursor() == NUL
2464 && curwin->w_cursor.lnum == tpos.lnum
2465 && curwin->w_cursor.col == tpos.col)
2466 curwin->w_cursor.coladd = tpos.coladd;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 }
2469
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002470 // If a space was inserted for auto-formatting, remove it now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 check_auto_format(TRUE);
2472
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002473 // If we just did an auto-indent, remove the white space from the end
2474 // of the line, and put the cursor back.
2475 // Do this when ESC was used or moving the cursor up/down.
2476 // Check for the old position still being valid, just in case the text
2477 // got changed unexpectedly.
Bram Moolenaarf332a652013-11-04 04:20:33 +01002478 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00002479 && curwin->w_cursor.lnum != end_insert_pos->lnum))
2480 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002482 pos_T tpos = curwin->w_cursor;
2483
2484 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002485 check_cursor_col(); // make sure it is not past the line
Bram Moolenaar39f05632006-03-19 22:15:26 +00002486 for (;;)
2487 {
2488 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
2489 --curwin->w_cursor.col;
2490 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002491 if (!VIM_ISWHITE(cc))
Bram Moolenaar39f05632006-03-19 22:15:26 +00002492 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00002493 if (del_char(TRUE) == FAIL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002494 break; // should not happen
Bram Moolenaar39f05632006-03-19 22:15:26 +00002495 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002496 if (curwin->w_cursor.lnum != tpos.lnum)
2497 curwin->w_cursor = tpos;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002498 else
2499 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002500 // reset tpos, could have been invalidated in the loop above
Bram Moolenaaref6875b2014-11-12 18:59:25 +01002501 tpos = curwin->w_cursor;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002502 tpos.col++;
2503 if (cc != NUL && gchar_pos(&tpos) == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002504 ++curwin->w_cursor.col; // put cursor back on the NUL
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002507 // <C-S-Right> may have started Visual mode, adjust the position for
2508 // deleted characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
2510 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002511 int len = (int)STRLEN(ml_get_curline());
2512
2513 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002515 VIsual.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 VIsual.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 }
2518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 }
2520 }
2521 did_ai = FALSE;
2522#ifdef FEAT_SMARTINDENT
2523 did_si = FALSE;
2524 can_si = FALSE;
2525 can_si_back = FALSE;
2526#endif
2527
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002528 // Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
2529 // now in a different buffer.
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002530 if (end_insert_pos != NULL)
2531 {
2532 curbuf->b_op_start = Insstart;
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002533 curbuf->b_op_start_orig = Insstart_orig;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002534 curbuf->b_op_end = *end_insert_pos;
2535 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536}
2537
2538/*
2539 * Set the last inserted text to a single character.
2540 * Used for the replace command.
2541 */
2542 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002543set_last_insert(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544{
2545 char_u *s;
2546
2547 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 if (last_insert != NULL)
2550 {
2551 s = last_insert;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002552 // Use the CTRL-V only when entering a special char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 if (c < ' ' || c == DEL)
2554 *s++ = Ctrl_V;
2555 s = add_char2buf(c, s);
2556 *s++ = ESC;
2557 *s++ = NUL;
2558 last_insert_skip = 0;
2559 }
2560}
2561
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002562#if defined(EXITFREE) || defined(PROTO)
2563 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002564free_last_insert(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002565{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002566 VIM_CLEAR(last_insert);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002567}
2568#endif
2569
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570/*
2571 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
2572 * and CSI. Handle multi-byte characters.
2573 * Returns a pointer to after the added bytes.
2574 */
2575 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002576add_char2buf(int c, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577{
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002578 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 int i;
2580 int len;
2581
2582 len = (*mb_char2bytes)(c, temp);
2583 for (i = 0; i < len; ++i)
2584 {
2585 c = temp[i];
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002586 // Need to escape K_SPECIAL and CSI like in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 if (c == K_SPECIAL)
2588 {
2589 *s++ = K_SPECIAL;
2590 *s++ = KS_SPECIAL;
2591 *s++ = KE_FILLER;
2592 }
2593#ifdef FEAT_GUI
2594 else if (c == CSI)
2595 {
2596 *s++ = CSI;
2597 *s++ = KS_EXTRA;
2598 *s++ = (int)KE_CSI;
2599 }
2600#endif
2601 else
2602 *s++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 return s;
2605}
2606
2607/*
2608 * move cursor to start of line
2609 * if flags & BL_WHITE move to first non-white
2610 * if flags & BL_SOL move to first non-white if startofline is set,
2611 * otherwise keep "curswant" column
2612 * if flags & BL_FIX don't leave the cursor on a NUL.
2613 */
2614 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002615beginline(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616{
2617 if ((flags & BL_SOL) && !p_sol)
2618 coladvance(curwin->w_curswant);
2619 else
2620 {
2621 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623
2624 if (flags & (BL_WHITE | BL_SOL))
2625 {
2626 char_u *ptr;
2627
Bram Moolenaar1c465442017-03-12 20:10:05 +01002628 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
2630 ++curwin->w_cursor.col;
2631 }
2632 curwin->w_set_curswant = TRUE;
2633 }
2634}
2635
2636/*
2637 * oneright oneleft cursor_down cursor_up
2638 *
2639 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002640 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 * Return OK when successful, FAIL when we hit a line of file boundary.
2642 */
2643
2644 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002645oneright(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646{
2647 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 if (virtual_active())
2651 {
2652 pos_T prevpos = curwin->w_cursor;
2653
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002654 // Adjust for multi-wide char (excluding TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002656 coladvance(getviscol() + ((*ptr != TAB
2657 && vim_isprintc((*mb_ptr2char)(ptr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 ? ptr2cells(ptr) : 1));
2659 curwin->w_set_curswant = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002660 // Return OK if the cursor moved, FAIL otherwise (at window edge).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 return (prevpos.col != curwin->w_cursor.col
2662 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
2663 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664
2665 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002666 if (*ptr == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002667 return FAIL; // already at the very end
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002668
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002669 if (has_mbyte)
2670 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 else
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002672 l = 1;
2673
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002674 // move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
2675 // contains "onemore".
Gary Johnson53ba05b2021-07-26 22:19:10 +02002676 if (ptr[l] == NUL && (get_ve_flags() & VE_ONEMORE) == 0)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002677 return FAIL;
2678 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679
2680 curwin->w_set_curswant = TRUE;
2681 return OK;
2682}
2683
2684 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002685oneleft(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 if (virtual_active())
2688 {
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002689#ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 int width;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002691#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 int v = getviscol();
2693
2694 if (v == 0)
2695 return FAIL;
2696
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002697#ifdef FEAT_LINEBREAK
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002698 // We might get stuck on 'showbreak', skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 width = 1;
2700 for (;;)
2701 {
2702 coladvance(v - width);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002703 // getviscol() is slow, skip it when 'showbreak' is empty,
2704 // 'breakindent' is not set and there are no multi-byte
2705 // characters
Bram Moolenaaree857022019-11-09 23:26:40 +01002706 if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri
Bram Moolenaar13505972019-01-24 15:04:48 +01002707 && !has_mbyte) || getviscol() < v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 break;
2709 ++width;
2710 }
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002711#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 coladvance(v - 1);
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002713#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714
2715 if (curwin->w_cursor.coladd == 1)
2716 {
2717 char_u *ptr;
2718
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002719 // Adjust for multi-wide char (not a TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002721 if (*ptr != TAB && vim_isprintc((*mb_ptr2char)(ptr))
2722 && ptr2cells(ptr) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 curwin->w_cursor.coladd = 0;
2724 }
2725
2726 curwin->w_set_curswant = TRUE;
2727 return OK;
2728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729
2730 if (curwin->w_cursor.col == 0)
2731 return FAIL;
2732
2733 curwin->w_set_curswant = TRUE;
2734 --curwin->w_cursor.col;
2735
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002736 // if the character on the left of the current cursor is a multi-byte
2737 // character, move to its first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 if (has_mbyte)
2739 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 return OK;
2741}
2742
2743 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002744cursor_up(
2745 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002746 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747{
2748 linenr_T lnum;
2749
2750 if (n > 0)
2751 {
2752 lnum = curwin->w_cursor.lnum;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002753 // This fails if the cursor is already in the first line or the count
2754 // is larger than the line number and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002755 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 return FAIL;
2757 if (n >= lnum)
2758 lnum = 1;
2759 else
2760#ifdef FEAT_FOLDING
2761 if (hasAnyFolding(curwin))
2762 {
2763 /*
2764 * Count each sequence of folded lines as one logical line.
2765 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002766 // go to the start of the current fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 (void)hasFolding(lnum, &lnum, NULL);
2768
2769 while (n--)
2770 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002771 // move up one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 --lnum;
2773 if (lnum <= 1)
2774 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002775 // If we entered a fold, move to the beginning, unless in
2776 // Insert mode or when 'foldopen' contains "all": it will open
2777 // in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
2779 (void)hasFolding(lnum, &lnum, NULL);
2780 }
2781 if (lnum < 1)
2782 lnum = 1;
2783 }
2784 else
2785#endif
2786 lnum -= n;
2787 curwin->w_cursor.lnum = lnum;
2788 }
2789
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002790 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 coladvance(curwin->w_curswant);
2792
2793 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002794 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795
2796 return OK;
2797}
2798
2799/*
2800 * Cursor down a number of logical lines.
2801 */
2802 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002803cursor_down(
2804 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002805 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806{
2807 linenr_T lnum;
2808
2809 if (n > 0)
2810 {
2811 lnum = curwin->w_cursor.lnum;
2812#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002813 // Move to last line of fold, will fail if it's the end-of-file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 (void)hasFolding(lnum, NULL, &lnum);
2815#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002816 // This fails if the cursor is already in the last line or would move
2817 // beyond the last line and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002818 if (lnum >= curbuf->b_ml.ml_line_count
2819 || (lnum + n > curbuf->b_ml.ml_line_count
2820 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 return FAIL;
2822 if (lnum + n >= curbuf->b_ml.ml_line_count)
2823 lnum = curbuf->b_ml.ml_line_count;
2824 else
2825#ifdef FEAT_FOLDING
2826 if (hasAnyFolding(curwin))
2827 {
2828 linenr_T last;
2829
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002830 // count each sequence of folded lines as one logical line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 while (n--)
2832 {
2833 if (hasFolding(lnum, NULL, &last))
2834 lnum = last + 1;
2835 else
2836 ++lnum;
2837 if (lnum >= curbuf->b_ml.ml_line_count)
2838 break;
2839 }
2840 if (lnum > curbuf->b_ml.ml_line_count)
2841 lnum = curbuf->b_ml.ml_line_count;
2842 }
2843 else
2844#endif
2845 lnum += n;
2846 curwin->w_cursor.lnum = lnum;
2847 }
2848
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002849 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 coladvance(curwin->w_curswant);
2851
2852 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002853 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854
2855 return OK;
2856}
2857
2858/*
2859 * Stuff the last inserted text in the read buffer.
2860 * Last_insert actually is a copy of the redo buffer, so we
2861 * first have to remove the command.
2862 */
2863 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002864stuff_inserted(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002865 int c, // Command character to be inserted
2866 long count, // Repeat this many times
2867 int no_esc) // Don't add an ESC at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868{
2869 char_u *esc_ptr;
2870 char_u *ptr;
2871 char_u *last_ptr;
2872 char_u last = NUL;
2873
2874 ptr = get_last_insert();
2875 if (ptr == NULL)
2876 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02002877 emsg(_(e_no_inserted_text_yet));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 return FAIL;
2879 }
2880
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002881 // may want to stuff the command character, to start Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 if (c != NUL)
2883 stuffcharReadbuff(c);
2884 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002885 *esc_ptr = NUL; // remove the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002887 // when the last char is either "0" or "^" it will be quoted if no ESC
2888 // comes after it OR if it will inserted more than once and "ptr"
2889 // starts with ^D. -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
2891 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
2892 && (no_esc || (*ptr == Ctrl_D && count > 1)))
2893 {
2894 last = *last_ptr;
2895 *last_ptr = NUL;
2896 }
2897
2898 do
2899 {
2900 stuffReadbuff(ptr);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002901 // a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 if (last)
2903 stuffReadbuff((char_u *)(last == '0'
2904 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
2905 : IF_EB("\026^", CTRL_V_STR "^")));
2906 }
2907 while (--count > 0);
2908
2909 if (last)
2910 *last_ptr = last;
2911
2912 if (esc_ptr != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002913 *esc_ptr = ESC; // put the ESC back
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002915 // may want to stuff a trailing ESC, to get out of Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 if (!no_esc)
2917 stuffcharReadbuff(ESC);
2918
2919 return OK;
2920}
2921
2922 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002923get_last_insert(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924{
2925 if (last_insert == NULL)
2926 return NULL;
2927 return last_insert + last_insert_skip;
2928}
2929
2930/*
2931 * Get last inserted string, and remove trailing <Esc>.
2932 * Returns pointer to allocated memory (must be freed) or NULL.
2933 */
2934 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002935get_last_insert_save(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936{
2937 char_u *s;
2938 int len;
2939
2940 if (last_insert == NULL)
2941 return NULL;
2942 s = vim_strsave(last_insert + last_insert_skip);
2943 if (s != NULL)
2944 {
2945 len = (int)STRLEN(s);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002946 if (len > 0 && s[len - 1] == ESC) // remove trailing ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 s[len - 1] = NUL;
2948 }
2949 return s;
2950}
2951
2952/*
2953 * Check the word in front of the cursor for an abbreviation.
2954 * Called when the non-id character "c" has been entered.
2955 * When an abbreviation is recognized it is removed from the text and
2956 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
2957 */
2958 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002959echeck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002961 // Don't check for abbreviation in paste mode, when disabled and just
2962 // after moving around with cursor keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 if (p_paste || no_abbr || arrow_used)
2964 return FALSE;
2965
2966 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
2967 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
2968}
2969
2970/*
2971 * replace-stack functions
2972 *
2973 * When replacing characters, the replaced characters are remembered for each
2974 * new character. This is used to re-insert the old text when backspacing.
2975 *
2976 * There is a NUL headed list of characters for each character that is
2977 * currently in the file after the insertion point. When BS is used, one NUL
2978 * headed list is put back for the deleted character.
2979 *
2980 * For a newline, there are two NUL headed lists. One contains the characters
2981 * that the NL replaced. The extra one stores the characters after the cursor
2982 * that were deleted (always white space).
2983 *
2984 * Replace_offset is normally 0, in which case replace_push will add a new
2985 * character at the end of the stack. If replace_offset is not 0, that many
2986 * characters will be left on the stack above the newly inserted character.
2987 */
2988
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002989static char_u *replace_stack = NULL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002990static long replace_stack_nr = 0; // next entry in replace stack
2991static long replace_stack_len = 0; // max. number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992
2993 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002994replace_push(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002995 int c) // character that is replaced (NUL is none)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996{
2997 char_u *p;
2998
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002999 if (replace_stack_nr < replace_offset) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 return;
3001 if (replace_stack_len <= replace_stack_nr)
3002 {
3003 replace_stack_len += 50;
Bram Moolenaar3397f742019-06-02 18:40:06 +02003004 p = ALLOC_MULT(char_u, replace_stack_len);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003005 if (p == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 {
3007 replace_stack_len -= 50;
3008 return;
3009 }
3010 if (replace_stack != NULL)
3011 {
3012 mch_memmove(p, replace_stack,
3013 (size_t)(replace_stack_nr * sizeof(char_u)));
3014 vim_free(replace_stack);
3015 }
3016 replace_stack = p;
3017 }
3018 p = replace_stack + replace_stack_nr - replace_offset;
3019 if (replace_offset)
3020 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
3021 *p = c;
3022 ++replace_stack_nr;
3023}
3024
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003025/*
3026 * Push a character onto the replace stack. Handles a multi-byte character in
3027 * reverse byte order, so that the first byte is popped off first.
3028 * Return the number of bytes done (includes composing characters).
3029 */
3030 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003031replace_push_mb(char_u *p)
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003032{
3033 int l = (*mb_ptr2len)(p);
3034 int j;
3035
3036 for (j = l - 1; j >= 0; --j)
3037 replace_push(p[j]);
3038 return l;
3039}
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003040
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041/*
3042 * Pop one item from the replace stack.
3043 * return -1 if stack empty
3044 * return replaced character or NUL otherwise
3045 */
3046 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003047replace_pop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048{
3049 if (replace_stack_nr == 0)
3050 return -1;
3051 return (int)replace_stack[--replace_stack_nr];
3052}
3053
3054/*
3055 * Join the top two items on the replace stack. This removes to "off"'th NUL
3056 * encountered.
3057 */
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003058 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003059replace_join(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003060 int off) // offset for which NUL to remove
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061{
3062 int i;
3063
3064 for (i = replace_stack_nr; --i >= 0; )
3065 if (replace_stack[i] == NUL && off-- <= 0)
3066 {
3067 --replace_stack_nr;
3068 mch_memmove(replace_stack + i, replace_stack + i + 1,
3069 (size_t)(replace_stack_nr - i));
3070 return;
3071 }
3072}
3073
3074/*
3075 * Pop bytes from the replace stack until a NUL is found, and insert them
3076 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
3077 */
3078 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003079replace_pop_ins(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080{
3081 int cc;
3082 int oldState = State;
3083
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003084 State = NORMAL; // don't want REPLACE here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 while ((cc = replace_pop()) > 0)
3086 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 mb_replace_pop_ins(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 dec_cursor();
3089 }
3090 State = oldState;
3091}
3092
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093/*
3094 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
3095 * indicates a multi-byte char, pop the other bytes too.
3096 */
3097 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003098mb_replace_pop_ins(int cc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099{
3100 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02003101 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 int i;
3103 int c;
3104
3105 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
3106 {
3107 buf[0] = cc;
3108 for (i = 1; i < n; ++i)
3109 buf[i] = replace_pop();
3110 ins_bytes_len(buf, n);
3111 }
3112 else
3113 ins_char(cc);
3114
3115 if (enc_utf8)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003116 // Handle composing chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 for (;;)
3118 {
3119 c = replace_pop();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003120 if (c == -1) // stack empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 break;
3122 if ((n = MB_BYTE2LEN(c)) == 1)
3123 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003124 // Not a multi-byte char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 replace_push(c);
3126 break;
3127 }
3128 else
3129 {
3130 buf[0] = c;
3131 for (i = 1; i < n; ++i)
3132 buf[i] = replace_pop();
3133 if (utf_iscomposing(utf_ptr2char(buf)))
3134 ins_bytes_len(buf, n);
3135 else
3136 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003137 // Not a composing char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 for (i = n - 1; i >= 0; --i)
3139 replace_push(buf[i]);
3140 break;
3141 }
3142 }
3143 }
3144}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145
3146/*
3147 * make the replace stack empty
3148 * (called when exiting replace mode)
3149 */
3150 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003151replace_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152{
Bram Moolenaard23a8232018-02-10 18:45:26 +01003153 VIM_CLEAR(replace_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 replace_stack_len = 0;
3155 replace_stack_nr = 0;
3156}
3157
3158/*
3159 * Handle doing a BS for one character.
3160 * cc < 0: replace stack empty, just move cursor
3161 * cc == 0: character was inserted, delete it
3162 * cc > 0: character was replaced, put cc (first byte of original char) back
3163 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003164 * When "limit_col" is >= 0, don't delete before this column. Matters when
3165 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 */
3167 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003168replace_do_bs(int limit_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169{
3170 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 int orig_len = 0;
3172 int ins_len;
3173 int orig_vcols = 0;
3174 colnr_T start_vcol;
3175 char_u *p;
3176 int i;
3177 int vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178
3179 cc = replace_pop();
3180 if (cc > 0)
3181 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003182#ifdef FEAT_PROP_POPUP
Bram Moolenaar6d11f3b2019-01-06 17:44:38 +01003183 size_t len_before = 0; // init to shut up GCC
Bram Moolenaar196d1572019-01-02 23:47:18 +01003184
3185 if (curbuf->b_has_textprop)
3186 {
3187 // Do not adjust text properties for individual delete and insert
3188 // operations, do it afterwards on the resulting text.
3189 len_before = STRLEN(ml_get_curline());
3190 ++text_prop_frozen;
3191 }
3192#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 if (State & VREPLACE_FLAG)
3194 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003195 // Get the number of screen cells used by the character we are
3196 // going to delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
3198 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
3199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 if (has_mbyte)
3201 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003202 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003204 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 replace_push(cc);
3206 }
3207 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 {
3209 pchar_cursor(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003211 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 }
3213 replace_pop_ins();
3214
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 if (State & VREPLACE_FLAG)
3216 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003217 // Get the number of screen cells used by the inserted characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003219 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 vcol = start_vcol;
3221 for (i = 0; i < ins_len; ++i)
3222 {
3223 vcol += chartabsize(p + i, vcol);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003224 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 }
3226 vcol -= start_vcol;
3227
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003228 // Delete spaces that were inserted after the cursor to keep the
3229 // text aligned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 curwin->w_cursor.col += ins_len;
3231 while (vcol > orig_vcols && gchar_cursor() == ' ')
3232 {
3233 del_char(FALSE);
3234 ++orig_vcols;
3235 }
3236 curwin->w_cursor.col -= ins_len;
3237 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238
Bram Moolenaar196d1572019-01-02 23:47:18 +01003239 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003241
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003242#ifdef FEAT_PROP_POPUP
Bram Moolenaar196d1572019-01-02 23:47:18 +01003243 if (curbuf->b_has_textprop)
3244 {
3245 size_t len_now = STRLEN(ml_get_curline());
3246
3247 --text_prop_frozen;
3248 adjust_prop_columns(curwin->w_cursor.lnum, curwin->w_cursor.col,
Bram Moolenaarf3333b02019-05-19 22:53:40 +02003249 (int)(len_now - len_before), 0);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003250 }
3251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 }
3253 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003254 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255}
3256
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
3258/*
3259 * Map Hebrew keyboard when in hkmap mode.
3260 */
3261 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003262hkmap(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003264 if (p_hkmapp) // phonetic mapping, by Ilya Dogolazky
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 {
3266 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
3267 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
3268 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
3269 static char_u map[26] =
3270 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
3271 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
3272 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
3273 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
3274 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
3275 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
3276 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
3277 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
3278 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
3279
3280 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
3281 return (int)(map[CharOrd(c)] - 1 + p_aleph);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003282 // '-1'='sofit'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 else if (c == 'x')
3284 return 'X';
3285 else if (c == 'q')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003286 return '\''; // {geresh}={'}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 else if (c == 246)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003288 return ' '; // \"o --> ' ' for a german keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 else if (c == 228)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003290 return ' '; // \"a --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 else if (c == 252)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003292 return ' '; // \"u --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293#ifdef EBCDIC
3294 else if (islower(c))
3295#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003296 // NOTE: islower() does not do the right thing for us on Linux so we
3297 // do this the same was as 5.7 and previous, so it works correctly on
3298 // all systems. Specifically, the e.g. Delete and Arrow keys are
3299 // munged and won't work if e.g. searching for Hebrew text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 else if (c >= 'a' && c <= 'z')
3301#endif
3302 return (int)(map[CharOrdLow(c)] + p_aleph);
3303 else
3304 return c;
3305 }
3306 else
3307 {
3308 switch (c)
3309 {
3310 case '`': return ';';
3311 case '/': return '.';
3312 case '\'': return ',';
3313 case 'q': return '/';
3314 case 'w': return '\'';
3315
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003316 // Hebrew letters - set offset from 'a'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 case ',': c = '{'; break;
3318 case '.': c = 'v'; break;
3319 case ';': c = 't'; break;
3320 default: {
3321 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
3322
3323#ifdef EBCDIC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003324 // see note about islower() above
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 if (!islower(c))
3326#else
3327 if (c < 'a' || c > 'z')
3328#endif
3329 return c;
3330 c = str[CharOrdLow(c)];
3331 break;
3332 }
3333 }
3334
3335 return (int)(CharOrdLow(c) + p_aleph);
3336 }
3337}
3338#endif
3339
3340 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003341ins_reg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342{
3343 int need_redraw = FALSE;
3344 int regname;
3345 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003346 int vis_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347
3348 /*
3349 * If we are going to wait for a character, show a '"'.
3350 */
3351 pc_status = PC_STATUS_UNSET;
3352 if (redrawing() && !char_avail())
3353 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003354 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00003355 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356
3357 edit_putchar('"', TRUE);
3358#ifdef FEAT_CMDL_INFO
3359 add_to_showcmd_c(Ctrl_R);
3360#endif
3361 }
3362
3363#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003364 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365#endif
3366
3367 /*
3368 * Don't map the register name. This also prevents the mode message to be
3369 * deleted when ESC is hit.
3370 */
3371 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003372 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003373 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
3376 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003377 // Get a third key for literal register insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 literally = regname;
3379#ifdef FEAT_CMDL_INFO
3380 add_to_showcmd_c(literally);
3381#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003382 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 }
3385 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003386 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387
3388#ifdef FEAT_EVAL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003389 // Don't call u_sync() while typing the expression or giving an error
3390 // message for it. Only call it explicitly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 ++no_u_sync;
3392 if (regname == '=')
3393 {
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003394 pos_T curpos = curwin->w_cursor;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003395# ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003397# endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003398 // Sync undo when evaluating the expression calls setline() or
3399 // append(), so that it can be undone separately.
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003400 u_sync_once = 2;
Bram Moolenaar5737ca22013-06-27 22:21:24 +02003401
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 regname = get_expr_register();
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003403
3404 // Cursor may be moved back a column.
3405 curwin->w_cursor = curpos;
3406 check_cursor();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003407# ifdef HAVE_INPUT_METHOD
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003408 // Restore the Input Method.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 if (im_on)
3410 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003411# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00003413 if (regname == NUL || !valid_yank_reg(regname, FALSE))
3414 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003415 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003416 need_redraw = TRUE; // remove the '"'
Bram Moolenaar677ee682005-01-27 14:41:15 +00003417 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 else
3419 {
3420#endif
3421 if (literally == Ctrl_O || literally == Ctrl_P)
3422 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003423 // Append the command to the redo buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 AppendCharToRedobuff(Ctrl_R);
3425 AppendCharToRedobuff(literally);
3426 AppendCharToRedobuff(regname);
3427
Bram Moolenaarc3516f72020-09-08 22:45:35 +02003428 do_put(regname, NULL, BACKWARD, 1L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
3430 }
3431 else if (insert_reg(regname, literally) == FAIL)
3432 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003433 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003434 need_redraw = TRUE; // remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003436 else if (stop_insert_mode)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003437 // When the '=' register was used and a function was invoked that
3438 // did ":stopinsert" then stuff_empty() returns FALSE but we won't
3439 // insert anything, need to remove the '"'
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003440 need_redraw = TRUE;
3441
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442#ifdef FEAT_EVAL
3443 }
3444 --no_u_sync;
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003445 if (u_sync_once == 1)
3446 ins_need_undo = TRUE;
3447 u_sync_once = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448#endif
3449#ifdef FEAT_CMDL_INFO
3450 clear_showcmd();
3451#endif
3452
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003453 // If the inserted register is empty, we need to remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 if (need_redraw || stuff_empty())
3455 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003456
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003457 // Disallow starting Visual mode here, would get a weird mode.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003458 if (!vis_active && VIsual_active)
3459 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460}
3461
3462/*
3463 * CTRL-G commands in Insert mode.
3464 */
3465 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003466ins_ctrl_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467{
3468 int c;
3469
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003470 // Right after CTRL-X the cursor will be after the ruler.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472
3473 /*
3474 * Don't map the second key. This also prevents the mode message to be
3475 * deleted when ESC is hit.
3476 */
3477 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003478 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003479 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003481 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 switch (c)
3483 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003484 // CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 case K_UP:
3486 case Ctrl_K:
3487 case 'k': ins_up(TRUE);
3488 break;
3489
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003490 // CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 case K_DOWN:
3492 case Ctrl_J:
3493 case 'j': ins_down(TRUE);
3494 break;
3495
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003496 // CTRL-G u: start new undoable edit
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003497 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003499
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003500 // Need to reset Insstart, esp. because a BS that joins
3501 // a line to the previous one must save for undo.
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01003502 update_Insstart_orig = FALSE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003503 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 break;
3505
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003506 // CTRL-G U: do not break undo with the next char
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003507 case 'U':
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003508 // Allow one left/right cursor movement with the next char,
3509 // without breaking undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003510 dont_sync_undo = MAYBE;
3511 break;
3512
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003513 // Unknown CTRL-G command, reserved for future expansion.
Bram Moolenaar165bc692015-07-21 17:53:25 +02003514 default: vim_beep(BO_CTRLG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 }
3516}
3517
3518/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003519 * CTRL-^ in Insert mode.
3520 */
3521 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003522ins_ctrl_hat(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003523{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003524 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003525 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003526 // ":lmap" mappings exists, Toggle use of ":lmap" mappings.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003527 if (State & LANGMAP)
3528 {
3529 curbuf->b_p_iminsert = B_IMODE_NONE;
3530 State &= ~LANGMAP;
3531 }
3532 else
3533 {
3534 curbuf->b_p_iminsert = B_IMODE_LMAP;
3535 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003536#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003537 im_set_active(FALSE);
3538#endif
3539 }
3540 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003541#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003542 else
3543 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003544 // There are no ":lmap" mappings, toggle IM
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003545 if (im_get_status())
3546 {
3547 curbuf->b_p_iminsert = B_IMODE_NONE;
3548 im_set_active(FALSE);
3549 }
3550 else
3551 {
3552 curbuf->b_p_iminsert = B_IMODE_IM;
3553 State &= ~LANGMAP;
3554 im_set_active(TRUE);
3555 }
3556 }
3557#endif
3558 set_iminsert_global();
3559 showmode();
3560#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003561 // may show different cursor shape or color
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003562 if (gui.in_use)
3563 gui_update_cursor(TRUE, FALSE);
3564#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003565#if defined(FEAT_KEYMAP)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003566 // Show/unshow value of 'keymap' in status lines.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003567 status_redraw_curbuf();
3568#endif
3569}
3570
3571/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 * Handle ESC in insert mode.
3573 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
3574 * insert.
3575 */
3576 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003577ins_esc(
3578 long *count,
3579 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003580 int nomove) // don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581{
3582 int temp;
3583 static int disabled_redraw = FALSE;
3584
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003585#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003586 check_spell_redraw();
3587#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588
3589 temp = curwin->w_cursor.col;
3590 if (disabled_redraw)
3591 {
3592 --RedrawingDisabled;
3593 disabled_redraw = FALSE;
3594 }
3595 if (!arrow_used)
3596 {
3597 /*
3598 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00003599 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
3600 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 */
3602 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00003603 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604
3605 /*
3606 * Repeating insert may take a long time. Check for
3607 * interrupt now and then.
3608 */
3609 if (*count > 0)
3610 {
3611 line_breakcheck();
3612 if (got_int)
3613 *count = 0;
3614 }
3615
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003616 if (--*count > 0) // repeat what was typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003618 // Vi repeats the insert without replacing characters.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003619 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
3620 State &= ~REPLACE_FLAG;
3621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 (void)start_redo_ins();
3623 if (cmdchar == 'r' || cmdchar == 'v')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003624 stuffRedoReadbuff(ESC_STR); // no ESC in redo buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 ++RedrawingDisabled;
3626 disabled_redraw = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003627 return FALSE; // repeat the insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 }
Bram Moolenaarf332a652013-11-04 04:20:33 +01003629 stop_insert(&curwin->w_cursor, TRUE, nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 undisplay_dollar();
3631 }
3632
Bram Moolenaarb53e13a2020-10-21 12:19:53 +02003633 if (cmdchar != 'r' && cmdchar != 'v')
3634 ins_apply_autocmds(EVENT_INSERTLEAVEPRE);
3635
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003636 // When an autoindent was removed, curswant stays after the
3637 // indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
3639 curwin->w_set_curswant = TRUE;
3640
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003641 // Remember the last Insert position in the '^ mark.
Bram Moolenaare1004402020-10-24 20:49:43 +02003642 if ((cmdmod.cmod_flags & CMOD_KEEPJUMPS) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 curbuf->b_last_insert = curwin->w_cursor;
3644
3645 /*
3646 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00003647 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00003649 if (!nomove
3650 && (curwin->w_cursor.col != 0
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003651 || curwin->w_cursor.coladd > 0)
Bram Moolenaar488c6512005-08-11 20:09:58 +00003652 && (restart_edit == NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003653 || (gchar_cursor() == NUL && !VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654#ifdef FEAT_RIGHTLEFT
3655 && !revins_on
3656#endif
3657 )
3658 {
Gary Johnson53ba05b2021-07-26 22:19:10 +02003659 if (curwin->w_cursor.coladd > 0 || get_ve_flags() == VE_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 {
3661 oneleft();
3662 if (restart_edit != NUL)
3663 ++curwin->w_cursor.coladd;
3664 }
3665 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 {
3667 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003668 // Correct cursor for multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 if (has_mbyte)
3670 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 }
3672 }
3673
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003674#ifdef HAVE_INPUT_METHOD
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003675 // Disable IM to allow typing English directly for Normal mode commands.
3676 // When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
3677 // well).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 if (!(State & LANGMAP))
3679 im_save_status(&curbuf->b_p_iminsert);
3680 im_set_active(FALSE);
3681#endif
3682
3683 State = NORMAL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003684 // need to position cursor again (e.g. when on a TAB )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 changed_cline_bef_curs();
3686
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688#ifdef CURSOR_SHAPE
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003689 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003691 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003692 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003693#ifdef FEAT_JOB_CHANNEL
3694 ch_log_output = TRUE;
3695#endif
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003696 // Re-enable bracketed paste mode.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003697 out_str(T_BE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003699 // Re-enable modifyOtherKeys.
3700 out_str(T_CTI);
3701 }
3702
Bram Moolenaarad3ec762019-04-21 00:00:13 +02003703 // When recording or for CTRL-O, need to display the new mode.
3704 // Otherwise remove the mode message.
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02003705 if (reg_recording != 0 || restart_edit != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 showmode();
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +02003707 else if (p_smd && (got_int || !skip_showmode()))
Bram Moolenaar32526b32019-01-19 17:43:09 +01003708 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003710 return TRUE; // exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711}
3712
3713#ifdef FEAT_RIGHTLEFT
3714/*
3715 * Toggle language: hkmap and revins_on.
3716 * Move to end of reverse inserted text.
3717 */
3718 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003719ins_ctrl_(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720{
3721 if (revins_on && revins_chars && revins_scol >= 0)
3722 {
3723 while (gchar_cursor() != NUL && revins_chars--)
3724 ++curwin->w_cursor.col;
3725 }
3726 p_ri = !p_ri;
3727 revins_on = (State == INSERT && p_ri);
3728 if (revins_on)
3729 {
3730 revins_scol = curwin->w_cursor.col;
3731 revins_legal++;
3732 revins_chars = 0;
3733 undisplay_dollar();
3734 }
3735 else
3736 revins_scol = -1;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003737 p_hkmap = curwin->w_p_rl ^ p_ri; // be consistent!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 showmode();
3739}
3740#endif
3741
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742/*
3743 * If 'keymodel' contains "startsel", may start selection.
3744 * Returns TRUE when a CTRL-O and other keys stuffed.
3745 */
3746 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003747ins_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748{
3749 if (km_startsel)
3750 switch (c)
3751 {
3752 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 case K_PAGEUP:
3755 case K_KPAGEUP:
3756 case K_PAGEDOWN:
3757 case K_KPAGEDOWN:
Bram Moolenaard0573012017-10-28 21:11:06 +02003758# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 case K_LEFT:
3760 case K_RIGHT:
3761 case K_UP:
3762 case K_DOWN:
3763 case K_END:
3764 case K_HOME:
3765# endif
3766 if (!(mod_mask & MOD_MASK_SHIFT))
3767 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003768 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 case K_S_LEFT:
3770 case K_S_RIGHT:
3771 case K_S_UP:
3772 case K_S_DOWN:
3773 case K_S_END:
3774 case K_S_HOME:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003775 // Start selection right away, the cursor can move with
3776 // CTRL-O when beyond the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 start_selection();
3778
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003779 // Execute the key in (insert) Select mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 stuffcharReadbuff(Ctrl_O);
3781 if (mod_mask)
3782 {
3783 char_u buf[4];
3784
3785 buf[0] = K_SPECIAL;
3786 buf[1] = KS_MODIFIER;
3787 buf[2] = mod_mask;
3788 buf[3] = NUL;
3789 stuffReadbuff(buf);
3790 }
3791 stuffcharReadbuff(c);
3792 return TRUE;
3793 }
3794 return FALSE;
3795}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796
3797/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003798 * <Insert> key in Insert mode: toggle insert/replace mode.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003799 */
3800 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003801ins_insert(int replaceState)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003802{
Bram Moolenaar14184a32019-02-16 15:10:30 +01003803#ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003804 set_vim_var_string(VV_INSERTMODE,
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02003805 (char_u *)((State & REPLACE_FLAG) ? "i"
3806 : replaceState == VREPLACE ? "v"
3807 : "r"), 1);
Bram Moolenaar14184a32019-02-16 15:10:30 +01003808#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02003809 ins_apply_autocmds(EVENT_INSERTCHANGE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003810 if (State & REPLACE_FLAG)
3811 State = INSERT | (State & LANGMAP);
3812 else
3813 State = replaceState | (State & LANGMAP);
3814 AppendCharToRedobuff(K_INS);
3815 showmode();
3816#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003817 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003818#endif
3819}
3820
3821/*
3822 * Pressed CTRL-O in Insert mode.
3823 */
3824 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003825ins_ctrl_o(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003826{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003827 if (State & VREPLACE_FLAG)
3828 restart_edit = 'V';
Bram Moolenaar0684e362020-12-03 19:54:42 +01003829 else if (State & REPLACE_FLAG)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003830 restart_edit = 'R';
3831 else
3832 restart_edit = 'I';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003833 if (virtual_active())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003834 ins_at_eol = FALSE; // cursor always keeps its column
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003835 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003836 ins_at_eol = (gchar_cursor() == NUL);
3837}
3838
3839/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 * If the cursor is on an indent, ^T/^D insert/delete one
3841 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00003842 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 * with vi. But vi only supports ^T and ^D after an
3844 * autoindent, we support it everywhere.
3845 */
3846 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003847ins_shift(int c, int lastc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848{
3849 if (stop_arrow() == FAIL)
3850 return;
3851 AppendCharToRedobuff(c);
3852
3853 /*
3854 * 0^D and ^^D: remove all indent.
3855 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00003856 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
3857 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 {
3859 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003860 (void)del_char(FALSE); // delete the '^' or '0'
3861 // In Replace mode, restore the characters that '^' or '0' replaced.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 if (State & REPLACE_FLAG)
3863 replace_pop_ins();
3864 if (lastc == '^')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003865 old_indent = get_indent(); // remember curr. indent
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003866 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 }
3868 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003869 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870
3871 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
3872 did_ai = FALSE;
3873#ifdef FEAT_SMARTINDENT
3874 did_si = FALSE;
3875 can_si = FALSE;
3876 can_si_back = FALSE;
3877#endif
3878#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003879 can_cindent = FALSE; // no cindenting after ^D or ^T
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880#endif
3881}
3882
3883 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003884ins_del(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885{
3886 int temp;
3887
3888 if (stop_arrow() == FAIL)
3889 return;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003890 if (gchar_cursor() == NUL) // delete newline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 {
3892 temp = curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003893 if (!can_bs(BS_EOL) // only if "eol" included
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02003894 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003895 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 else
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003897 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 curwin->w_cursor.col = temp;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003899 // Adjust orig_line_count in case more lines have been deleted than
3900 // have been added. That makes sure, that open_line() later
3901 // can access all buffer lines correctly
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003902 if (State & VREPLACE_FLAG &&
3903 orig_line_count > curbuf->b_ml.ml_line_count)
3904 orig_line_count = curbuf->b_ml.ml_line_count;
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003907 else if (del_char(FALSE) == FAIL) // delete char under cursor
Bram Moolenaar165bc692015-07-21 17:53:25 +02003908 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 did_ai = FALSE;
3910#ifdef FEAT_SMARTINDENT
3911 did_si = FALSE;
3912 can_si = FALSE;
3913 can_si_back = FALSE;
3914#endif
3915 AppendCharToRedobuff(K_DEL);
3916}
3917
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003918/*
3919 * Delete one character for ins_bs().
3920 */
3921 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003922ins_bs_one(colnr_T *vcolp)
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003923{
3924 dec_cursor();
3925 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
3926 if (State & REPLACE_FLAG)
3927 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003928 // Don't delete characters before the insert point when in
3929 // Replace mode
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003930 if (curwin->w_cursor.lnum != Insstart.lnum
3931 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003932 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003933 }
3934 else
3935 (void)del_char(FALSE);
3936}
3937
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938/*
3939 * Handle Backspace, delete-word and delete-line in Insert mode.
3940 * Return TRUE when backspace was actually used.
3941 */
3942 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003943ins_bs(
3944 int c,
3945 int mode,
3946 int *inserted_space_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947{
3948 linenr_T lnum;
3949 int cc;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003950 int temp = 0; // init for GCC
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003951 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 colnr_T mincol;
3953 int did_backspace = FALSE;
3954 int in_indent;
3955 int oldState;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003956 int cpc[MAX_MCO]; // composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957
3958 /*
3959 * can't delete anything in an empty file
3960 * can't backup past first character in buffer
3961 * can't backup past starting point unless 'backspace' > 1
3962 * can backup to a previous line if 'backspace' == 0
3963 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003964 if ( BUFEMPTY()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 || (
3966#ifdef FEAT_RIGHTLEFT
3967 !revins_on &&
3968#endif
3969 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
3970 || (!can_bs(BS_START)
Bram Moolenaar6f624482020-11-11 20:52:40 +01003971 && ((arrow_used
3972#ifdef FEAT_JOB_CHANNEL
3973 && !bt_prompt(curbuf)
3974#endif
3975 ) || (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02003976 && curwin->w_cursor.col <= Insstart_orig.col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
3978 && curwin->w_cursor.col <= ai_col)
3979 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
3980 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003981 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 return FALSE;
3983 }
3984
3985 if (stop_arrow() == FAIL)
3986 return FALSE;
3987 in_indent = inindent(0);
3988#ifdef FEAT_CINDENT
3989 if (in_indent)
3990 can_cindent = FALSE;
3991#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003992 end_comment_pending = NUL; // After BS, don't auto-end comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003994 if (revins_on) // put cursor after last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 inc_cursor();
3996#endif
3997
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003998 // Virtualedit:
3999 // BACKSPACE_CHAR eats a virtual space
4000 // BACKSPACE_WORD eats all coladd
4001 // BACKSPACE_LINE eats all coladd and keeps going
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 if (curwin->w_cursor.coladd > 0)
4003 {
4004 if (mode == BACKSPACE_CHAR)
4005 {
4006 --curwin->w_cursor.coladd;
4007 return TRUE;
4008 }
4009 if (mode == BACKSPACE_WORD)
4010 {
4011 curwin->w_cursor.coladd = 0;
4012 return TRUE;
4013 }
4014 curwin->w_cursor.coladd = 0;
4015 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016
4017 /*
Bram Moolenaar878c2632017-04-01 15:15:52 +02004018 * Delete newline!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 */
4020 if (curwin->w_cursor.col == 0)
4021 {
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004022 lnum = Insstart.lnum;
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004023 if (curwin->w_cursor.lnum == lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024#ifdef FEAT_RIGHTLEFT
4025 || revins_on
4026#endif
4027 )
4028 {
4029 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
4030 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
4031 return FALSE;
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004032 --Insstart.lnum;
Bram Moolenaar04000562017-04-03 21:35:42 +02004033 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 }
4035 /*
4036 * In replace mode:
4037 * cc < 0: NL was inserted, delete it
4038 * cc >= 0: NL was replaced, put original characters back
4039 */
4040 cc = -1;
4041 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004042 cc = replace_pop(); // returns -1 if NL was inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 /*
4044 * In replace mode, in the line we started replacing, we only move the
4045 * cursor.
4046 */
4047 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
4048 {
4049 dec_cursor();
4050 }
4051 else
4052 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 if (!(State & VREPLACE_FLAG)
4054 || curwin->w_cursor.lnum > orig_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004056 temp = gchar_cursor(); // remember current char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004058
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004059 // When "aw" is in 'formatoptions' we must delete the space at
4060 // the end of the line, otherwise the line will be broken
4061 // again when auto-formatting.
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004062 if (has_format_option(FO_AUTO)
4063 && has_format_option(FO_WHITE_PAR))
4064 {
4065 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
4066 TRUE);
4067 int len;
4068
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004069 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004070 if (len > 0 && ptr[len - 1] == ' ')
4071 ptr[len - 1] = NUL;
4072 }
4073
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004074 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 if (temp == NUL && gchar_cursor() != NUL)
4076 inc_cursor();
4077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 else
4079 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080
4081 /*
4082 * In REPLACE mode we have to put back the text that was replaced
4083 * by the NL. On the replace stack is first a NUL-terminated
4084 * sequence of characters that were deleted and then the
4085 * characters that NL replaced.
4086 */
4087 if (State & REPLACE_FLAG)
4088 {
4089 /*
4090 * Do the next ins_char() in NORMAL state, to
4091 * prevent ins_char() from replacing characters and
4092 * avoiding showmatch().
4093 */
4094 oldState = State;
4095 State = NORMAL;
4096 /*
4097 * restore characters (blanks) deleted after cursor
4098 */
4099 while (cc > 0)
4100 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004101 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 mb_replace_pop_ins(cc);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004103 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 cc = replace_pop();
4105 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004106 // restore the characters that NL replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 replace_pop_ins();
4108 State = oldState;
4109 }
4110 }
4111 did_ai = FALSE;
4112 }
4113 else
4114 {
4115 /*
4116 * Delete character(s) before the cursor.
4117 */
4118#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004119 if (revins_on) // put cursor on last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 dec_cursor();
4121#endif
4122 mincol = 0;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004123 // keep indent
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004124 if (mode == BACKSPACE_LINE
4125 && (curbuf->b_p_ai
4126#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00004127 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004128#endif
4129 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130#ifdef FEAT_RIGHTLEFT
4131 && !revins_on
4132#endif
4133 )
4134 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004135 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00004137 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004139 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 }
4141
4142 /*
4143 * Handle deleting one 'shiftwidth' or 'softtabstop'.
4144 */
4145 if ( mode == BACKSPACE_CHAR
4146 && ((p_sta && in_indent)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004147 || ((get_sts_value() != 0
4148#ifdef FEAT_VARTABS
4149 || tabstop_count(curbuf->b_p_vsts_array)
4150#endif
4151 )
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00004152 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 && (*(ml_get_cursor() - 1) == TAB
4154 || (*(ml_get_cursor() - 1) == ' '
4155 && (!*inserted_space_p
4156 || arrow_used))))))
4157 {
4158 int ts;
4159 colnr_T vcol;
4160 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004161 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162
4163 *inserted_space_p = FALSE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004164 // Compute the virtual column where we want to be. Since
4165 // 'showbreak' may get in the way, need to get the last column of
4166 // the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004168 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 dec_cursor();
4170 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
4171 inc_cursor();
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004172#ifdef FEAT_VARTABS
4173 if (p_sta && in_indent)
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004174 {
4175 ts = (int)get_sw_value(curbuf);
4176 want_vcol = (want_vcol / ts) * ts;
4177 }
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004178 else
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004179 want_vcol = tabstop_start(want_vcol, get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004180 curbuf->b_p_vsts_array);
4181#else
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004182 if (p_sta && in_indent)
4183 ts = (int)get_sw_value(curbuf);
4184 else
4185 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 want_vcol = (want_vcol / ts) * ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004187#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004189 // delete characters until we are at or before want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 while (vcol > want_vcol
Bram Moolenaar1c465442017-03-12 20:10:05 +01004191 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004192 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004194 // insert extra spaces until we are at want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 while (vcol < want_vcol)
4196 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004197 // Remember the first char we inserted
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004198 if (curwin->w_cursor.lnum == Insstart_orig.lnum
4199 && curwin->w_cursor.col < Insstart_orig.col)
4200 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 if (State & VREPLACE_FLAG)
4203 ins_char(' ');
4204 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 {
4206 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004207 if ((State & REPLACE_FLAG))
4208 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 }
4210 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
4211 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004212
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004213 // If we are now back where we started delete one character. Can
4214 // happen when using 'sts' and 'linebreak'.
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004215 if (vcol >= start_vcol)
4216 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 }
4218
4219 /*
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004220 * Delete up to starting point, start of line or previous word.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 */
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004222 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004224 int cclass = 0, prev_cclass = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004226 if (has_mbyte)
4227 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004228 do
4229 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004231 if (!revins_on) // put cursor on char to be deleted
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 dec_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004234
4235 cc = gchar_cursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004236 // look multi-byte character class
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004237 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004239 prev_cclass = cclass;
4240 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 }
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004242
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004243 // start of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004244 if (mode == BACKSPACE_WORD && !vim_isspace(cc))
4245 {
4246 mode = BACKSPACE_WORD_NOT_SPACE;
4247 temp = vim_iswordc(cc);
4248 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004249 // end of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004250 else if (mode == BACKSPACE_WORD_NOT_SPACE
4251 && ((vim_isspace(cc) || vim_iswordc(cc) != temp)
Bram Moolenaar13505972019-01-24 15:04:48 +01004252 || prev_cclass != cclass))
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004253 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254#ifdef FEAT_RIGHTLEFT
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004255 if (!revins_on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004257 inc_cursor();
4258#ifdef FEAT_RIGHTLEFT
4259 else if (State & REPLACE_FLAG)
4260 dec_cursor();
4261#endif
4262 break;
4263 }
4264 if (State & REPLACE_FLAG)
4265 replace_do_bs(-1);
4266 else
4267 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004268 if (enc_utf8 && p_deco)
4269 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004270 (void)del_char(FALSE);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004271 /*
4272 * If there are combining characters and 'delcombine' is set
4273 * move the cursor back. Don't back up before the base
4274 * character.
4275 */
4276 if (enc_utf8 && p_deco && cpc[0] != NUL)
4277 inc_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004278#ifdef FEAT_RIGHTLEFT
4279 if (revins_chars)
4280 {
4281 revins_chars--;
4282 revins_legal++;
4283 }
4284 if (revins_on && gchar_cursor() == NUL)
4285 break;
4286#endif
4287 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004288 // Just a single backspace?:
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004289 if (mode == BACKSPACE_CHAR)
4290 break;
4291 } while (
4292#ifdef FEAT_RIGHTLEFT
4293 revins_on ||
4294#endif
4295 (curwin->w_cursor.col > mincol
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02004296 && (can_bs(BS_NOSTOP)
4297 || (curwin->w_cursor.lnum != Insstart_orig.lnum
4298 || curwin->w_cursor.col != Insstart_orig.col)
4299 )));
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 did_backspace = TRUE;
4302 }
4303#ifdef FEAT_SMARTINDENT
4304 did_si = FALSE;
4305 can_si = FALSE;
4306 can_si_back = FALSE;
4307#endif
4308 if (curwin->w_cursor.col <= 1)
4309 did_ai = FALSE;
4310 /*
4311 * It's a little strange to put backspaces into the redo
4312 * buffer, but it makes auto-indent a lot easier to deal
4313 * with.
4314 */
4315 AppendCharToRedobuff(c);
4316
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004317 // If deleted before the insertion point, adjust it
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004318 if (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02004319 && curwin->w_cursor.col < Insstart_orig.col)
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004320 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004322 // vi behaviour: the cursor moves backward but the character that
4323 // was there remains visible
4324 // Vim behaviour: the cursor moves backward and the character that
4325 // was there is erased from the screen.
4326 // We can emulate the vi behaviour by pretending there is a dollar
4327 // displayed even when there isn't.
4328 // --pkv Sun Jan 19 01:56:40 EST 2003
Bram Moolenaar76b9b362012-02-04 23:35:00 +01004329 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 dollar_vcol = curwin->w_virtcol;
4331
Bram Moolenaarce3be472008-01-14 19:12:28 +00004332#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004333 // When deleting a char the cursor line must never be in a closed fold.
4334 // E.g., when 'foldmethod' is indent and deleting the first non-white
4335 // char before a Tab.
Bram Moolenaarce3be472008-01-14 19:12:28 +00004336 if (did_backspace)
4337 foldOpenCursor();
4338#endif
4339
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 return did_backspace;
4341}
4342
Bram Moolenaarec2da362017-01-21 20:04:22 +01004343/*
4344 * Handle receiving P_PS: start paste mode. Inserts the following text up to
4345 * P_PE literally.
4346 * When "drop" is TRUE then consume the text and drop it.
4347 */
4348 int
4349bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
4350{
4351 int c;
4352 char_u buf[NUMBUFLEN + MB_MAXBYTES];
4353 int idx = 0;
4354 char_u *end = find_termcode((char_u *)"PE");
4355 int ret_char = -1;
4356 int save_allow_keys = allow_keys;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004357 int save_paste = p_paste;
Bram Moolenaarec2da362017-01-21 20:04:22 +01004358
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004359 // If the end code is too long we can't detect it, read everything.
Bram Moolenaarfe4bbac2020-01-20 21:12:20 +01004360 if (end != NULL && STRLEN(end) >= NUMBUFLEN)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004361 end = NULL;
4362 ++no_mapping;
4363 allow_keys = 0;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004364 if (!p_paste)
4365 // Also have the side effects of setting 'paste' to make it work much
4366 // faster.
4367 set_option_value((char_u *)"paste", TRUE, NULL, 0);
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004368
Bram Moolenaarec2da362017-01-21 20:04:22 +01004369 for (;;)
4370 {
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004371 // When the end is not defined read everything there is.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004372 if (end == NULL && vpeekc() == NUL)
4373 break;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004374 do
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004375 c = vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +01004376 while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004377 if (c == NUL || got_int || (ex_normal_busy > 0 && c == Ctrl_C))
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004378 // When CTRL-C was encountered the typeahead will be flushed and we
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004379 // won't get the end sequence. Except when using ":normal".
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004380 break;
4381
Bram Moolenaarec2da362017-01-21 20:04:22 +01004382 if (has_mbyte)
4383 idx += (*mb_char2bytes)(c, buf + idx);
4384 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004385 buf[idx++] = c;
4386 buf[idx] = NUL;
Bram Moolenaar866c6882017-04-07 14:02:01 +02004387 if (end != NULL && STRNCMP(buf, end, idx) == 0)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004388 {
4389 if (end[idx] == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004390 break; // Found the end of paste code.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004391 continue;
4392 }
4393 if (!drop)
4394 {
4395 switch (mode)
4396 {
4397 case PASTE_CMDLINE:
4398 put_on_cmdline(buf, idx, TRUE);
4399 break;
4400
4401 case PASTE_EX:
4402 if (gap != NULL && ga_grow(gap, idx) == OK)
4403 {
4404 mch_memmove((char *)gap->ga_data + gap->ga_len,
4405 buf, (size_t)idx);
4406 gap->ga_len += idx;
4407 }
4408 break;
4409
4410 case PASTE_INSERT:
4411 if (stop_arrow() == OK)
4412 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004413 c = buf[0];
4414 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL))
4415 ins_eol(c);
4416 else
Bram Moolenaar076e5022017-01-24 18:58:30 +01004417 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004418 ins_char_bytes(buf, idx);
Bram Moolenaar076e5022017-01-24 18:58:30 +01004419 AppendToRedobuffLit(buf, idx);
4420 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01004421 }
4422 break;
4423
4424 case PASTE_ONE_CHAR:
4425 if (ret_char == -1)
4426 {
Bram Moolenaarec2da362017-01-21 20:04:22 +01004427 if (has_mbyte)
4428 ret_char = (*mb_ptr2char)(buf);
4429 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004430 ret_char = buf[0];
4431 }
4432 break;
4433 }
4434 }
4435 idx = 0;
4436 }
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004437
Bram Moolenaarec2da362017-01-21 20:04:22 +01004438 --no_mapping;
4439 allow_keys = save_allow_keys;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004440 if (!save_paste)
4441 set_option_value((char_u *)"paste", FALSE, NULL, 0);
Bram Moolenaarec2da362017-01-21 20:04:22 +01004442
4443 return ret_char;
4444}
4445
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004446#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004447 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004448ins_tabline(int c)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004449{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004450 // We will be leaving the current window, unless closing another tab.
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004451 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
4452 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
4453 {
4454 undisplay_dollar();
4455 start_arrow(&curwin->w_cursor);
4456# ifdef FEAT_CINDENT
4457 can_cindent = TRUE;
4458# endif
4459 }
4460
4461 if (c == K_TABLINE)
4462 goto_tabpage(current_tab);
4463 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004464 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004465 handle_tabmenu();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004466 redraw_statuslines(); // will redraw the tabline when needed
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004467 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004468}
4469#endif
4470
4471#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004473ins_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474{
4475 pos_T tpos;
4476
4477 undisplay_dollar();
4478 tpos = curwin->w_cursor;
4479 if (gui_do_scroll())
4480 {
4481 start_arrow(&tpos);
4482# ifdef FEAT_CINDENT
4483 can_cindent = TRUE;
4484# endif
4485 }
4486}
4487
4488 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004489ins_horscroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490{
4491 pos_T tpos;
4492
4493 undisplay_dollar();
4494 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004495 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 {
4497 start_arrow(&tpos);
4498# ifdef FEAT_CINDENT
4499 can_cindent = TRUE;
4500# endif
4501 }
4502}
4503#endif
4504
4505 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004506ins_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507{
4508 pos_T tpos;
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004509 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510
4511#ifdef FEAT_FOLDING
4512 if ((fdo_flags & FDO_HOR) && KeyTyped)
4513 foldOpenCursor();
4514#endif
4515 undisplay_dollar();
4516 tpos = curwin->w_cursor;
4517 if (oneleft() == OK)
4518 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004519#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004520 // Only call start_arrow() when not busy with preediting, it will
4521 // break undo. K_LEFT is inserted in im_correct_cursor().
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02004522 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting())
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004523#endif
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004524 {
4525 start_arrow_with_change(&tpos, end_change);
4526 if (!end_change)
4527 AppendCharToRedobuff(K_LEFT);
4528 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004530 // If exit reversed string, position is fixed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
4532 revins_legal++;
4533 revins_chars++;
4534#endif
4535 }
4536
4537 /*
4538 * if 'whichwrap' set for cursor in insert mode may go to
4539 * previous line
4540 */
4541 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
4542 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004543 // always break undo when moving upwards/downwards, else undo may break
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 start_arrow(&tpos);
4545 --(curwin->w_cursor.lnum);
4546 coladvance((colnr_T)MAXCOL);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004547 curwin->w_set_curswant = TRUE; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 }
4549 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004550 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004551 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552}
4553
4554 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004555ins_home(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556{
4557 pos_T tpos;
4558
4559#ifdef FEAT_FOLDING
4560 if ((fdo_flags & FDO_HOR) && KeyTyped)
4561 foldOpenCursor();
4562#endif
4563 undisplay_dollar();
4564 tpos = curwin->w_cursor;
4565 if (c == K_C_HOME)
4566 curwin->w_cursor.lnum = 1;
4567 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 curwin->w_curswant = 0;
4570 start_arrow(&tpos);
4571}
4572
4573 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004574ins_end(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575{
4576 pos_T tpos;
4577
4578#ifdef FEAT_FOLDING
4579 if ((fdo_flags & FDO_HOR) && KeyTyped)
4580 foldOpenCursor();
4581#endif
4582 undisplay_dollar();
4583 tpos = curwin->w_cursor;
4584 if (c == K_C_END)
4585 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4586 coladvance((colnr_T)MAXCOL);
4587 curwin->w_curswant = MAXCOL;
4588
4589 start_arrow(&tpos);
4590}
4591
4592 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004593ins_s_left()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004595 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596#ifdef FEAT_FOLDING
4597 if ((fdo_flags & FDO_HOR) && KeyTyped)
4598 foldOpenCursor();
4599#endif
4600 undisplay_dollar();
4601 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
4602 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004603 start_arrow_with_change(&curwin->w_cursor, end_change);
4604 if (!end_change)
4605 AppendCharToRedobuff(K_S_LEFT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 (void)bck_word(1L, FALSE, FALSE);
4607 curwin->w_set_curswant = TRUE;
4608 }
4609 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004610 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004611 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612}
4613
4614 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004615ins_right(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004617 int end_change = dont_sync_undo == FALSE; // end undoable change
4618
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619#ifdef FEAT_FOLDING
4620 if ((fdo_flags & FDO_HOR) && KeyTyped)
4621 foldOpenCursor();
4622#endif
4623 undisplay_dollar();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004624 if (gchar_cursor() != NUL || virtual_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 {
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004626 start_arrow_with_change(&curwin->w_cursor, end_change);
4627 if (!end_change)
4628 AppendCharToRedobuff(K_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 if (virtual_active())
4631 oneright();
4632 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004635 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 ++curwin->w_cursor.col;
4638 }
4639
4640#ifdef FEAT_RIGHTLEFT
4641 revins_legal++;
4642 if (revins_chars)
4643 revins_chars--;
4644#endif
4645 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004646 // if 'whichwrap' set for cursor in insert mode, may move the
4647 // cursor to the next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 else if (vim_strchr(p_ww, ']') != NULL
4649 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4650 {
4651 start_arrow(&curwin->w_cursor);
4652 curwin->w_set_curswant = TRUE;
4653 ++curwin->w_cursor.lnum;
4654 curwin->w_cursor.col = 0;
4655 }
4656 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004657 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004658 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659}
4660
4661 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004662ins_s_right()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004664 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665#ifdef FEAT_FOLDING
4666 if ((fdo_flags & FDO_HOR) && KeyTyped)
4667 foldOpenCursor();
4668#endif
4669 undisplay_dollar();
4670 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4671 || gchar_cursor() != NUL)
4672 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004673 start_arrow_with_change(&curwin->w_cursor, end_change);
4674 if (!end_change)
4675 AppendCharToRedobuff(K_S_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 (void)fwd_word(1L, FALSE, 0);
4677 curwin->w_set_curswant = TRUE;
4678 }
4679 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004680 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004681 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682}
4683
4684 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004685ins_up(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004686 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687{
4688 pos_T tpos;
4689 linenr_T old_topline = curwin->w_topline;
4690#ifdef FEAT_DIFF
4691 int old_topfill = curwin->w_topfill;
4692#endif
4693
4694 undisplay_dollar();
4695 tpos = curwin->w_cursor;
4696 if (cursor_up(1L, TRUE) == OK)
4697 {
4698 if (startcol)
4699 coladvance(getvcol_nolist(&Insstart));
4700 if (old_topline != curwin->w_topline
4701#ifdef FEAT_DIFF
4702 || old_topfill != curwin->w_topfill
4703#endif
4704 )
4705 redraw_later(VALID);
4706 start_arrow(&tpos);
4707#ifdef FEAT_CINDENT
4708 can_cindent = TRUE;
4709#endif
4710 }
4711 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004712 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713}
4714
4715 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004716ins_pageup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717{
4718 pos_T tpos;
4719
4720 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004721
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004722 if (mod_mask & MOD_MASK_CTRL)
4723 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004724 // <C-PageUp>: tab page back
Bram Moolenaarbc444822006-10-17 11:37:50 +00004725 if (first_tabpage->tp_next != NULL)
4726 {
4727 start_arrow(&curwin->w_cursor);
4728 goto_tabpage(-1);
4729 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004730 return;
4731 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004732
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 tpos = curwin->w_cursor;
4734 if (onepage(BACKWARD, 1L) == OK)
4735 {
4736 start_arrow(&tpos);
4737#ifdef FEAT_CINDENT
4738 can_cindent = TRUE;
4739#endif
4740 }
4741 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004742 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743}
4744
4745 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004746ins_down(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004747 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748{
4749 pos_T tpos;
4750 linenr_T old_topline = curwin->w_topline;
4751#ifdef FEAT_DIFF
4752 int old_topfill = curwin->w_topfill;
4753#endif
4754
4755 undisplay_dollar();
4756 tpos = curwin->w_cursor;
4757 if (cursor_down(1L, TRUE) == OK)
4758 {
4759 if (startcol)
4760 coladvance(getvcol_nolist(&Insstart));
4761 if (old_topline != curwin->w_topline
4762#ifdef FEAT_DIFF
4763 || old_topfill != curwin->w_topfill
4764#endif
4765 )
4766 redraw_later(VALID);
4767 start_arrow(&tpos);
4768#ifdef FEAT_CINDENT
4769 can_cindent = TRUE;
4770#endif
4771 }
4772 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004773 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774}
4775
4776 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004777ins_pagedown(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778{
4779 pos_T tpos;
4780
4781 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004782
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004783 if (mod_mask & MOD_MASK_CTRL)
4784 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004785 // <C-PageDown>: tab page forward
Bram Moolenaarbc444822006-10-17 11:37:50 +00004786 if (first_tabpage->tp_next != NULL)
4787 {
4788 start_arrow(&curwin->w_cursor);
4789 goto_tabpage(0);
4790 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004791 return;
4792 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004793
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 tpos = curwin->w_cursor;
4795 if (onepage(FORWARD, 1L) == OK)
4796 {
4797 start_arrow(&tpos);
4798#ifdef FEAT_CINDENT
4799 can_cindent = TRUE;
4800#endif
4801 }
4802 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004803 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804}
4805
4806#ifdef FEAT_DND
4807 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004808ins_drop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809{
Bram Moolenaarc3516f72020-09-08 22:45:35 +02004810 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811}
4812#endif
4813
4814/*
4815 * Handle TAB in Insert or Replace mode.
4816 * Return TRUE when the TAB needs to be inserted like a normal character.
4817 */
4818 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004819ins_tab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820{
4821 int ind;
4822 int i;
4823 int temp;
4824
4825 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
4826 Insstart_blank_vcol = get_nolist_virtcol();
4827 if (echeck_abbr(TAB + ABBR_OFF))
4828 return FALSE;
4829
4830 ind = inindent(0);
4831#ifdef FEAT_CINDENT
4832 if (ind)
4833 can_cindent = FALSE;
4834#endif
4835
4836 /*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004837 * When nothing special, insert TAB like a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 */
4839 if (!curbuf->b_p_et
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004840#ifdef FEAT_VARTABS
4841 && !(p_sta && ind
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004842 // These five lines mean 'tabstop' != 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004843 && ((tabstop_count(curbuf->b_p_vts_array) > 1)
4844 || (tabstop_count(curbuf->b_p_vts_array) == 1
4845 && tabstop_first(curbuf->b_p_vts_array)
4846 != get_sw_value(curbuf))
4847 || (tabstop_count(curbuf->b_p_vts_array) == 0
4848 && curbuf->b_p_ts != get_sw_value(curbuf))))
4849 && tabstop_count(curbuf->b_p_vsts_array) == 0
4850#else
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004851 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004852#endif
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004853 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 return TRUE;
4855
4856 if (stop_arrow() == FAIL)
4857 return TRUE;
4858
4859 did_ai = FALSE;
4860#ifdef FEAT_SMARTINDENT
4861 did_si = FALSE;
4862 can_si = FALSE;
4863 can_si_back = FALSE;
4864#endif
4865 AppendToRedobuff((char_u *)"\t");
4866
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004867#ifdef FEAT_VARTABS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004868 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004869 {
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004870 temp = (int)get_sw_value(curbuf);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004871 temp -= get_nolist_virtcol() % temp;
4872 }
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004873 else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts != 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004874 // use 'softtabstop' when set
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004875 temp = tabstop_padding(get_nolist_virtcol(), get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004876 curbuf->b_p_vsts_array);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004877 else // otherwise use 'tabstop'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004878 temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts,
4879 curbuf->b_p_vts_array);
4880#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004881 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004882 temp = (int)get_sw_value(curbuf);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004883 else if (curbuf->b_p_sts != 0) // use 'softtabstop' when set
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004884 temp = (int)get_sts_value();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004885 else // otherwise use 'tabstop'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 temp = (int)curbuf->b_p_ts;
4887 temp -= get_nolist_virtcol() % temp;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004888#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889
4890 /*
4891 * Insert the first space with ins_char(). It will delete one char in
4892 * replace mode. Insert the rest with ins_str(); it will not delete any
4893 * chars. For VREPLACE mode, we use ins_char() for all characters.
4894 */
4895 ins_char(' ');
4896 while (--temp > 0)
4897 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 if (State & VREPLACE_FLAG)
4899 ins_char(' ');
4900 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 {
4902 ins_str((char_u *)" ");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004903 if (State & REPLACE_FLAG) // no char replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 replace_push(NUL);
4905 }
4906 }
4907
4908 /*
4909 * When 'expandtab' not set: Replace spaces by TABs where possible.
4910 */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004911#ifdef FEAT_VARTABS
4912 if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0
4913 || get_sts_value() > 0
4914 || (p_sta && ind)))
4915#else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004916 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 {
4919 char_u *ptr;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004920 char_u *saved_line = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 pos_T fpos;
4923 pos_T *cursor;
4924 colnr_T want_vcol, vcol;
4925 int change_col = -1;
4926 int save_list = curwin->w_p_list;
4927
4928 /*
4929 * Get the current line. For VREPLACE mode, don't make real changes
4930 * yet, just work on a copy of the line.
4931 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 if (State & VREPLACE_FLAG)
4933 {
4934 pos = curwin->w_cursor;
4935 cursor = &pos;
4936 saved_line = vim_strsave(ml_get_curline());
4937 if (saved_line == NULL)
4938 return FALSE;
4939 ptr = saved_line + pos.col;
4940 }
4941 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 {
4943 ptr = ml_get_cursor();
4944 cursor = &curwin->w_cursor;
4945 }
4946
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004947 // When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
4949 curwin->w_p_list = FALSE;
4950
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004951 // Find first white before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 fpos = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +01004953 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 {
4955 --fpos.col;
4956 --ptr;
4957 }
4958
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004959 // In Replace mode, don't change characters before the insert point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 if ((State & REPLACE_FLAG)
4961 && fpos.lnum == Insstart.lnum
4962 && fpos.col < Insstart.col)
4963 {
4964 ptr += Insstart.col - fpos.col;
4965 fpos.col = Insstart.col;
4966 }
4967
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004968 // compute virtual column numbers of first white and cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 getvcol(curwin, &fpos, &vcol, NULL, NULL);
4970 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
4971
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004972 // Use as many TABs as possible. Beware of 'breakindent', 'showbreak'
4973 // and 'linebreak' adding extra virtual columns.
Bram Moolenaar1c465442017-03-12 20:10:05 +01004974 while (VIM_ISWHITE(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02004976 i = lbr_chartabsize(NULL, (char_u *)"\t", vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 if (vcol + i > want_vcol)
4978 break;
4979 if (*ptr != TAB)
4980 {
4981 *ptr = TAB;
4982 if (change_col < 0)
4983 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004984 change_col = fpos.col; // Column of first change
4985 // May have to adjust Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
4987 Insstart.col = fpos.col;
4988 }
4989 }
4990 ++fpos.col;
4991 ++ptr;
4992 vcol += i;
4993 }
4994
4995 if (change_col >= 0)
4996 {
4997 int repl_off = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02004998 char_u *line = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005000 // Skip over the spaces we need.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 while (vcol < want_vcol && *ptr == ' ')
5002 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02005003 vcol += lbr_chartabsize(line, ptr, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 ++ptr;
5005 ++repl_off;
5006 }
5007 if (vcol > want_vcol)
5008 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005009 // Must have a char with 'showbreak' just before it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 --ptr;
5011 --repl_off;
5012 }
5013 fpos.col += repl_off;
5014
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005015 // Delete following spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 i = cursor->col - fpos.col;
5017 if (i > 0)
5018 {
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005019#ifdef FEAT_PROP_POPUP
5020 if (!(State & VREPLACE_FLAG))
5021 {
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005022 char_u *newp;
5023 int col;
5024
5025 newp = alloc(curbuf->b_ml.ml_line_len - i);
5026 if (newp == NULL)
5027 return FALSE;
5028
5029 col = ptr - curbuf->b_ml.ml_line_ptr;
5030 if (col > 0)
5031 mch_memmove(newp, ptr - col, col);
5032 mch_memmove(newp + col, ptr + i,
5033 curbuf->b_ml.ml_line_len - col - i);
5034
5035 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY)
5036 vim_free(curbuf->b_ml.ml_line_ptr);
5037 curbuf->b_ml.ml_line_ptr = newp;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005038 curbuf->b_ml.ml_line_len -= i;
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005039 curbuf->b_ml.ml_flags =
5040 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005041 }
5042 else
5043#endif
5044 STRMOVE(ptr, ptr + i);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005045 // correct replace stack.
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005046 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 for (temp = i; --temp >= 0; )
5048 replace_join(repl_off);
5049 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00005050#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005051 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00005052 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02005053 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00005054 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
5055 (char_u *)"\t", 1);
5056 }
5057#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 cursor->col -= i;
5059
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 /*
5061 * In VREPLACE mode, we haven't changed anything yet. Do it now by
5062 * backspacing over the changed spacing and then inserting the new
5063 * spacing.
5064 */
5065 if (State & VREPLACE_FLAG)
5066 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005067 // Backspace from real cursor to change_col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 backspace_until_column(change_col);
5069
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005070 // Insert each char in saved_line from changed_col to
5071 // ptr-cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 ins_bytes_len(saved_line + change_col,
5073 cursor->col - change_col);
5074 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 }
5076
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 if (State & VREPLACE_FLAG)
5078 vim_free(saved_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 curwin->w_p_list = save_list;
5080 }
5081
5082 return FALSE;
5083}
5084
5085/*
5086 * Handle CR or NL in insert mode.
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005087 * Return FAIL when out of memory or can't undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005089 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005090ins_eol(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091{
5092 int i;
5093
5094 if (echeck_abbr(c + ABBR_OFF))
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005095 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 if (stop_arrow() == FAIL)
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005097 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 undisplay_dollar();
5099
5100 /*
5101 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
5102 * character under the cursor. Only push a NUL on the replace stack,
5103 * nothing to put back when the NL is deleted.
5104 */
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005105 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 replace_push(NUL);
5107
5108 /*
5109 * In VREPLACE mode, a NL replaces the rest of the line, and starts
5110 * replacing the next line, so we push all of the characters left on the
5111 * line onto the replace stack. This is not done here though, it is done
5112 * in open_line().
5113 */
5114
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005115 // Put cursor on NUL if on the last char and coladd is 1 (happens after
5116 // CTRL-O).
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005117 if (virtual_active() && curwin->w_cursor.coladd > 0)
5118 coladvance(getviscol());
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005119
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005121 // NL in reverse insert will always start in the end of
5122 // current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 if (revins_on)
5124 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
5125#endif
5126
5127 AppendToRedobuff(NL_STR);
5128 i = open_line(FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02005129 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM : 0, old_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 old_indent = 0;
5131#ifdef FEAT_CINDENT
5132 can_cindent = TRUE;
5133#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005134#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005135 // When inserting a line the cursor line must never be in a closed fold.
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005136 foldOpenCursor();
5137#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005139 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140}
5141
5142#ifdef FEAT_DIGRAPHS
5143/*
5144 * Handle digraph in insert mode.
5145 * Returns character still to be inserted, or NUL when nothing remaining to be
5146 * done.
5147 */
5148 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005149ins_digraph(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150{
5151 int c;
5152 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005153 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154
5155 pc_status = PC_STATUS_UNSET;
5156 if (redrawing() && !char_avail())
5157 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005158 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005159 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160
5161 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005162 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163#ifdef FEAT_CMDL_INFO
5164 add_to_showcmd_c(Ctrl_K);
5165#endif
5166 }
5167
5168#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005169 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170#endif
5171
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005172 // don't map the digraph chars. This also prevents the
5173 // mode message to be deleted when ESC is hit
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 ++no_mapping;
5175 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005176 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 --no_mapping;
5178 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005179 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005180 // when the line fits in 'columns' the '?' is at the start of the next
5181 // line and will not be removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005182 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02005183
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005184 if (IS_SPECIAL(c) || mod_mask) // special key
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 {
5186#ifdef FEAT_CMDL_INFO
5187 clear_showcmd();
5188#endif
5189 insert_special(c, TRUE, FALSE);
5190 return NUL;
5191 }
5192 if (c != ESC)
5193 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005194 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 if (redrawing() && !char_avail())
5196 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005197 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005198 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199
5200 if (char2cells(c) == 1)
5201 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00005202 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005204 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 }
5206#ifdef FEAT_CMDL_INFO
5207 add_to_showcmd_c(c);
5208#endif
5209 }
5210 ++no_mapping;
5211 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005212 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 --no_mapping;
5214 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005215 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005216 // when the line fits in 'columns' the '?' is at the start of the
5217 // next line and will not be removed by a redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005218 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219 if (cc != ESC)
5220 {
5221 AppendToRedobuff((char_u *)CTRL_V_STR);
h-east29b85712021-07-26 21:54:04 +02005222 c = digraph_get(c, cc, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223#ifdef FEAT_CMDL_INFO
5224 clear_showcmd();
5225#endif
5226 return c;
5227 }
5228 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229#ifdef FEAT_CMDL_INFO
5230 clear_showcmd();
5231#endif
5232 return NUL;
5233}
5234#endif
5235
5236/*
5237 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
5238 * Returns the char to be inserted, or NUL if none found.
5239 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005240 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005241ins_copychar(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242{
5243 int c;
5244 int temp;
5245 char_u *ptr, *prev_ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005246 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247
5248 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
5249 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02005250 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 return NUL;
5252 }
5253
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005254 // try to advance to the cursor column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 temp = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005256 line = ptr = ml_get(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 prev_ptr = ptr;
5258 validate_virtcol();
5259 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
5260 {
5261 prev_ptr = ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005262 temp += lbr_chartabsize_adv(line, &ptr, (colnr_T)temp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 }
5264 if ((colnr_T)temp > curwin->w_virtcol)
5265 ptr = prev_ptr;
5266
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 c = (*mb_ptr2char)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 if (c == NUL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005269 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 return c;
5271}
5272
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005273/*
5274 * CTRL-Y or CTRL-E typed in Insert mode.
5275 */
5276 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005277ins_ctrl_ey(int tc)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005278{
5279 int c = tc;
5280
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005281 if (ctrl_x_mode_scroll())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005282 {
5283 if (c == Ctrl_Y)
5284 scrolldown_clamp();
5285 else
5286 scrollup_clamp();
5287 redraw_later(VALID);
5288 }
5289 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005290 {
5291 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
5292 if (c != NUL)
5293 {
5294 long tw_save;
5295
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005296 // The character must be taken literally, insert like it
5297 // was typed after a CTRL-V, and pretend 'textwidth'
5298 // wasn't set. Digits, 'o' and 'x' are special after a
5299 // CTRL-V, don't use it for these.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005300 if (c < 256 && !isalnum(c))
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005301 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005302 tw_save = curbuf->b_p_tw;
5303 curbuf->b_p_tw = -1;
5304 insert_special(c, TRUE, FALSE);
5305 curbuf->b_p_tw = tw_save;
5306#ifdef FEAT_RIGHTLEFT
5307 revins_chars++;
5308 revins_legal++;
5309#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005310 c = Ctrl_V; // pretend CTRL-V is last character
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005311 auto_format(FALSE, TRUE);
5312 }
5313 }
5314 return c;
5315}
5316
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317/*
5318 * Get the value that w_virtcol would have when 'list' is off.
5319 * Unless 'cpo' contains the 'L' flag.
5320 */
Bram Moolenaarf9514162018-11-22 03:08:29 +01005321 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005322get_nolist_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323{
Bram Moolenaarf9514162018-11-22 03:08:29 +01005324 // check validity of cursor in current buffer
5325 if (curwin->w_buffer == NULL
5326 || curwin->w_buffer->b_ml.ml_mfp == NULL
5327 || curwin->w_cursor.lnum > curwin->w_buffer->b_ml.ml_line_count)
5328 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
5330 return getvcol_nolist(&curwin->w_cursor);
5331 validate_virtcol();
5332 return curwin->w_virtcol;
5333}
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005334
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005335#if defined(FEAT_EVAL)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005336/*
5337 * Handle the InsertCharPre autocommand.
5338 * "c" is the character that was typed.
5339 * Return a pointer to allocated memory with the replacement string.
5340 * Return NULL to continue inserting "c".
5341 */
5342 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005343do_insert_char_pre(int c)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005344{
Bram Moolenaar704984a2012-06-01 14:57:51 +02005345 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +02005346 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005347 int save_State = State;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005348
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005349 // Return quickly when there is nothing to do.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005350 if (!has_insertcharpre())
5351 return NULL;
5352
Bram Moolenaar704984a2012-06-01 14:57:51 +02005353 if (has_mbyte)
5354 buf[(*mb_char2bytes)(c, buf)] = NUL;
5355 else
Bram Moolenaar704984a2012-06-01 14:57:51 +02005356 {
5357 buf[0] = c;
5358 buf[1] = NUL;
5359 }
5360
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005361 // Lock the text to avoid weird things from happening.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005362 ++textwinlock;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005363 set_vim_var_string(VV_CHAR, buf, -1); // set v:char
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005364
Bram Moolenaar704984a2012-06-01 14:57:51 +02005365 res = NULL;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005366 if (ins_apply_autocmds(EVENT_INSERTCHARPRE))
Bram Moolenaar704984a2012-06-01 14:57:51 +02005367 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005368 // Get the value of v:char. It may be empty or more than one
5369 // character. Only use it when changed, otherwise continue with the
5370 // original character to avoid breaking autoindent.
Bram Moolenaar704984a2012-06-01 14:57:51 +02005371 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
5372 res = vim_strsave(get_vim_var_str(VV_CHAR));
5373 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005374
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005375 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005376 --textwinlock;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005377
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005378 // Restore the State, it may have been changed.
5379 State = save_State;
5380
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005381 return res;
5382}
5383#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005384
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005385#if defined(FEAT_CINDENT) || defined(PROTO)
5386 int
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005387get_can_cindent(void)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005388{
5389 return can_cindent;
5390}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005391
5392 void
5393set_can_cindent(int val)
5394{
5395 can_cindent = val;
5396}
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005397#endif
5398
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005399/*
5400 * Trigger "event" and take care of fixing undo.
5401 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005402 int
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005403ins_apply_autocmds(event_T event)
5404{
5405 varnumber_T tick = CHANGEDTICK(curbuf);
5406 int r;
5407
5408 r = apply_autocmds(event, NULL, NULL, FALSE, curbuf);
5409
5410 // If u_savesub() was called then we are not prepared to start
5411 // a new line. Call u_save() with no contents to fix that.
Bram Moolenaardb934952020-04-27 20:18:31 +02005412 // Except when leaving Insert mode.
5413 if (event != EVENT_INSERTLEAVE && tick != CHANGEDTICK(curbuf))
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005414 u_save(curwin->w_cursor.lnum, (linenr_T)(curwin->w_cursor.lnum + 1));
5415
5416 return r;
5417}