blob: bc74f44bb4774d6f058f7bd89de7a5e963179f86 [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 Moolenaarf2732452018-06-03 14:47:35 +020027#ifdef FEAT_JOB_CHANNEL
28static void init_prompt(int cmdchar_todo);
29#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010030static void insert_special(int, int, int);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010031static void redo_literal(int c);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static void start_arrow_common(pos_T *end_insert_pos, int change);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +000033#ifdef FEAT_SPELL
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010034static void check_spell_redraw(void);
Bram Moolenaar217ad922005-03-20 22:37:15 +000035#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010036static void stop_insert(pos_T *end_insert_pos, int esc, int nomove);
37static int echeck_abbr(int);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038static void mb_replace_pop_ins(int cc);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static void replace_flush(void);
40static void replace_do_bs(int limit_col);
41static int del_char_after_col(int limit_col);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010042static void ins_reg(void);
43static void ins_ctrl_g(void);
44static void ins_ctrl_hat(void);
45static int ins_esc(long *count, int cmdchar, int nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#ifdef FEAT_RIGHTLEFT
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010047static void ins_ctrl_(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000048#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010049static int ins_start_select(int c);
50static void ins_insert(int replaceState);
51static void ins_ctrl_o(void);
52static void ins_shift(int c, int lastc);
53static void ins_del(void);
54static int ins_bs(int c, int mode, int *inserted_space_p);
Bram Moolenaara23ccb82006-02-27 00:08:02 +000055#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010056static void ins_tabline(int c);
Bram Moolenaara23ccb82006-02-27 00:08:02 +000057#endif
Bram Moolenaar75bf3d22019-03-26 22:46:05 +010058static void ins_left(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010059static void ins_home(int c);
60static void ins_end(int c);
61static void ins_s_left(void);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +010062static void ins_right(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010063static void ins_s_right(void);
64static void ins_up(int startcol);
65static void ins_pageup(void);
66static void ins_down(int startcol);
67static void ins_pagedown(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000068#ifdef FEAT_DND
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010069static void ins_drop(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000070#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010071static int ins_tab(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000072#ifdef FEAT_DIGRAPHS
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010073static int ins_digraph(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000074#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010075static int ins_ctrl_ey(int tc);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +010076#if defined(FEAT_EVAL)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010077static char_u *do_insert_char_pre(int c);
Bram Moolenaarf5876f12012-02-29 18:22:08 +010078#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000079
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010080static colnr_T Insstart_textlen; // length of line when insert started
81static colnr_T Insstart_blank_vcol; // vcol for first inserted blank
82static int update_Insstart_orig = TRUE; // set Insstart_orig to Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +000083
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010084static char_u *last_insert = NULL; // the text of the previous insert,
85 // K_SPECIAL and CSI are escaped
86static int last_insert_skip; // nr of chars in front of previous insert
87static int new_insert_skip; // nr of chars in front of current insert
88static int did_restart_edit; // "restart_edit" when calling edit()
Bram Moolenaar071d4272004-06-13 20:20:40 +000089
90#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010091static int can_cindent; // may do cindenting on this line
Bram Moolenaar071d4272004-06-13 20:20:40 +000092#endif
93
Bram Moolenaar071d4272004-06-13 20:20:40 +000094#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010095static int revins_on; // reverse insert mode on
96static int revins_chars; // how much to skip after edit
97static int revins_legal; // was the last char 'legal'?
98static int revins_scol; // start column of revins session
Bram Moolenaar071d4272004-06-13 20:20:40 +000099#endif
100
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100101static int ins_need_undo; // call u_save() before inserting a
102 // char. Set when edit() is called.
103 // after that arrow_used is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104
Bram Moolenaar75bf3d22019-03-26 22:46:05 +0100105static int dont_sync_undo = FALSE; // CTRL-G U prevents syncing undo for
106 // the next left/right cursor key
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
108/*
109 * edit(): Start inserting text.
110 *
111 * "cmdchar" can be:
112 * 'i' normal insert command
113 * 'a' normal append command
Bram Moolenaarec2da362017-01-21 20:04:22 +0100114 * K_PS bracketed paste
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115 * 'R' replace command
116 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo,
117 * but still only one <CR> is inserted. The <Esc> is not used for redo.
118 * 'g' "gI" command.
119 * 'V' "gR" command for Virtual Replace mode.
120 * 'v' "gr" command for single character Virtual Replace mode.
121 *
122 * This function is not called recursively. For CTRL-O commands, it returns
123 * and lets the caller handle the Normal-mode command.
124 *
125 * Return TRUE if a CTRL-O command caused the return (insert mode pending).
126 */
127 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100128edit(
129 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100130 int startln, // if set, insert at start of line
Bram Moolenaar7454a062016-01-30 15:14:10 +0100131 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132{
133 int c = 0;
134 char_u *ptr;
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100135 int lastc = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000136 int mincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 static linenr_T o_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138 int i;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100139 int did_backspace = TRUE; // previous char was backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100141 int line_is_white = FALSE; // line is empty before insert
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100143 linenr_T old_topline = 0; // topline before insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144#ifdef FEAT_DIFF
145 int old_topfill = -1;
146#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100147 int inserted_space = FALSE; // just inserted a space
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 int replaceState = REPLACE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100149 int nomove = FALSE; // don't move cursor on return
Bram Moolenaarf2732452018-06-03 14:47:35 +0200150#ifdef FEAT_JOB_CHANNEL
151 int cmdchar_todo = cmdchar;
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 Moolenaarf9e3e092019-01-13 23:38:42 +0100168 emsg(_(e_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 Moolenaar5d18efe2019-12-01 21:11:22 +0100202 // Make sure the cursor didn't move. Do call check_cursor_col() in
203 // case the text was modified. Since Insert mode was not started yet
204 // a call to check_cursor_col() may move the cursor, especially with
205 // the "A" command, thus set State to avoid that. Also check that the
206 // line number is still valid (lines may have been deleted).
207 // Do not restore if v:char was set to a non-empty string.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100208 if (!EQUAL_POS(curwin->w_cursor, save_cursor)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100209#ifdef FEAT_EVAL
Bram Moolenaar097c9922013-05-19 21:15:15 +0200210 && *get_vim_var_str(VV_CHAR) == NUL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100211#endif
Bram Moolenaar097c9922013-05-19 21:15:15 +0200212 && save_cursor.lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100213 {
214 int save_state = State;
215
216 curwin->w_cursor = save_cursor;
217 State = INSERT;
218 check_cursor_col();
219 State = save_state;
220 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000221 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000222
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200223#ifdef FEAT_CONCEAL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100224 // Check if the cursor line needs redrawing before changing State. If
225 // 'concealcursor' is "n" it needs to be redrawn without concealing.
Bram Moolenaarb9464822018-05-10 15:09:49 +0200226 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200227#endif
228
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 /*
230 * When doing a paste with the middle mouse button, Insstart is set to
231 * where the paste started.
232 */
233 if (where_paste_started.lnum != 0)
234 Insstart = where_paste_started;
235 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 {
237 Insstart = curwin->w_cursor;
238 if (startln)
239 Insstart.col = 0;
240 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000241 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 Insstart_blank_vcol = MAXCOL;
243 if (!did_ai)
244 ai_col = 0;
245
246 if (cmdchar != NUL && restart_edit == 0)
247 {
248 ResetRedobuff();
249 AppendNumberToRedobuff(count);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250 if (cmdchar == 'V' || cmdchar == 'v')
251 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100252 // "gR" or "gr" command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 AppendCharToRedobuff('g');
254 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
255 }
256 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 {
Bram Moolenaar076e5022017-01-24 18:58:30 +0100258 if (cmdchar == K_PS)
259 AppendCharToRedobuff('a');
260 else
261 AppendCharToRedobuff(cmdchar);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100262 if (cmdchar == 'g') // "gI" command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 AppendCharToRedobuff('I');
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100264 else if (cmdchar == 'r') // "r<CR>" command
265 count = 1; // insert only one <CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 }
267 }
268
269 if (cmdchar == 'R')
270 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 State = REPLACE;
272 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 else if (cmdchar == 'V' || cmdchar == 'v')
274 {
275 State = VREPLACE;
276 replaceState = VREPLACE;
277 orig_line_count = curbuf->b_ml.ml_line_count;
278 vr_lines_changed = 1;
279 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 else
281 State = INSERT;
282
283 stop_insert_mode = FALSE;
284
285 /*
286 * Need to recompute the cursor position, it might move when the cursor is
287 * on a TAB or special character.
288 */
289 curs_columns(TRUE);
290
291 /*
292 * Enable langmap or IME, indicated by 'iminsert'.
293 * Note that IME may enabled/disabled without us noticing here, thus the
294 * 'iminsert' value may not reflect what is actually used. It is updated
295 * when hitting <Esc>.
296 */
297 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
298 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100299#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
301#endif
302
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304#ifdef FEAT_CMDL_INFO
305 clear_showcmd();
306#endif
307#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100308 // there is no reverse replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 revins_on = (State == INSERT && p_ri);
310 if (revins_on)
311 undisplay_dollar();
312 revins_chars = 0;
313 revins_legal = 0;
314 revins_scol = -1;
315#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100316 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100317 {
318 // Disable bracketed paste mode, we won't recognize the escape
319 // sequences.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100320 out_str(T_BD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100322 // Disable modifyOtherKeys, keys with modifiers would cause exiting
323 // Insert mode.
324 out_str(T_CTE);
325 }
326
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 /*
328 * Handle restarting Insert mode.
Bram Moolenaara6c07602017-03-05 21:18:27 +0100329 * Don't do this for "CTRL-O ." (repeat an insert): In that case we get
330 * here with something in the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 */
332 if (restart_edit != 0 && stuff_empty())
333 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334 /*
335 * After a paste we consider text typed to be part of the insert for
336 * the pasted text. You can backspace over the pasted text too.
337 */
338 if (where_paste_started.lnum)
339 arrow_used = FALSE;
340 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 arrow_used = TRUE;
342 restart_edit = 0;
343
344 /*
345 * If the cursor was after the end-of-line before the CTRL-O and it is
346 * now at the end-of-line, put it after the end-of-line (this is not
347 * correct in very rare cases).
348 * Also do this if curswant is greater than the current virtual
349 * column. Eg after "^O$" or "^O80|".
350 */
351 validate_virtcol();
352 update_curswant();
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000353 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 || curwin->w_curswant > curwin->w_virtcol)
355 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
356 {
357 if (ptr[1] == NUL)
358 ++curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 else if (has_mbyte)
360 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000361 i = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 if (ptr[i] == NUL)
363 curwin->w_cursor.col += i;
364 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000366 ins_at_eol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 }
368 else
369 arrow_used = FALSE;
370
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100371 // we are in insert mode now, don't need to start it anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 need_start_insertmode = FALSE;
373
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100374 // Need to save the line for undo before inserting the first char.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 ins_need_undo = TRUE;
376
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 where_paste_started.lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378#ifdef FEAT_CINDENT
379 can_cindent = TRUE;
380#endif
381#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100382 // The cursor line is not in a closed fold, unless 'insertmode' is set or
383 // restarting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 if (!p_im && did_restart_edit == 0)
385 foldOpenCursor();
386#endif
387
388 /*
389 * If 'showmode' is set, show the current (insert/replace/..) mode.
390 * A warning message for changing a readonly file is given here, before
391 * actually changing anything. It's put after the mode, if any.
392 */
393 i = 0;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000394 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 i = showmode();
396
397 if (!p_im && did_restart_edit == 0)
Bram Moolenaar21af89e2008-01-02 21:09:33 +0000398 change_warning(i == 0 ? 0 : i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399
400#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100401 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402#endif
403#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100404 do_digraph(-1); // clear digraphs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405#endif
406
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000407 /*
408 * Get the current length of the redo buffer, those characters have to be
409 * skipped if we want to get to the inserted characters.
410 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 ptr = get_inserted();
412 if (ptr == NULL)
413 new_insert_skip = 0;
414 else
415 {
416 new_insert_skip = (int)STRLEN(ptr);
417 vim_free(ptr);
418 }
419
420 old_indent = 0;
421
422 /*
423 * Main loop in Insert mode: repeat until Insert mode is left.
424 */
425 for (;;)
426 {
427#ifdef FEAT_RIGHTLEFT
428 if (!revins_legal)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100429 revins_scol = -1; // reset on illegal motions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430 else
431 revins_legal = 0;
432#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100433 if (arrow_used) // don't repeat insert when arrow key used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 count = 0;
435
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100436 if (update_Insstart_orig)
437 Insstart_orig = Insstart;
438
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200439 if (stop_insert_mode && !pum_visible())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100441 // ":stopinsert" used or 'insertmode' reset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 count = 0;
443 goto doESCkey;
444 }
445
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100446 // set curwin->w_curswant for next K_DOWN or K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 if (!arrow_used)
448 curwin->w_set_curswant = TRUE;
449
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100450 // If there is no typeahead may check for timestamps (e.g., for when a
451 // menu invoked a shell command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 if (stuff_empty())
453 {
454 did_check_timestamps = FALSE;
455 if (need_check_timestamps)
456 check_timestamps(FALSE);
457 }
458
459 /*
460 * When emsg() was called msg_scroll will have been set.
461 */
462 msg_scroll = FALSE;
463
464#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100465 // When 'mousefocus' is set a mouse movement may have taken us to
466 // another window. "need_mouse_correct" may then be set because of an
467 // autocommand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 if (need_mouse_correct)
469 gui_mouse_correct();
470#endif
471
472#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100473 // Open fold at the cursor line, according to 'foldopen'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 if (fdo_flags & FDO_INSERT)
475 foldOpenCursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100476 // Close folds where the cursor isn't, according to 'foldclose'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 if (!char_avail())
478 foldCheckClose();
479#endif
480
Bram Moolenaarf2732452018-06-03 14:47:35 +0200481#ifdef FEAT_JOB_CHANNEL
482 if (bt_prompt(curbuf))
483 {
484 init_prompt(cmdchar_todo);
485 cmdchar_todo = NUL;
486 }
487#endif
488
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 /*
490 * If we inserted a character at the last position of the last line in
491 * the window, scroll the window one line up. This avoids an extra
492 * redraw.
493 * This is detected when the cursor column is smaller after inserting
494 * something.
495 * Don't do this when the topline changed already, it has
496 * already been adjusted (by insertchar() calling open_line())).
497 */
498 if (curbuf->b_mod_set
499 && curwin->w_p_wrap
500 && !did_backspace
501 && curwin->w_topline == old_topline
502#ifdef FEAT_DIFF
503 && curwin->w_topfill == old_topfill
504#endif
505 )
506 {
507 mincol = curwin->w_wcol;
508 validate_cursor_col();
509
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200510 if (
511#ifdef FEAT_VARTABS
512 (int)curwin->w_wcol < mincol - tabstop_at(
513 get_nolist_virtcol(), curbuf->b_p_ts,
514 curbuf->b_p_vts_array)
515#else
516 (int)curwin->w_wcol < mincol - curbuf->b_p_ts
517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 && curwin->w_wrow == W_WINROW(curwin)
Bram Moolenaar375e3392019-01-31 18:26:10 +0100519 + curwin->w_height - 1 - get_scrolloff_value()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 && (curwin->w_cursor.lnum != curwin->w_topline
521#ifdef FEAT_DIFF
522 || curwin->w_topfill > 0
523#endif
524 ))
525 {
526#ifdef FEAT_DIFF
527 if (curwin->w_topfill > 0)
528 --curwin->w_topfill;
529 else
530#endif
531#ifdef FEAT_FOLDING
532 if (hasFolding(curwin->w_topline, NULL, &old_topline))
533 set_topline(curwin, old_topline + 1);
534 else
535#endif
536 set_topline(curwin, curwin->w_topline + 1);
537 }
538 }
539
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100540 // May need to adjust w_topline to show the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 update_topline();
542
543 did_backspace = FALSE;
544
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100545 validate_cursor(); // may set must_redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546
547 /*
548 * Redraw the display when no characters are waiting.
549 * Also shows mode, ruler and positions cursor.
550 */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000551 ins_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 if (curwin->w_p_scb)
554 do_check_scrollbind(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555
Bram Moolenaar860cae12010-06-05 23:22:07 +0200556 if (curwin->w_p_crb)
557 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 update_curswant();
559 old_topline = curwin->w_topline;
560#ifdef FEAT_DIFF
561 old_topfill = curwin->w_topfill;
562#endif
563
564#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100565 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566#endif
567
568 /*
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100569 * Get a character for Insert mode. Ignore K_IGNORE and K_NOP.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 */
Bram Moolenaar6c5bdb72015-03-13 13:24:23 +0100571 if (c != K_CURSORHOLD)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100572 lastc = c; // remember the previous char for CTRL-D
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200573
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100574 // After using CTRL-G U the next cursor key will not break undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200575 if (dont_sync_undo == MAYBE)
576 dont_sync_undo = TRUE;
577 else
578 dont_sync_undo = FALSE;
Bram Moolenaarec2da362017-01-21 20:04:22 +0100579 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100580 // Got here from normal mode when bracketed paste started.
Bram Moolenaarec2da362017-01-21 20:04:22 +0100581 c = K_PS;
582 else
583 do
584 {
585 c = safe_vgetc();
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200586
587 if (stop_insert_mode)
588 {
589 // Insert mode ended, possibly from a callback.
590 count = 0;
591 nomove = TRUE;
592 goto doESCkey;
593 }
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100594 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100596 // Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V.
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000597 did_cursorhold = TRUE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000598
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599#ifdef FEAT_RIGHTLEFT
600 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100601 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000604 /*
605 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000606 * and the cursor is still in the completed word. Only when there is
607 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000608 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100609 if (ins_compl_active()
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000610 && pum_wanted()
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100611 && curwin->w_cursor.col >= ins_compl_col()
612 && ins_compl_has_shown_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000613 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100614 // BS: Delete one character from "compl_leader".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000615 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100616 && curwin->w_cursor.col > ins_compl_col()
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000617 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000618 continue;
619
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100620 // When no match was selected or it was edited.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100621 if (!ins_compl_used_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000622 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100623 // CTRL-L: Add one character from the current match to
624 // "compl_leader". Except when at the original match and
625 // there is nothing to add, CTRL-L works like CTRL-P then.
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000626 if (c == Ctrl_L
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100627 && (!ctrl_x_mode_line_or_eval()
628 || ins_compl_long_shown_match()))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000629 {
630 ins_compl_addfrommatch();
631 continue;
632 }
633
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100634 // A non-white character that fits in with the current
635 // completion: Add to "compl_leader".
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000636 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000637 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100638#if defined(FEAT_EVAL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100639 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100640 char_u *str = do_insert_char_pre(c);
641 char_u *p;
642
643 if (str != NULL)
644 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100645 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100646 ins_compl_addleader(PTR2CHAR(p));
647 vim_free(str);
648 }
649 else
650#endif
651 ins_compl_addleader(c);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000652 continue;
653 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000654
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100655 // Pressing CTRL-Y selects the current match. When
656 // ins_compl_enter_selects() is set the Enter key does the
657 // same.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100658 if ((c == Ctrl_Y || (ins_compl_enter_selects()
Bram Moolenaarcbd3bd62016-10-17 20:47:02 +0200659 && (c == CAR || c == K_KENTER || c == NL)))
660 && stop_arrow() == OK)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000661 {
662 ins_compl_delete();
Bram Moolenaar472e8592016-10-15 17:06:47 +0200663 ins_compl_insert(FALSE);
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000664 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000665 }
666 }
667
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100668 // Prepare for or stop CTRL-X mode. This doesn't do completion, but
669 // it does fix up the text when finishing completion.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100670 ins_compl_init_get_longest();
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000671 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000672 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100674 // CTRL-\ CTRL-N goes to Normal mode,
675 // CTRL-\ CTRL-G goes to mode selected with 'insertmode',
676 // CTRL-\ CTRL-O is like CTRL-O but without moving the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 if (c == Ctrl_BSL)
678 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100679 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +0000680 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 ++no_mapping;
682 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000683 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 --no_mapping;
685 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000686 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100688 // it's something else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 vungetc(c);
690 c = Ctrl_BSL;
691 }
692 else if (c == Ctrl_G && p_im)
693 continue;
694 else
695 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000696 if (c == Ctrl_O)
697 {
698 ins_ctrl_o();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100699 ins_at_eol = FALSE; // cursor keeps its column
Bram Moolenaar488c6512005-08-11 20:09:58 +0000700 nomove = TRUE;
701 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 count = 0;
703 goto doESCkey;
704 }
705 }
706
707#ifdef FEAT_DIGRAPHS
708 c = do_digraph(c);
709#endif
710
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100711 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode_cmdline())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 if (c == Ctrl_V || c == Ctrl_Q)
714 {
715 ins_ctrl_v();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100716 c = Ctrl_V; // pretend CTRL-V is last typed character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 continue;
718 }
719
720#ifdef FEAT_CINDENT
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200721 if (cindent_on() && ctrl_x_mode_none())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100723 // A key name preceded by a bang means this key is not to be
724 // inserted. Skip ahead to the re-indenting below.
725 // A key name preceded by a star means that indenting has to be
726 // done before inserting the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 line_is_white = inindent(0);
728 if (in_cinkeys(c, '!', line_is_white))
729 goto force_cindent;
730 if (can_cindent && in_cinkeys(c, '*', line_is_white)
731 && stop_arrow() == OK)
732 do_c_expr_indent();
733 }
734#endif
735
736#ifdef FEAT_RIGHTLEFT
737 if (curwin->w_p_rl)
738 switch (c)
739 {
740 case K_LEFT: c = K_RIGHT; break;
741 case K_S_LEFT: c = K_S_RIGHT; break;
742 case K_C_LEFT: c = K_C_RIGHT; break;
743 case K_RIGHT: c = K_LEFT; break;
744 case K_S_RIGHT: c = K_S_LEFT; break;
745 case K_C_RIGHT: c = K_C_LEFT; break;
746 }
747#endif
748
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 /*
750 * If 'keymodel' contains "startsel", may start selection. If it
751 * does, a CTRL-O and c will be stuffed, we need to get these
752 * characters.
753 */
754 if (ins_start_select(c))
755 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756
757 /*
758 * The big switch to handle a character in insert mode.
759 */
760 switch (c)
761 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100762 case ESC: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 if (echeck_abbr(ESC + ABBR_OFF))
764 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100765 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100767 case Ctrl_C: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768#ifdef FEAT_CMDWIN
769 if (c == Ctrl_C && cmdwin_type != 0)
770 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100771 // Close the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 cmdwin_result = K_IGNORE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100773 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000774 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 goto doESCkey;
776 }
777#endif
Bram Moolenaar0e5979a2018-06-17 19:36:33 +0200778#ifdef FEAT_JOB_CHANNEL
779 if (c == Ctrl_C && bt_prompt(curbuf))
780 {
781 if (invoke_prompt_interrupt())
782 {
783 if (!bt_prompt(curbuf))
784 // buffer changed to a non-prompt buffer, get out of
785 // Insert mode
786 goto doESCkey;
787 break;
788 }
789 }
790#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791
792#ifdef UNIX
793do_intr:
794#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100795 // when 'insertmode' set, and not halfway a mapping, don't leave
796 // Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 if (goto_im())
798 {
799 if (got_int)
800 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100801 (void)vgetc(); // flush all buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 got_int = FALSE;
803 }
804 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200805 vim_beep(BO_IM);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 break;
807 }
808doESCkey:
809 /*
810 * This is the ONLY return from edit()!
811 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100812 // Always update o_lnum, so that a "CTRL-O ." that adds a line
813 // still puts the cursor back after the inserted text.
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000814 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 o_lnum = curwin->w_cursor.lnum;
816
Bram Moolenaar488c6512005-08-11 20:09:58 +0000817 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +0000818 {
Bram Moolenaar4dbc2622018-11-02 11:59:15 +0100819 // When CTRL-C was typed got_int will be set, with the result
820 // that the autocommands won't be executed. When mapped got_int
821 // is not set, but let's keep the behavior the same.
822 if (cmdchar != 'r' && cmdchar != 'v' && c != Ctrl_C)
Bram Moolenaar9fa95062018-08-08 22:08:32 +0200823 ins_apply_autocmds(EVENT_INSERTLEAVE);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +0000824 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000826 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 continue;
828
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100829 case Ctrl_Z: // suspend when 'insertmode' set
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000830 if (!p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100831 goto normalchar; // insert CTRL-Z as normal char
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +0100832 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar74a47162017-02-26 19:09:05 +0100833#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100834 ui_cursor_shape(); // may need to update cursor shape
Bram Moolenaar74a47162017-02-26 19:09:05 +0100835#endif
836 continue;
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000837
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100838 case Ctrl_O: // execute one command
Bram Moolenaare344bea2005-09-01 20:46:49 +0000839#ifdef FEAT_COMPL_FUNC
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100840 if (ctrl_x_mode_omni())
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000841 goto docomplete;
842#endif
843 if (echeck_abbr(Ctrl_O + ABBR_OFF))
844 break;
845 ins_ctrl_o();
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000846
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100847 // don't move the cursor left when 'virtualedit' has "onemore".
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000848 if (ve_flags & VE_ONEMORE)
849 {
850 ins_at_eol = FALSE;
851 nomove = TRUE;
852 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000853 count = 0;
854 goto doESCkey;
855
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100856 case K_INS: // toggle insert/replace mode
Bram Moolenaar572cb562005-08-05 21:35:02 +0000857 case K_KINS:
858 ins_insert(replaceState);
859 break;
860
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100861 case K_SELECT: // end of Select mode mapping - ignore
Bram Moolenaar572cb562005-08-05 21:35:02 +0000862 break;
863
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100864 case K_HELP: // Help key works like <ESC> <Help>
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000865 case K_F1:
866 case K_XF1:
867 stuffcharReadbuff(K_HELP);
868 if (p_im)
869 need_start_insertmode = TRUE;
870 goto doESCkey;
871
872#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100873 case K_F21: // NetBeans command
874 ++no_mapping; // don't map the next key hits
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000875 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000876 --no_mapping;
877 netbeans_keycommand(i);
878 break;
879#endif
880
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100881 case K_ZERO: // Insert the previously inserted text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 case NUL:
883 case Ctrl_A:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100884 // For ^@ the trailing ESC will end the insert, unless there is an
885 // error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
887 && c != Ctrl_A && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100888 goto doESCkey; // quit insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 inserted_space = FALSE;
890 break;
891
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100892 case Ctrl_R: // insert the contents of a register
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 ins_reg();
894 auto_format(FALSE, TRUE);
895 inserted_space = FALSE;
896 break;
897
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100898 case Ctrl_G: // commands starting with CTRL-G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 ins_ctrl_g();
900 break;
901
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100902 case Ctrl_HAT: // switch input mode and/or langmap
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000903 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 break;
905
906#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100907 case Ctrl__: // switch between languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 if (!p_ari)
909 goto normalchar;
910 ins_ctrl_();
911 break;
912#endif
913
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100914 case Ctrl_D: // Make indent one shiftwidth smaller.
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200915#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100916 if (ctrl_x_mode_path_defines())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 goto docomplete;
918#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100919 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100921 case Ctrl_T: // Make indent one shiftwidth greater.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100922 if (c == Ctrl_T && ctrl_x_mode_thesaurus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000924 if (has_compl_option(FALSE))
925 goto docomplete;
926 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 ins_shift(c, lastc);
930 auto_format(FALSE, TRUE);
931 inserted_space = FALSE;
932 break;
933
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100934 case K_DEL: // delete character under the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 case K_KDEL:
936 ins_del();
937 auto_format(FALSE, TRUE);
938 break;
939
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100940 case K_BS: // delete character before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 case Ctrl_H:
942 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
943 auto_format(FALSE, TRUE);
944 break;
945
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100946 case Ctrl_W: // delete word before the cursor
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200947#ifdef FEAT_JOB_CHANNEL
948 if (bt_prompt(curbuf) && (mod_mask & MOD_MASK_SHIFT) == 0)
949 {
950 // In a prompt window CTRL-W is used for window commands.
951 // Use Shift-CTRL-W to delete a word.
952 stuffcharReadbuff(Ctrl_W);
Bram Moolenaar942b4542018-06-17 16:23:34 +0200953 restart_edit = 'A';
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200954 nomove = TRUE;
955 count = 0;
956 goto doESCkey;
957 }
958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
960 auto_format(FALSE, TRUE);
961 break;
962
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100963 case Ctrl_U: // delete all inserted text in current line
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000964# ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100965 // CTRL-X CTRL-U completes with 'completefunc'.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100966 if (ctrl_x_mode_function())
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000967 goto docomplete;
968# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
970 auto_format(FALSE, TRUE);
971 inserted_space = FALSE;
972 break;
973
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100974 case K_LEFTMOUSE: // mouse keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 case K_LEFTMOUSE_NM:
976 case K_LEFTDRAG:
977 case K_LEFTRELEASE:
978 case K_LEFTRELEASE_NM:
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100979 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 case K_MIDDLEMOUSE:
981 case K_MIDDLEDRAG:
982 case K_MIDDLERELEASE:
983 case K_RIGHTMOUSE:
984 case K_RIGHTDRAG:
985 case K_RIGHTRELEASE:
986 case K_X1MOUSE:
987 case K_X1DRAG:
988 case K_X1RELEASE:
989 case K_X2MOUSE:
990 case K_X2DRAG:
991 case K_X2RELEASE:
992 ins_mouse(c);
993 break;
994
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100995 case K_MOUSEDOWN: // Default action for scroll wheel up: scroll up
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200996 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 break;
998
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100999 case K_MOUSEUP: // Default action for scroll wheel down: scroll down
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001000 ins_mousescroll(MSCR_UP);
1001 break;
1002
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001003 case K_MOUSELEFT: // Scroll wheel left
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001004 ins_mousescroll(MSCR_LEFT);
1005 break;
1006
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001007 case K_MOUSERIGHT: // Scroll wheel right
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001008 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001010
Bram Moolenaarec2da362017-01-21 20:04:22 +01001011 case K_PS:
1012 bracketed_paste(PASTE_INSERT, FALSE, NULL);
1013 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001014 // invoked from normal mode, bail out
Bram Moolenaarec2da362017-01-21 20:04:22 +01001015 goto doESCkey;
1016 break;
1017 case K_PE:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001018 // Got K_PE without K_PS, ignore.
Bram Moolenaarec2da362017-01-21 20:04:22 +01001019 break;
1020
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001021#ifdef FEAT_GUI_TABLINE
1022 case K_TABLINE:
1023 case K_TABMENU:
1024 ins_tabline(c);
1025 break;
1026#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001028 case K_IGNORE: // Something mapped to nothing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 break;
1030
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001031 case K_CURSORHOLD: // Didn't type something for a while.
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001032 ins_apply_autocmds(EVENT_CURSORHOLDI);
Bram Moolenaar754b5602006-02-09 23:53:20 +00001033 did_cursorhold = TRUE;
1034 break;
Bram Moolenaar754b5602006-02-09 23:53:20 +00001035
Bram Moolenaar4f974752019-02-17 17:44:42 +01001036#ifdef FEAT_GUI_MSWIN
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001037 // On MS-Windows ignore <M-F4>, we get it when closing the window
1038 // was cancelled.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001039 case K_F4:
1040 if (mod_mask != MOD_MASK_ALT)
1041 goto normalchar;
1042 break;
1043#endif
1044
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045#ifdef FEAT_GUI
1046 case K_VER_SCROLLBAR:
1047 ins_scroll();
1048 break;
1049
1050 case K_HOR_SCROLLBAR:
1051 ins_horscroll();
1052 break;
1053#endif
1054
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001055 case K_HOME: // <Home>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 case K_S_HOME:
1058 case K_C_HOME:
1059 ins_home(c);
1060 break;
1061
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001062 case K_END: // <End>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 case K_S_END:
1065 case K_C_END:
1066 ins_end(c);
1067 break;
1068
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001069 case K_LEFT: // <Left>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001070 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1071 ins_s_left();
1072 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001073 ins_left();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 break;
1075
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001076 case K_S_LEFT: // <S-Left>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 case K_C_LEFT:
1078 ins_s_left();
1079 break;
1080
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001081 case K_RIGHT: // <Right>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001082 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1083 ins_s_right();
1084 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001085 ins_right();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 break;
1087
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001088 case K_S_RIGHT: // <S-Right>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 case K_C_RIGHT:
1090 ins_s_right();
1091 break;
1092
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001093 case K_UP: // <Up>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001094 if (pum_visible())
1095 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001096 if (mod_mask & MOD_MASK_SHIFT)
1097 ins_pageup();
1098 else
1099 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 break;
1101
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001102 case K_S_UP: // <S-Up>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 case K_PAGEUP:
1104 case K_KPAGEUP:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001105 if (pum_visible())
1106 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 ins_pageup();
1108 break;
1109
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001110 case K_DOWN: // <Down>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001111 if (pum_visible())
1112 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001113 if (mod_mask & MOD_MASK_SHIFT)
1114 ins_pagedown();
1115 else
1116 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 break;
1118
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001119 case K_S_DOWN: // <S-Down>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 case K_PAGEDOWN:
1121 case K_KPAGEDOWN:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001122 if (pum_visible())
1123 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 ins_pagedown();
1125 break;
1126
1127#ifdef FEAT_DND
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001128 case K_DROP: // drag-n-drop event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 ins_drop();
1130 break;
1131#endif
1132
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001133 case K_S_TAB: // When not mapped, use like a normal TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 c = TAB;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001135 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001137 case TAB: // TAB or Complete patterns along path
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001138#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001139 if (ctrl_x_mode_path_patterns())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 goto docomplete;
1141#endif
1142 inserted_space = FALSE;
1143 if (ins_tab())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001144 goto normalchar; // insert TAB as a normal char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 auto_format(FALSE, TRUE);
1146 break;
1147
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001148 case K_KENTER: // <Enter>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 c = CAR;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001150 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 case CAR:
1152 case NL:
Bram Moolenaar4033c552017-09-16 20:54:51 +02001153#if defined(FEAT_QUICKFIX)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001154 // In a quickfix window a <CR> jumps to the error under the
1155 // cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 if (bt_quickfix(curbuf) && c == CAR)
1157 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001158 if (curwin->w_llist_ref == NULL) // quickfix window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001159 do_cmdline_cmd((char_u *)".cc");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001160 else // location list window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001161 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 break;
1163 }
1164#endif
1165#ifdef FEAT_CMDWIN
1166 if (cmdwin_type != 0)
1167 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001168 // Execute the command in the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 cmdwin_result = CAR;
1170 goto doESCkey;
1171 }
1172#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02001173#ifdef FEAT_JOB_CHANNEL
1174 if (bt_prompt(curbuf))
1175 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02001176 invoke_prompt_callback();
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02001177 if (!bt_prompt(curbuf))
1178 // buffer changed to a non-prompt buffer, get out of
1179 // Insert mode
Bram Moolenaarf2732452018-06-03 14:47:35 +02001180 goto doESCkey;
1181 break;
1182 }
1183#endif
Bram Moolenaar24a2d722018-04-24 19:36:43 +02001184 if (ins_eol(c) == FAIL && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001185 goto doESCkey; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 auto_format(FALSE, FALSE);
1187 inserted_space = FALSE;
1188 break;
1189
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001190 case Ctrl_K: // digraph or keyword completion
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001191 if (ctrl_x_mode_dictionary())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001193 if (has_compl_option(TRUE))
1194 goto docomplete;
1195 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001197#ifdef FEAT_DIGRAPHS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 c = ins_digraph();
1199 if (c == NUL)
1200 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001201#endif
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001202 goto normalchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001204 case Ctrl_X: // Enter CTRL-X mode
Bram Moolenaar572cb562005-08-05 21:35:02 +00001205 ins_ctrl_x();
1206 break;
1207
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001208 case Ctrl_RSB: // Tag name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001209 if (!ctrl_x_mode_tags())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 goto normalchar;
1211 goto docomplete;
1212
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001213 case Ctrl_F: // File name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001214 if (!ctrl_x_mode_files())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 goto normalchar;
1216 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001217
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001218 case 's': // Spelling completion after ^X
Bram Moolenaar488c6512005-08-11 20:09:58 +00001219 case Ctrl_S:
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001220 if (!ctrl_x_mode_spell())
Bram Moolenaar488c6512005-08-11 20:09:58 +00001221 goto normalchar;
1222 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001224 case Ctrl_L: // Whole line completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001225 if (!ctrl_x_mode_whole_line())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001227 // CTRL-L with 'insertmode' set: Leave Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 if (p_im)
1229 {
1230 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1231 break;
1232 goto doESCkey;
1233 }
1234 goto normalchar;
1235 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001236 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001238 case Ctrl_P: // Do previous/next pattern completion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 case Ctrl_N:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001240 // if 'complete' is empty then plain ^P is no longer special,
1241 // but it is under other ^X modes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 if (*curbuf->b_p_cpt == NUL
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001243 && (ctrl_x_mode_normal() || ctrl_x_mode_whole_line())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001244 && !(compl_cont_status & CONT_LOCAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 goto normalchar;
1246
1247docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001248 compl_busy = TRUE;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001249#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001250 disable_fold_update++; // don't redraw folds here
Bram Moolenaara6c07602017-03-05 21:18:27 +01001251#endif
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01001252 if (ins_complete(c, TRUE) == FAIL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001253 compl_cont_status = 0;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001254#ifdef FEAT_FOLDING
Bram Moolenaar429fcfb2016-04-14 16:22:04 +02001255 disable_fold_update--;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001256#endif
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001257 compl_busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001260 case Ctrl_Y: // copy from previous line or scroll down
1261 case Ctrl_E: // copy from next line or scroll up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001262 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 break;
1264
1265 default:
1266#ifdef UNIX
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001267 if (c == intr_char) // special interrupt char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 goto do_intr;
1269#endif
1270
Bram Moolenaare659c952011-05-19 17:25:41 +02001271normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001273 * Insert a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001275#if defined(FEAT_EVAL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001276 if (!p_paste)
1277 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001278 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001279 char_u *str = do_insert_char_pre(c);
1280 char_u *p;
1281
1282 if (str != NULL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001283 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001284 if (*str != NUL && stop_arrow() != FAIL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001285 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001286 // Insert the new value of v:char literally.
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001287 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaare659c952011-05-19 17:25:41 +02001288 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001289 c = PTR2CHAR(p);
1290 if (c == CAR || c == K_KENTER || c == NL)
1291 ins_eol(c);
1292 else
1293 ins_char(c);
Bram Moolenaare659c952011-05-19 17:25:41 +02001294 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001295 AppendToRedobuffLit(str, -1);
Bram Moolenaare659c952011-05-19 17:25:41 +02001296 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001297 vim_free(str);
1298 c = NUL;
Bram Moolenaare659c952011-05-19 17:25:41 +02001299 }
1300
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001301 // If the new value is already inserted or an empty string
1302 // then don't insert any character.
Bram Moolenaare659c952011-05-19 17:25:41 +02001303 if (c == NUL)
1304 break;
1305 }
1306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307#ifdef FEAT_SMARTINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001308 // Try to perform smart-indenting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 ins_try_si(c);
1310#endif
1311
1312 if (c == ' ')
1313 {
1314 inserted_space = TRUE;
1315#ifdef FEAT_CINDENT
1316 if (inindent(0))
1317 can_cindent = FALSE;
1318#endif
1319 if (Insstart_blank_vcol == MAXCOL
1320 && curwin->w_cursor.lnum == Insstart.lnum)
1321 Insstart_blank_vcol = get_nolist_virtcol();
1322 }
1323
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001324 // Insert a normal character and check for abbreviations on a
1325 // special character. Let CTRL-] expand abbreviations without
1326 // inserting it.
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02001327 if (vim_iswordc(c) || (!echeck_abbr(
Bram Moolenaar13505972019-01-24 15:04:48 +01001328 // Add ABBR_OFF for characters above 0x100, this is
1329 // what check_abbr() expects.
1330 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
1331 && c != Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 {
1333 insert_special(c, FALSE, FALSE);
1334#ifdef FEAT_RIGHTLEFT
1335 revins_legal++;
1336 revins_chars++;
1337#endif
1338 }
1339
1340 auto_format(FALSE, TRUE);
1341
1342#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001343 // When inserting a character the cursor line must never be in a
1344 // closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 foldOpenCursor();
1346#endif
1347 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001348 } // end of switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001350 // If typed something may trigger CursorHoldI again.
Bram Moolenaar245c4102016-04-20 17:37:41 +02001351 if (c != K_CURSORHOLD
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001352#ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001353 // but not in CTRL-X mode, a script can't restore the state
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001354 && ctrl_x_mode_normal()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001355#endif
Bram Moolenaar245c4102016-04-20 17:37:41 +02001356 )
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001357 did_cursorhold = FALSE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001358
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001359 // If the cursor was moved we didn't just insert a space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 if (arrow_used)
1361 inserted_space = FALSE;
1362
1363#ifdef FEAT_CINDENT
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001364 if (can_cindent && cindent_on() && ctrl_x_mode_normal())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 {
1366force_cindent:
1367 /*
1368 * Indent now if a key was typed that is in 'cinkeys'.
1369 */
1370 if (in_cinkeys(c, ' ', line_is_white))
1371 {
1372 if (stop_arrow() == OK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001373 // re-indent the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 do_c_expr_indent();
1375 }
1376 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001377#endif // FEAT_CINDENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001379 } // for (;;)
1380 // NOTREACHED
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381}
1382
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001383 int
1384ins_need_undo_get(void)
1385{
1386 return ins_need_undo;
1387}
1388
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389/*
1390 * Redraw for Insert mode.
1391 * This is postponed until getting the next character to make '$' in the 'cpo'
1392 * option work correctly.
1393 * Only redraw when there are no characters available. This speeds up
1394 * inserting sequences of characters (e.g., for CTRL-R).
1395 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001396 void
Bram Moolenaar3397f742019-06-02 18:40:06 +02001397ins_redraw(int ready) // not busy with something
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001399#ifdef FEAT_CONCEAL
1400 linenr_T conceal_old_cursor_line = 0;
1401 linenr_T conceal_new_cursor_line = 0;
1402 int conceal_update_lines = FALSE;
1403#endif
1404
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001405 if (char_avail())
1406 return;
1407
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001408 // Trigger CursorMoved if the cursor moved. Not when the popup menu is
1409 // visible, the command might delete it.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001410 if (ready && (has_cursormovedI()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001411# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001412 || popup_visible
1413# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001414# if defined(FEAT_CONCEAL)
1415 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001416# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001417 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001418 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001419 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001420 {
1421# ifdef FEAT_SYN_HL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001422 // Need to update the screen first, to make sure syntax
1423 // highlighting is correct after making a change (e.g., inserting
1424 // a "(". The autocommand may also require a redraw, so it's done
1425 // again below, unfortunately.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001426 if (syntax_present(curwin) && must_redraw)
1427 update_screen(0);
1428# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001429 if (has_cursormovedI())
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001430 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001431 // Make sure curswant is correct, an autocommand may call
1432 // getcurpos().
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001433 update_curswant();
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001434 ins_apply_autocmds(EVENT_CURSORMOVEDI);
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001435 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001436#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001437 if (popup_visible)
1438 popup_check_cursor_pos();
1439#endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001440# ifdef FEAT_CONCEAL
1441 if (curwin->w_p_cole > 0)
1442 {
1443 conceal_old_cursor_line = last_cursormoved.lnum;
1444 conceal_new_cursor_line = curwin->w_cursor.lnum;
1445 conceal_update_lines = TRUE;
1446 }
1447# endif
1448 last_cursormoved = curwin->w_cursor;
1449 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001450
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001451 // Trigger TextChangedI if b_changedtick differs.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001452 if (ready && has_textchangedI()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001453 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001454 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001455 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001456 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001457 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar91d2e782018-08-07 19:05:01 +02001458
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001459 // save and restore curwin and curbuf, in case the autocmd changes them
1460 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001461 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001462 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001463 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001464 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1465 u_save(curwin->w_cursor.lnum,
1466 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 }
Bram Moolenaar5a093432018-02-10 18:15:19 +01001468
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001469 // Trigger TextChangedP if b_changedtick differs. When the popupmenu closes
1470 // TextChangedI will need to trigger for backwards compatibility, thus use
1471 // different b_last_changedtick* variables.
Bram Moolenaar5a093432018-02-10 18:15:19 +01001472 if (ready && has_textchangedP()
1473 && curbuf->b_last_changedtick_pum != CHANGEDTICK(curbuf)
1474 && pum_visible())
1475 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001476 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001477 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001478
1479 // save and restore curwin and curbuf, in case the autocmd changes them
1480 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001481 apply_autocmds(EVENT_TEXTCHANGEDP, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001482 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001483 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001484 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1485 u_save(curwin->w_cursor.lnum,
1486 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar5a093432018-02-10 18:15:19 +01001487 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001488
Bram Moolenaar8aeec402019-09-15 23:02:04 +02001489 // Trigger SafeState if nothing is pending.
1490 may_trigger_safestate(ready
1491 && !ins_compl_active()
1492 && !pum_visible());
1493
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001494#if defined(FEAT_CONCEAL)
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001495 if ((conceal_update_lines
1496 && (conceal_old_cursor_line != conceal_new_cursor_line
1497 || conceal_cursor_line(curwin)))
1498 || need_cursor_line_redraw)
1499 {
1500 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001501 redrawWinline(curwin, conceal_old_cursor_line);
1502 redrawWinline(curwin, conceal_new_cursor_line == 0
1503 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001504 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001505 need_cursor_line_redraw = FALSE;
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001506 }
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001507#endif
1508 if (must_redraw)
1509 update_screen(0);
1510 else if (clear_cmdline || redraw_cmdline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001511 showmode(); // clear cmdline and show mode
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001512 showruler(FALSE);
1513 setcursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001514 emsg_on_display = FALSE; // may remove error message now
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515}
1516
1517/*
1518 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1519 */
1520 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001521ins_ctrl_v(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522{
1523 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001524 int did_putchar = FALSE;
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001525 int prev_mod_mask = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001527 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00001528 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529
1530 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001531 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001533 did_putchar = TRUE;
1534 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001535 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536
1537#ifdef FEAT_CMDL_INFO
1538 add_to_showcmd_c(Ctrl_V);
1539#endif
1540
1541 c = get_literal();
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001542 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001543 // when the line fits in 'columns' the '^' is at the start of the next
1544 // line and will not removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001545 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546#ifdef FEAT_CMDL_INFO
1547 clear_showcmd();
1548#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001549
1550 if ((c == ESC || c == CSI) && !(prev_mod_mask & MOD_MASK_SHIFT))
1551 // Using CTRL-V: Change any modifyOtherKeys ESC sequence to a normal
1552 // key. Don't do this for CTRL-SHIFT-V.
1553 c = decodeModifyOtherKeys(c);
1554
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 insert_special(c, FALSE, TRUE);
1556#ifdef FEAT_RIGHTLEFT
1557 revins_chars++;
1558 revins_legal++;
1559#endif
1560}
1561
1562/*
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001563 * After getting an ESC or CSI for a literal key: If the typeahead buffer
1564 * contains a modifyOtherKeys sequence then decode it and return the result.
1565 * Otherwise return "c".
1566 * Note that this doesn't wait for characters, they must be in the typeahead
1567 * buffer already.
1568 */
1569 int
1570decodeModifyOtherKeys(int c)
1571{
1572 char_u *p = typebuf.tb_buf + typebuf.tb_off;
1573 int idx;
1574 int form = 0;
1575 int argidx = 0;
1576 int arg[2] = {0, 0};
1577
1578 // Recognize:
1579 // form 0: {lead}{key};{modifier}u
1580 // form 1: {lead}27;{modifier};{key}~
1581 if ((c == CSI || (c == ESC && *p == '[')) && typebuf.tb_len >= 4)
1582 {
1583 idx = (*p == '[');
1584 if (p[idx] == '2' && p[idx + 1] == '7' && p[idx + 2] == ';')
1585 {
1586 form = 1;
1587 idx += 3;
1588 }
1589 while (idx < typebuf.tb_len && argidx < 2)
1590 {
1591 if (p[idx] == ';')
1592 ++argidx;
1593 else if (VIM_ISDIGIT(p[idx]))
1594 arg[argidx] = arg[argidx] * 10 + (p[idx] - '0');
1595 else
1596 break;
1597 ++idx;
1598 }
1599 if (idx < typebuf.tb_len
1600 && p[idx] == (form == 1 ? '~' : 'u')
1601 && argidx == 1)
1602 {
1603 // Match, consume the code.
1604 typebuf.tb_off += idx + 1;
1605 typebuf.tb_len -= idx + 1;
Bram Moolenaare49b4bb2020-03-11 13:01:40 +01001606#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
1607 if (typebuf.tb_len == 0)
1608 typebuf_was_filled = FALSE;
1609#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001610
1611 mod_mask = decode_modifiers(arg[!form]);
Bram Moolenaar975a8802020-06-06 22:36:24 +02001612 c = merge_modifyOtherKeys(arg[form], &mod_mask);
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001613 }
1614 }
1615
1616 return c;
1617}
1618
1619/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 * Put a character directly onto the screen. It's not stored in a buffer.
1621 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1622 */
1623static int pc_status;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001624#define PC_STATUS_UNSET 0 // pc_bytes was not set
1625#define PC_STATUS_RIGHT 1 // right halve of double-wide char
1626#define PC_STATUS_LEFT 2 // left halve of double-wide char
1627#define PC_STATUS_SET 3 // pc_bytes was filled
1628static char_u pc_bytes[MB_MAXBYTES + 1]; // saved bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629static int pc_attr;
1630static int pc_row;
1631static int pc_col;
1632
1633 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001634edit_putchar(int c, int highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635{
1636 int attr;
1637
1638 if (ScreenLines != NULL)
1639 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001640 update_topline(); // just in case w_topline isn't valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 validate_cursor();
1642 if (highlight)
Bram Moolenaar8820b482017-03-16 17:23:31 +01001643 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 else
1645 attr = 0;
1646 pc_row = W_WINROW(curwin) + curwin->w_wrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02001647 pc_col = curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 pc_status = PC_STATUS_UNSET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649#ifdef FEAT_RIGHTLEFT
1650 if (curwin->w_p_rl)
1651 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001652 pc_col += curwin->w_width - 1 - curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 if (has_mbyte)
1654 {
1655 int fix_col = mb_fix_col(pc_col, pc_row);
1656
1657 if (fix_col != pc_col)
1658 {
1659 screen_putchar(' ', pc_row, fix_col, attr);
1660 --curwin->w_wcol;
1661 pc_status = PC_STATUS_RIGHT;
1662 }
1663 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 }
1665 else
1666#endif
1667 {
1668 pc_col += curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 if (mb_lefthalve(pc_row, pc_col))
1670 pc_status = PC_STATUS_LEFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 }
1672
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001673 // save the character to be able to put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 if (pc_status == PC_STATUS_UNSET)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 {
1676 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1677 pc_status = PC_STATUS_SET;
1678 }
1679 screen_putchar(c, pc_row, pc_col, attr);
1680 }
1681}
1682
Bram Moolenaarf2732452018-06-03 14:47:35 +02001683#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
1684/*
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001685 * Return the effective prompt for the specified buffer.
1686 */
1687 char_u *
1688buf_prompt_text(buf_T* buf)
1689{
1690 if (buf->b_prompt_text == NULL)
1691 return (char_u *)"% ";
1692 return buf->b_prompt_text;
1693}
1694
1695/*
Bram Moolenaarf2732452018-06-03 14:47:35 +02001696 * Return the effective prompt for the current buffer.
1697 */
1698 char_u *
1699prompt_text(void)
1700{
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001701 return buf_prompt_text(curbuf);
Bram Moolenaarf2732452018-06-03 14:47:35 +02001702}
1703
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001704
Bram Moolenaarf2732452018-06-03 14:47:35 +02001705/*
1706 * Prepare for prompt mode: Make sure the last line has the prompt text.
1707 * Move the cursor to this line.
1708 */
1709 static void
1710init_prompt(int cmdchar_todo)
1711{
1712 char_u *prompt = prompt_text();
1713 char_u *text;
1714
1715 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1716 text = ml_get_curline();
1717 if (STRNCMP(text, prompt, STRLEN(prompt)) != 0)
1718 {
1719 // prompt is missing, insert it or append a line with it
1720 if (*text == NUL)
1721 ml_replace(curbuf->b_ml.ml_line_count, prompt, TRUE);
1722 else
1723 ml_append(curbuf->b_ml.ml_line_count, prompt, 0, FALSE);
1724 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1725 coladvance((colnr_T)MAXCOL);
1726 changed_bytes(curbuf->b_ml.ml_line_count, 0);
1727 }
Bram Moolenaar6d41c782018-06-06 09:11:12 +02001728
1729 // Insert always starts after the prompt, allow editing text after it.
1730 if (Insstart_orig.lnum != curwin->w_cursor.lnum
1731 || Insstart_orig.col != (int)STRLEN(prompt))
1732 {
1733 Insstart.lnum = curwin->w_cursor.lnum;
Bram Moolenaare31e2562018-06-10 13:12:55 +02001734 Insstart.col = (int)STRLEN(prompt);
Bram Moolenaar6d41c782018-06-06 09:11:12 +02001735 Insstart_orig = Insstart;
1736 Insstart_textlen = Insstart.col;
1737 Insstart_blank_vcol = MAXCOL;
1738 arrow_used = FALSE;
1739 }
1740
Bram Moolenaarf2732452018-06-03 14:47:35 +02001741 if (cmdchar_todo == 'A')
1742 coladvance((colnr_T)MAXCOL);
1743 if (cmdchar_todo == 'I' || curwin->w_cursor.col <= (int)STRLEN(prompt))
Bram Moolenaare31e2562018-06-10 13:12:55 +02001744 curwin->w_cursor.col = (int)STRLEN(prompt);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001745 // Make sure the cursor is in a valid position.
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02001746 check_cursor();
Bram Moolenaarf2732452018-06-03 14:47:35 +02001747}
1748
1749/*
1750 * Return TRUE if the cursor is in the editable position of the prompt line.
1751 */
1752 int
1753prompt_curpos_editable()
1754{
1755 return curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count
1756 && curwin->w_cursor.col >= (int)STRLEN(prompt_text());
1757}
1758#endif
1759
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760/*
1761 * Undo the previous edit_putchar().
1762 */
1763 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001764edit_unputchar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765{
1766 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1767 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 if (pc_status == PC_STATUS_RIGHT)
1769 ++curwin->w_wcol;
1770 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001771 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1774 }
1775}
1776
1777/*
1778 * Called when p_dollar is set: display a '$' at the end of the changed text
1779 * Only works when cursor is in the line that changes.
1780 */
1781 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001782display_dollar(colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783{
1784 colnr_T save_col;
1785
1786 if (!redrawing())
1787 return;
1788
1789 cursor_off();
1790 save_col = curwin->w_cursor.col;
1791 curwin->w_cursor.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 if (has_mbyte)
1793 {
1794 char_u *p;
1795
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001796 // If on the last byte of a multi-byte move to the first byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 p = ml_get_curline();
1798 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1799 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001800 curs_columns(FALSE); // recompute w_wrow and w_wcol
Bram Moolenaar02631462017-09-22 15:20:32 +02001801 if (curwin->w_wcol < curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 {
1803 edit_putchar('$', FALSE);
1804 dollar_vcol = curwin->w_virtcol;
1805 }
1806 curwin->w_cursor.col = save_col;
1807}
1808
1809/*
1810 * Call this function before moving the cursor from the normal insert position
1811 * in insert mode.
1812 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001813 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001814undisplay_dollar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001816 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001818 dollar_vcol = -1;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001819 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 }
1821}
1822
1823/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 * Truncate the space at the end of a line. This is to be used only in an
1825 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
1826 * modes.
1827 */
1828 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001829truncate_spaces(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830{
1831 int i;
1832
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001833 // find start of trailing white space
Bram Moolenaar1c465442017-03-12 20:10:05 +01001834 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 {
1836 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001837 replace_join(0); // remove a NUL from the replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 }
1839 line[i + 1] = NUL;
1840}
1841
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842/*
1843 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
1844 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001845 * Will attempt not to go before "col" even when there is a composing
1846 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 */
1848 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001849backspace_until_column(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850{
1851 while ((int)curwin->w_cursor.col > col)
1852 {
1853 curwin->w_cursor.col--;
1854 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001855 replace_do_bs(col);
1856 else if (!del_char_after_col(col))
1857 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 }
1859}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001861/*
1862 * Like del_char(), but make sure not to go before column "limit_col".
1863 * Only matters when there are composing characters.
1864 * Return TRUE when something was deleted.
1865 */
1866 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001867del_char_after_col(int limit_col UNUSED)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001868{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001869 if (enc_utf8 && limit_col >= 0)
1870 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001871 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001872
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001873 // Make sure the cursor is at the start of a character, but
1874 // skip forward again when going too far back because of a
1875 // composing character.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001876 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00001877 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001878 {
1879 int l = utf_ptr2len(ml_get_cursor());
1880
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001881 if (l == 0) // end of line
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001882 break;
1883 curwin->w_cursor.col += l;
1884 }
1885 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
1886 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001887 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001888 }
1889 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001890 (void)del_char(FALSE);
1891 return TRUE;
1892}
1893
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894/*
1895 * Next character is interpreted literally.
1896 * A one, two or three digit decimal number is interpreted as its byte value.
1897 * If one or two digits are entered, the next character is given to vungetc().
1898 * For Unicode a character > 255 may be returned.
1899 */
1900 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001901get_literal(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902{
1903 int cc;
1904 int nc;
1905 int i;
1906 int hex = FALSE;
1907 int octal = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 int unicode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909
1910 if (got_int)
1911 return Ctrl_C;
1912
1913#ifdef FEAT_GUI
1914 /*
1915 * In GUI there is no point inserting the internal code for a special key.
1916 * It is more useful to insert the string "<KEY>" instead. This would
1917 * probably be useful in a text window too, but it would not be
1918 * vi-compatible (maybe there should be an option for it?) -- webb
1919 */
1920 if (gui.in_use)
1921 ++allow_keys;
1922#endif
1923#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001924 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001926 ++no_mapping; // don't map the next key hits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 cc = 0;
1928 i = 0;
1929 for (;;)
1930 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001931 nc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932#ifdef FEAT_CMDL_INFO
Bram Moolenaar13505972019-01-24 15:04:48 +01001933 if (!(State & CMDLINE) && MB_BYTE2LEN_CHECK(nc) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 add_to_showcmd(nc);
1935#endif
1936 if (nc == 'x' || nc == 'X')
1937 hex = TRUE;
1938 else if (nc == 'o' || nc == 'O')
1939 octal = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 else if (nc == 'u' || nc == 'U')
1941 unicode = nc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 else
1943 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001944 if (hex || unicode != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 {
1946 if (!vim_isxdigit(nc))
1947 break;
1948 cc = cc * 16 + hex2nr(nc);
1949 }
1950 else if (octal)
1951 {
1952 if (nc < '0' || nc > '7')
1953 break;
1954 cc = cc * 8 + nc - '0';
1955 }
1956 else
1957 {
1958 if (!VIM_ISDIGIT(nc))
1959 break;
1960 cc = cc * 10 + nc - '0';
1961 }
1962
1963 ++i;
1964 }
1965
Bram Moolenaar13505972019-01-24 15:04:48 +01001966 if (cc > 255 && unicode == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001967 cc = 255; // limit range to 0-255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 nc = 0;
1969
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001970 if (hex) // hex: up to two chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 {
1972 if (i >= 2)
1973 break;
1974 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001975 else if (unicode) // Unicode: up to four or eight chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 {
1977 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
1978 break;
1979 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001980 else if (i >= 3) // decimal or octal: up to three chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 break;
1982 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001983 if (i == 0) // no number entered
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001985 if (nc == K_ZERO) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 {
1987 cc = '\n';
1988 nc = 0;
1989 }
1990 else
1991 {
1992 cc = nc;
1993 nc = 0;
1994 }
1995 }
1996
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001997 if (cc == 0) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00001999 if (enc_dbcs && (cc & 0xff) == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002000 cc = '?'; // don't accept an illegal DBCS char, the NUL in the
2001 // second byte will cause trouble!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002
2003 --no_mapping;
2004#ifdef FEAT_GUI
2005 if (gui.in_use)
2006 --allow_keys;
2007#endif
2008 if (nc)
2009 vungetc(nc);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002010 got_int = FALSE; // CTRL-C typed after CTRL-V is not an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 return cc;
2012}
2013
2014/*
2015 * Insert character, taking care of special keys and mod_mask
2016 */
2017 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002018insert_special(
2019 int c,
2020 int allow_modmask,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002021 int ctrlv) // c was typed after CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022{
2023 char_u *p;
2024 int len;
2025
2026 /*
2027 * Special function key, translate into "<Key>". Up to the last '>' is
2028 * inserted with ins_str(), so as not to replace characters in replace
2029 * mode.
2030 * Only use mod_mask for special keys, to avoid things like <S-Space>,
2031 * unless 'allow_modmask' is TRUE.
2032 */
Bram Moolenaard0573012017-10-28 21:11:06 +02002033#ifdef MACOS_X
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002034 // Command-key never produces a normal key
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 if (mod_mask & MOD_MASK_CMD)
2036 allow_modmask = TRUE;
2037#endif
2038 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
2039 {
2040 p = get_special_key_name(c, mod_mask);
2041 len = (int)STRLEN(p);
2042 c = p[len - 1];
2043 if (len > 2)
2044 {
2045 if (stop_arrow() == FAIL)
2046 return;
2047 p[len - 1] = NUL;
2048 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00002049 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 ctrlv = FALSE;
2051 }
2052 }
2053 if (stop_arrow() == OK)
2054 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
2055}
2056
2057/*
2058 * Special characters in this context are those that need processing other
2059 * than the simple insertion that can be performed here. This includes ESC
2060 * which terminates the insert, and CR/NL which need special processing to
2061 * open up a new line. This routine tries to optimize insertions performed by
2062 * the "redo", "undo" or "put" commands, so it needs to know when it should
2063 * stop and defer processing to the "normal" mechanism.
2064 * '0' and '^' are special, because they can be followed by CTRL-D.
2065 */
2066#ifdef EBCDIC
2067# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
2068#else
2069# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
2070#endif
2071
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02002072/*
2073 * "flags": INSCHAR_FORMAT - force formatting
2074 * INSCHAR_CTRLV - char typed just after CTRL-V
2075 * INSCHAR_NO_FEX - don't use 'formatexpr'
2076 *
2077 * NOTE: passes the flags value straight through to internal_format() which,
2078 * beside INSCHAR_FORMAT (above), is also looking for these:
2079 * INSCHAR_DO_COM - format comments
2080 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
2081 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002083insertchar(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002084 int c, // character to insert or NUL
2085 int flags, // INSCHAR_FORMAT, etc.
2086 int second_indent) // indent for second line if >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 int textwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 int fo_ins_blank;
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002091 int force_format = flags & INSCHAR_FORMAT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002093 textwidth = comp_textwidth(force_format);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095
2096 /*
2097 * Try to break the line in two or more pieces when:
2098 * - Always do this if we have been called to do formatting only.
2099 * - Always do this when 'formatoptions' has the 'a' flag and the line
2100 * ends in white space.
2101 * - Otherwise:
2102 * - Don't do this if inserting a blank
2103 * - Don't do this if an existing character is being replaced, unless
2104 * we're in VREPLACE mode.
2105 * - Do this if the cursor is not on the line where insert started
2106 * or - 'formatoptions' doesn't have 'l' or the line was not too long
2107 * before the insert.
2108 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
2109 * before 'textwidth'
2110 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002111 if (textwidth > 0
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002112 && (force_format
Bram Moolenaar1c465442017-03-12 20:10:05 +01002113 || (!VIM_ISWHITE(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 && !((State & REPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 && !(State & VREPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 && *ml_get_cursor() != NUL)
2117 && (curwin->w_cursor.lnum != Insstart.lnum
2118 || ((!has_format_option(FO_INS_LONG)
2119 || Insstart_textlen <= (colnr_T)textwidth)
2120 && (!fo_ins_blank
2121 || Insstart_blank_vcol <= (colnr_T)textwidth
2122 ))))))
2123 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002124 // Format with 'formatexpr' when it's set. Use internal formatting
2125 // when 'formatexpr' isn't set or it returns non-zero.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002126#if defined(FEAT_EVAL)
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002127 int do_internal = TRUE;
2128 colnr_T virtcol = get_nolist_virtcol()
2129 + char2cells(c != NUL ? c : gchar_cursor());
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002130
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002131 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0
2132 && (force_format || virtcol > (colnr_T)textwidth))
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002133 {
2134 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002135 // It may be required to save for undo again, e.g. when setline()
2136 // was called.
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002137 ins_need_undo = TRUE;
2138 }
2139 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00002141 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002143
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002144 if (c == NUL) // only formatting was wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 return;
2146
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002147 // Check whether this character should end a comment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 if (did_ai && (int)c == end_comment_pending)
2149 {
2150 char_u *line;
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002151 char_u lead_end[COM_MAX_LEN]; // end-comment string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 int middle_len, end_len;
2153 int i;
2154
2155 /*
2156 * Need to remove existing (middle) comment leader and insert end
2157 * comment leader. First, check what comment leader we can find.
2158 */
Bram Moolenaar81340392012-06-06 16:12:59 +02002159 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002160 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) // Just checking
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002162 // Skip middle-comment string
2163 while (*p && p[-1] != ':') // find end of middle flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 ++p;
2165 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002166 // Don't count trailing white space for middle_len
Bram Moolenaar1c465442017-03-12 20:10:05 +01002167 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 --middle_len;
2169
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002170 // Find the end-comment string
2171 while (*p && p[-1] != ':') // find end of end flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 ++p;
2173 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
2174
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002175 // Skip white space before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 i = curwin->w_cursor.col;
Bram Moolenaar1c465442017-03-12 20:10:05 +01002177 while (--i >= 0 && VIM_ISWHITE(line[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 ;
2179 i++;
2180
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002181 // Skip to before the middle leader
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 i -= middle_len;
2183
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002184 // Check some expected things before we go on
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
2186 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002187 // Backspace over all the stuff we want to replace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 backspace_until_column(i);
2189
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002190 // Insert the end-comment string, except for the last
2191 // character, which will get inserted as normal later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 ins_bytes_len(lead_end, end_len - 1);
2193 }
2194 }
2195 }
2196 end_comment_pending = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197
2198 did_ai = FALSE;
2199#ifdef FEAT_SMARTINDENT
2200 did_si = FALSE;
2201 can_si = FALSE;
2202 can_si_back = FALSE;
2203#endif
2204
2205 /*
2206 * If there's any pending input, grab up to INPUT_BUFLEN at once.
2207 * This speeds up normal text input considerably.
2208 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
2209 * need to re-indent at a ':', or any other character (but not what
2210 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01002211 * Don't do this when there an InsertCharPre autocommand is defined,
2212 * because we need to fire the event for every character.
Bram Moolenaar39de9522018-05-08 22:48:00 +02002213 * Do the check for InsertCharPre before the call to vpeekc() because the
2214 * InsertCharPre autocommand could change the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 */
2216#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002217 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218#endif
2219
2220 if ( !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 && (!has_mbyte || (*mb_char2len)(c) == 1)
Bram Moolenaar39de9522018-05-08 22:48:00 +02002222 && !has_insertcharpre()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 && vpeekc() != NUL
2224 && !(State & REPLACE_FLAG)
2225#ifdef FEAT_CINDENT
2226 && !cindent_on()
2227#endif
2228#ifdef FEAT_RIGHTLEFT
2229 && !p_ri
2230#endif
Bram Moolenaar39de9522018-05-08 22:48:00 +02002231 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 {
2233#define INPUT_BUFLEN 100
2234 char_u buf[INPUT_BUFLEN + 1];
2235 int i;
2236 colnr_T virtcol = 0;
2237
2238 buf[0] = c;
2239 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002240 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 virtcol = get_nolist_virtcol();
2242 /*
2243 * Stop the string when:
2244 * - no more chars available
2245 * - finding a special character (command key)
2246 * - buffer is full
2247 * - running into the 'textwidth' boundary
2248 * - need to check for abbreviation: A non-word char after a word-char
2249 */
2250 while ( (c = vpeekc()) != NUL
2251 && !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 && i < INPUT_BUFLEN
2254 && (textwidth == 0
2255 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
2256 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
2257 {
2258#ifdef FEAT_RIGHTLEFT
2259 c = vgetc();
2260 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002261 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 buf[i++] = c;
2263#else
2264 buf[i++] = vgetc();
2265#endif
2266 }
2267
2268#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002269 do_digraph(-1); // clear digraphs
2270 do_digraph(buf[i-1]); // may be the start of a digraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271#endif
2272 buf[i] = NUL;
2273 ins_str(buf);
2274 if (flags & INSCHAR_CTRLV)
2275 {
2276 redo_literal(*buf);
2277 i = 1;
2278 }
2279 else
2280 i = 0;
2281 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002282 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 }
2284 else
2285 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002286 int cc;
2287
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
2289 {
2290 char_u buf[MB_MAXBYTES + 1];
2291
2292 (*mb_char2bytes)(c, buf);
2293 buf[cc] = NUL;
2294 ins_char_bytes(buf, cc);
2295 AppendCharToRedobuff(c);
2296 }
2297 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 {
2299 ins_char(c);
2300 if (flags & INSCHAR_CTRLV)
2301 redo_literal(c);
2302 else
2303 AppendCharToRedobuff(c);
2304 }
2305 }
2306}
2307
2308/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 * Put a character in the redo buffer, for when just after a CTRL-V.
2310 */
2311 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002312redo_literal(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313{
2314 char_u buf[10];
2315
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002316 // Only digits need special treatment. Translate them into a string of
2317 // three digits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 if (VIM_ISDIGIT(c))
2319 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002320 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 AppendToRedobuff(buf);
2322 }
2323 else
2324 AppendCharToRedobuff(c);
2325}
2326
2327/*
2328 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002329 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01002331 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002332start_arrow(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002333 pos_T *end_insert_pos) // can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334{
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002335 start_arrow_common(end_insert_pos, TRUE);
2336}
2337
2338/*
2339 * Like start_arrow() but with end_change argument.
2340 * Will prepare for redo of CTRL-G U if "end_change" is FALSE.
2341 */
2342 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002343start_arrow_with_change(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002344 pos_T *end_insert_pos, // can be NULL
2345 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002346{
2347 start_arrow_common(end_insert_pos, end_change);
2348 if (!end_change)
2349 {
2350 AppendCharToRedobuff(Ctrl_G);
2351 AppendCharToRedobuff('U');
2352 }
2353}
2354
2355 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002356start_arrow_common(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002357 pos_T *end_insert_pos, // can be NULL
2358 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002359{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002360 if (!arrow_used && end_change) // something has been inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 {
2362 AppendToRedobuff(ESC_STR);
Bram Moolenaarf332a652013-11-04 04:20:33 +01002363 stop_insert(end_insert_pos, FALSE, FALSE);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002364 arrow_used = TRUE; // this means we stopped the current insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002366#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002367 check_spell_redraw();
2368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369}
2370
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002371#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002372/*
2373 * If we skipped highlighting word at cursor, do it now.
2374 * It may be skipped again, thus reset spell_redraw_lnum first.
2375 */
2376 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002377check_spell_redraw(void)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002378{
2379 if (spell_redraw_lnum != 0)
2380 {
2381 linenr_T lnum = spell_redraw_lnum;
2382
2383 spell_redraw_lnum = 0;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01002384 redrawWinline(curwin, lnum);
Bram Moolenaar217ad922005-03-20 22:37:15 +00002385 }
2386}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002387
Bram Moolenaar217ad922005-03-20 22:37:15 +00002388#endif
2389
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390/*
2391 * stop_arrow() is called before a change is made in insert mode.
2392 * If an arrow key has been used, start a new insertion.
2393 * Returns FAIL if undo is impossible, shouldn't insert then.
2394 */
2395 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002396stop_arrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397{
2398 if (arrow_used)
2399 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002400 Insstart = curwin->w_cursor; // new insertion starts here
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002401 if (Insstart.col > Insstart_orig.col && !ins_need_undo)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002402 // Don't update the original insert position when moved to the
2403 // right, except when nothing was inserted yet.
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002404 update_Insstart_orig = FALSE;
2405 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
2406
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 if (u_save_cursor() == OK)
2408 {
2409 arrow_used = FALSE;
2410 ins_need_undo = FALSE;
2411 }
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002412
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 ai_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 if (State & VREPLACE_FLAG)
2415 {
2416 orig_line_count = curbuf->b_ml.ml_line_count;
2417 vr_lines_changed = 1;
2418 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 ResetRedobuff();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002420 AppendToRedobuff((char_u *)"1i"); // pretend we start an insertion
Bram Moolenaara9b1e742005-12-19 22:14:58 +00002421 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 }
2423 else if (ins_need_undo)
2424 {
2425 if (u_save_cursor() == OK)
2426 ins_need_undo = FALSE;
2427 }
2428
2429#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002430 // Always open fold at the cursor line when inserting something.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 foldOpenCursor();
2432#endif
2433
2434 return (arrow_used || ins_need_undo ? FAIL : OK);
2435}
2436
2437/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002438 * Do a few things to stop inserting.
2439 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
2440 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 */
2442 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002443stop_insert(
2444 pos_T *end_insert_pos,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002445 int esc, // called by ins_esc()
2446 int nomove) // <c-\><c-o>, don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002448 int cc;
2449 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450
2451 stop_redo_ins();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002452 replace_flush(); // abandon replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453
2454 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002455 * Save the inserted text for later redo with ^@ and CTRL-A.
2456 * Don't do it when "restart_edit" was set and nothing was inserted,
2457 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002459 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002460 if (did_restart_edit == 0 || (ptr != NULL
2461 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002462 {
2463 vim_free(last_insert);
2464 last_insert = ptr;
2465 last_insert_skip = new_insert_skip;
2466 }
2467 else
2468 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002470 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002472 // Auto-format now. It may seem strange to do this when stopping an
2473 // insertion (or moving the cursor), but it's required when appending
2474 // a line and having it end in a space. But only do it when something
2475 // was actually inserted, otherwise undo won't work.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002476 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002478 pos_T tpos = curwin->w_cursor;
2479
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002480 // When the cursor is at the end of the line after a space the
2481 // formatting will move it to the following word. Avoid that by
2482 // moving the cursor onto the space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 cc = 'x';
2484 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
2485 {
2486 dec_cursor();
2487 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002488 if (!VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002489 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 }
2491
2492 auto_format(TRUE, FALSE);
2493
Bram Moolenaar1c465442017-03-12 20:10:05 +01002494 if (VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002495 {
2496 if (gchar_cursor() != NUL)
2497 inc_cursor();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002498 // If the cursor is still at the same character, also keep
2499 // the "coladd".
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002500 if (gchar_cursor() == NUL
2501 && curwin->w_cursor.lnum == tpos.lnum
2502 && curwin->w_cursor.col == tpos.col)
2503 curwin->w_cursor.coladd = tpos.coladd;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 }
2506
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002507 // If a space was inserted for auto-formatting, remove it now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 check_auto_format(TRUE);
2509
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002510 // If we just did an auto-indent, remove the white space from the end
2511 // of the line, and put the cursor back.
2512 // Do this when ESC was used or moving the cursor up/down.
2513 // Check for the old position still being valid, just in case the text
2514 // got changed unexpectedly.
Bram Moolenaarf332a652013-11-04 04:20:33 +01002515 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00002516 && curwin->w_cursor.lnum != end_insert_pos->lnum))
2517 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002519 pos_T tpos = curwin->w_cursor;
2520
2521 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002522 check_cursor_col(); // make sure it is not past the line
Bram Moolenaar39f05632006-03-19 22:15:26 +00002523 for (;;)
2524 {
2525 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
2526 --curwin->w_cursor.col;
2527 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002528 if (!VIM_ISWHITE(cc))
Bram Moolenaar39f05632006-03-19 22:15:26 +00002529 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00002530 if (del_char(TRUE) == FAIL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002531 break; // should not happen
Bram Moolenaar39f05632006-03-19 22:15:26 +00002532 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002533 if (curwin->w_cursor.lnum != tpos.lnum)
2534 curwin->w_cursor = tpos;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002535 else
2536 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002537 // reset tpos, could have been invalidated in the loop above
Bram Moolenaaref6875b2014-11-12 18:59:25 +01002538 tpos = curwin->w_cursor;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002539 tpos.col++;
2540 if (cc != NUL && gchar_pos(&tpos) == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002541 ++curwin->w_cursor.col; // put cursor back on the NUL
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002544 // <C-S-Right> may have started Visual mode, adjust the position for
2545 // deleted characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
2547 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002548 int len = (int)STRLEN(ml_get_curline());
2549
2550 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002552 VIsual.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 VIsual.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 }
2555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 }
2557 }
2558 did_ai = FALSE;
2559#ifdef FEAT_SMARTINDENT
2560 did_si = FALSE;
2561 can_si = FALSE;
2562 can_si_back = FALSE;
2563#endif
2564
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002565 // Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
2566 // now in a different buffer.
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002567 if (end_insert_pos != NULL)
2568 {
2569 curbuf->b_op_start = Insstart;
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002570 curbuf->b_op_start_orig = Insstart_orig;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002571 curbuf->b_op_end = *end_insert_pos;
2572 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573}
2574
2575/*
2576 * Set the last inserted text to a single character.
2577 * Used for the replace command.
2578 */
2579 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002580set_last_insert(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581{
2582 char_u *s;
2583
2584 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 if (last_insert != NULL)
2587 {
2588 s = last_insert;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002589 // Use the CTRL-V only when entering a special char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 if (c < ' ' || c == DEL)
2591 *s++ = Ctrl_V;
2592 s = add_char2buf(c, s);
2593 *s++ = ESC;
2594 *s++ = NUL;
2595 last_insert_skip = 0;
2596 }
2597}
2598
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002599#if defined(EXITFREE) || defined(PROTO)
2600 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002601free_last_insert(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002602{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002603 VIM_CLEAR(last_insert);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002604}
2605#endif
2606
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607/*
2608 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
2609 * and CSI. Handle multi-byte characters.
2610 * Returns a pointer to after the added bytes.
2611 */
2612 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002613add_char2buf(int c, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614{
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002615 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 int i;
2617 int len;
2618
2619 len = (*mb_char2bytes)(c, temp);
2620 for (i = 0; i < len; ++i)
2621 {
2622 c = temp[i];
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002623 // Need to escape K_SPECIAL and CSI like in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 if (c == K_SPECIAL)
2625 {
2626 *s++ = K_SPECIAL;
2627 *s++ = KS_SPECIAL;
2628 *s++ = KE_FILLER;
2629 }
2630#ifdef FEAT_GUI
2631 else if (c == CSI)
2632 {
2633 *s++ = CSI;
2634 *s++ = KS_EXTRA;
2635 *s++ = (int)KE_CSI;
2636 }
2637#endif
2638 else
2639 *s++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 return s;
2642}
2643
2644/*
2645 * move cursor to start of line
2646 * if flags & BL_WHITE move to first non-white
2647 * if flags & BL_SOL move to first non-white if startofline is set,
2648 * otherwise keep "curswant" column
2649 * if flags & BL_FIX don't leave the cursor on a NUL.
2650 */
2651 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002652beginline(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653{
2654 if ((flags & BL_SOL) && !p_sol)
2655 coladvance(curwin->w_curswant);
2656 else
2657 {
2658 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660
2661 if (flags & (BL_WHITE | BL_SOL))
2662 {
2663 char_u *ptr;
2664
Bram Moolenaar1c465442017-03-12 20:10:05 +01002665 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
2667 ++curwin->w_cursor.col;
2668 }
2669 curwin->w_set_curswant = TRUE;
2670 }
2671}
2672
2673/*
2674 * oneright oneleft cursor_down cursor_up
2675 *
2676 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002677 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 * Return OK when successful, FAIL when we hit a line of file boundary.
2679 */
2680
2681 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002682oneright(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683{
2684 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 if (virtual_active())
2688 {
2689 pos_T prevpos = curwin->w_cursor;
2690
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002691 // Adjust for multi-wide char (excluding TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002693 coladvance(getviscol() + ((*ptr != TAB
2694 && vim_isprintc((*mb_ptr2char)(ptr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 ? ptr2cells(ptr) : 1));
2696 curwin->w_set_curswant = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002697 // Return OK if the cursor moved, FAIL otherwise (at window edge).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 return (prevpos.col != curwin->w_cursor.col
2699 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
2700 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701
2702 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002703 if (*ptr == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002704 return FAIL; // already at the very end
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002705
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002706 if (has_mbyte)
2707 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 else
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002709 l = 1;
2710
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002711 // move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
2712 // contains "onemore".
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002713 if (ptr[l] == NUL && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002714 return FAIL;
2715 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716
2717 curwin->w_set_curswant = TRUE;
2718 return OK;
2719}
2720
2721 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002722oneleft(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 if (virtual_active())
2725 {
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002726#ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 int width;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002728#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 int v = getviscol();
2730
2731 if (v == 0)
2732 return FAIL;
2733
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002734#ifdef FEAT_LINEBREAK
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002735 // We might get stuck on 'showbreak', skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 width = 1;
2737 for (;;)
2738 {
2739 coladvance(v - width);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002740 // getviscol() is slow, skip it when 'showbreak' is empty,
2741 // 'breakindent' is not set and there are no multi-byte
2742 // characters
Bram Moolenaaree857022019-11-09 23:26:40 +01002743 if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri
Bram Moolenaar13505972019-01-24 15:04:48 +01002744 && !has_mbyte) || getviscol() < v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 break;
2746 ++width;
2747 }
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002748#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 coladvance(v - 1);
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002750#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751
2752 if (curwin->w_cursor.coladd == 1)
2753 {
2754 char_u *ptr;
2755
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002756 // Adjust for multi-wide char (not a TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002758 if (*ptr != TAB && vim_isprintc((*mb_ptr2char)(ptr))
2759 && ptr2cells(ptr) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 curwin->w_cursor.coladd = 0;
2761 }
2762
2763 curwin->w_set_curswant = TRUE;
2764 return OK;
2765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766
2767 if (curwin->w_cursor.col == 0)
2768 return FAIL;
2769
2770 curwin->w_set_curswant = TRUE;
2771 --curwin->w_cursor.col;
2772
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002773 // if the character on the left of the current cursor is a multi-byte
2774 // character, move to its first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 if (has_mbyte)
2776 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 return OK;
2778}
2779
2780 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002781cursor_up(
2782 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002783 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784{
2785 linenr_T lnum;
2786
2787 if (n > 0)
2788 {
2789 lnum = curwin->w_cursor.lnum;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002790 // This fails if the cursor is already in the first line or the count
2791 // is larger than the line number and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002792 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 return FAIL;
2794 if (n >= lnum)
2795 lnum = 1;
2796 else
2797#ifdef FEAT_FOLDING
2798 if (hasAnyFolding(curwin))
2799 {
2800 /*
2801 * Count each sequence of folded lines as one logical line.
2802 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002803 // go to the start of the current fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 (void)hasFolding(lnum, &lnum, NULL);
2805
2806 while (n--)
2807 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002808 // move up one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 --lnum;
2810 if (lnum <= 1)
2811 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002812 // If we entered a fold, move to the beginning, unless in
2813 // Insert mode or when 'foldopen' contains "all": it will open
2814 // in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
2816 (void)hasFolding(lnum, &lnum, NULL);
2817 }
2818 if (lnum < 1)
2819 lnum = 1;
2820 }
2821 else
2822#endif
2823 lnum -= n;
2824 curwin->w_cursor.lnum = lnum;
2825 }
2826
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002827 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 coladvance(curwin->w_curswant);
2829
2830 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002831 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832
2833 return OK;
2834}
2835
2836/*
2837 * Cursor down a number of logical lines.
2838 */
2839 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002840cursor_down(
2841 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002842 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843{
2844 linenr_T lnum;
2845
2846 if (n > 0)
2847 {
2848 lnum = curwin->w_cursor.lnum;
2849#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002850 // Move to last line of fold, will fail if it's the end-of-file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 (void)hasFolding(lnum, NULL, &lnum);
2852#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002853 // This fails if the cursor is already in the last line or would move
2854 // beyond the last line and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002855 if (lnum >= curbuf->b_ml.ml_line_count
2856 || (lnum + n > curbuf->b_ml.ml_line_count
2857 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 return FAIL;
2859 if (lnum + n >= curbuf->b_ml.ml_line_count)
2860 lnum = curbuf->b_ml.ml_line_count;
2861 else
2862#ifdef FEAT_FOLDING
2863 if (hasAnyFolding(curwin))
2864 {
2865 linenr_T last;
2866
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002867 // count each sequence of folded lines as one logical line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 while (n--)
2869 {
2870 if (hasFolding(lnum, NULL, &last))
2871 lnum = last + 1;
2872 else
2873 ++lnum;
2874 if (lnum >= curbuf->b_ml.ml_line_count)
2875 break;
2876 }
2877 if (lnum > curbuf->b_ml.ml_line_count)
2878 lnum = curbuf->b_ml.ml_line_count;
2879 }
2880 else
2881#endif
2882 lnum += n;
2883 curwin->w_cursor.lnum = lnum;
2884 }
2885
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002886 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 coladvance(curwin->w_curswant);
2888
2889 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002890 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891
2892 return OK;
2893}
2894
2895/*
2896 * Stuff the last inserted text in the read buffer.
2897 * Last_insert actually is a copy of the redo buffer, so we
2898 * first have to remove the command.
2899 */
2900 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002901stuff_inserted(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002902 int c, // Command character to be inserted
2903 long count, // Repeat this many times
2904 int no_esc) // Don't add an ESC at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905{
2906 char_u *esc_ptr;
2907 char_u *ptr;
2908 char_u *last_ptr;
2909 char_u last = NUL;
2910
2911 ptr = get_last_insert();
2912 if (ptr == NULL)
2913 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002914 emsg(_(e_noinstext));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 return FAIL;
2916 }
2917
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002918 // may want to stuff the command character, to start Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 if (c != NUL)
2920 stuffcharReadbuff(c);
2921 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002922 *esc_ptr = NUL; // remove the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002924 // when the last char is either "0" or "^" it will be quoted if no ESC
2925 // comes after it OR if it will inserted more than once and "ptr"
2926 // starts with ^D. -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
2928 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
2929 && (no_esc || (*ptr == Ctrl_D && count > 1)))
2930 {
2931 last = *last_ptr;
2932 *last_ptr = NUL;
2933 }
2934
2935 do
2936 {
2937 stuffReadbuff(ptr);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002938 // a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 if (last)
2940 stuffReadbuff((char_u *)(last == '0'
2941 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
2942 : IF_EB("\026^", CTRL_V_STR "^")));
2943 }
2944 while (--count > 0);
2945
2946 if (last)
2947 *last_ptr = last;
2948
2949 if (esc_ptr != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002950 *esc_ptr = ESC; // put the ESC back
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002952 // may want to stuff a trailing ESC, to get out of Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 if (!no_esc)
2954 stuffcharReadbuff(ESC);
2955
2956 return OK;
2957}
2958
2959 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002960get_last_insert(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961{
2962 if (last_insert == NULL)
2963 return NULL;
2964 return last_insert + last_insert_skip;
2965}
2966
2967/*
2968 * Get last inserted string, and remove trailing <Esc>.
2969 * Returns pointer to allocated memory (must be freed) or NULL.
2970 */
2971 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002972get_last_insert_save(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 char_u *s;
2975 int len;
2976
2977 if (last_insert == NULL)
2978 return NULL;
2979 s = vim_strsave(last_insert + last_insert_skip);
2980 if (s != NULL)
2981 {
2982 len = (int)STRLEN(s);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002983 if (len > 0 && s[len - 1] == ESC) // remove trailing ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 s[len - 1] = NUL;
2985 }
2986 return s;
2987}
2988
2989/*
2990 * Check the word in front of the cursor for an abbreviation.
2991 * Called when the non-id character "c" has been entered.
2992 * When an abbreviation is recognized it is removed from the text and
2993 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
2994 */
2995 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002996echeck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002998 // Don't check for abbreviation in paste mode, when disabled and just
2999 // after moving around with cursor keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 if (p_paste || no_abbr || arrow_used)
3001 return FALSE;
3002
3003 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
3004 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
3005}
3006
3007/*
3008 * replace-stack functions
3009 *
3010 * When replacing characters, the replaced characters are remembered for each
3011 * new character. This is used to re-insert the old text when backspacing.
3012 *
3013 * There is a NUL headed list of characters for each character that is
3014 * currently in the file after the insertion point. When BS is used, one NUL
3015 * headed list is put back for the deleted character.
3016 *
3017 * For a newline, there are two NUL headed lists. One contains the characters
3018 * that the NL replaced. The extra one stores the characters after the cursor
3019 * that were deleted (always white space).
3020 *
3021 * Replace_offset is normally 0, in which case replace_push will add a new
3022 * character at the end of the stack. If replace_offset is not 0, that many
3023 * characters will be left on the stack above the newly inserted character.
3024 */
3025
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003026static char_u *replace_stack = NULL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003027static long replace_stack_nr = 0; // next entry in replace stack
3028static long replace_stack_len = 0; // max. number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029
3030 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003031replace_push(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003032 int c) // character that is replaced (NUL is none)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033{
3034 char_u *p;
3035
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003036 if (replace_stack_nr < replace_offset) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 return;
3038 if (replace_stack_len <= replace_stack_nr)
3039 {
3040 replace_stack_len += 50;
Bram Moolenaar3397f742019-06-02 18:40:06 +02003041 p = ALLOC_MULT(char_u, replace_stack_len);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003042 if (p == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 {
3044 replace_stack_len -= 50;
3045 return;
3046 }
3047 if (replace_stack != NULL)
3048 {
3049 mch_memmove(p, replace_stack,
3050 (size_t)(replace_stack_nr * sizeof(char_u)));
3051 vim_free(replace_stack);
3052 }
3053 replace_stack = p;
3054 }
3055 p = replace_stack + replace_stack_nr - replace_offset;
3056 if (replace_offset)
3057 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
3058 *p = c;
3059 ++replace_stack_nr;
3060}
3061
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003062/*
3063 * Push a character onto the replace stack. Handles a multi-byte character in
3064 * reverse byte order, so that the first byte is popped off first.
3065 * Return the number of bytes done (includes composing characters).
3066 */
3067 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003068replace_push_mb(char_u *p)
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003069{
3070 int l = (*mb_ptr2len)(p);
3071 int j;
3072
3073 for (j = l - 1; j >= 0; --j)
3074 replace_push(p[j]);
3075 return l;
3076}
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003077
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078/*
3079 * Pop one item from the replace stack.
3080 * return -1 if stack empty
3081 * return replaced character or NUL otherwise
3082 */
3083 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003084replace_pop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085{
3086 if (replace_stack_nr == 0)
3087 return -1;
3088 return (int)replace_stack[--replace_stack_nr];
3089}
3090
3091/*
3092 * Join the top two items on the replace stack. This removes to "off"'th NUL
3093 * encountered.
3094 */
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003095 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003096replace_join(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003097 int off) // offset for which NUL to remove
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098{
3099 int i;
3100
3101 for (i = replace_stack_nr; --i >= 0; )
3102 if (replace_stack[i] == NUL && off-- <= 0)
3103 {
3104 --replace_stack_nr;
3105 mch_memmove(replace_stack + i, replace_stack + i + 1,
3106 (size_t)(replace_stack_nr - i));
3107 return;
3108 }
3109}
3110
3111/*
3112 * Pop bytes from the replace stack until a NUL is found, and insert them
3113 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
3114 */
3115 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003116replace_pop_ins(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117{
3118 int cc;
3119 int oldState = State;
3120
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003121 State = NORMAL; // don't want REPLACE here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 while ((cc = replace_pop()) > 0)
3123 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 mb_replace_pop_ins(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 dec_cursor();
3126 }
3127 State = oldState;
3128}
3129
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130/*
3131 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
3132 * indicates a multi-byte char, pop the other bytes too.
3133 */
3134 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003135mb_replace_pop_ins(int cc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136{
3137 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02003138 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 int i;
3140 int c;
3141
3142 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
3143 {
3144 buf[0] = cc;
3145 for (i = 1; i < n; ++i)
3146 buf[i] = replace_pop();
3147 ins_bytes_len(buf, n);
3148 }
3149 else
3150 ins_char(cc);
3151
3152 if (enc_utf8)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003153 // Handle composing chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 for (;;)
3155 {
3156 c = replace_pop();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003157 if (c == -1) // stack empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 break;
3159 if ((n = MB_BYTE2LEN(c)) == 1)
3160 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003161 // Not a multi-byte char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 replace_push(c);
3163 break;
3164 }
3165 else
3166 {
3167 buf[0] = c;
3168 for (i = 1; i < n; ++i)
3169 buf[i] = replace_pop();
3170 if (utf_iscomposing(utf_ptr2char(buf)))
3171 ins_bytes_len(buf, n);
3172 else
3173 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003174 // Not a composing char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 for (i = n - 1; i >= 0; --i)
3176 replace_push(buf[i]);
3177 break;
3178 }
3179 }
3180 }
3181}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182
3183/*
3184 * make the replace stack empty
3185 * (called when exiting replace mode)
3186 */
3187 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003188replace_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189{
Bram Moolenaard23a8232018-02-10 18:45:26 +01003190 VIM_CLEAR(replace_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 replace_stack_len = 0;
3192 replace_stack_nr = 0;
3193}
3194
3195/*
3196 * Handle doing a BS for one character.
3197 * cc < 0: replace stack empty, just move cursor
3198 * cc == 0: character was inserted, delete it
3199 * cc > 0: character was replaced, put cc (first byte of original char) back
3200 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003201 * When "limit_col" is >= 0, don't delete before this column. Matters when
3202 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203 */
3204 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003205replace_do_bs(int limit_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206{
3207 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 int orig_len = 0;
3209 int ins_len;
3210 int orig_vcols = 0;
3211 colnr_T start_vcol;
3212 char_u *p;
3213 int i;
3214 int vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215
3216 cc = replace_pop();
3217 if (cc > 0)
3218 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003219#ifdef FEAT_PROP_POPUP
Bram Moolenaar6d11f3b2019-01-06 17:44:38 +01003220 size_t len_before = 0; // init to shut up GCC
Bram Moolenaar196d1572019-01-02 23:47:18 +01003221
3222 if (curbuf->b_has_textprop)
3223 {
3224 // Do not adjust text properties for individual delete and insert
3225 // operations, do it afterwards on the resulting text.
3226 len_before = STRLEN(ml_get_curline());
3227 ++text_prop_frozen;
3228 }
3229#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 if (State & VREPLACE_FLAG)
3231 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003232 // Get the number of screen cells used by the character we are
3233 // going to delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
3235 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
3236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 if (has_mbyte)
3238 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003239 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003241 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 replace_push(cc);
3243 }
3244 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 {
3246 pchar_cursor(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003248 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 }
3250 replace_pop_ins();
3251
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 if (State & VREPLACE_FLAG)
3253 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003254 // Get the number of screen cells used by the inserted characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003256 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 vcol = start_vcol;
3258 for (i = 0; i < ins_len; ++i)
3259 {
3260 vcol += chartabsize(p + i, vcol);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003261 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 }
3263 vcol -= start_vcol;
3264
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003265 // Delete spaces that were inserted after the cursor to keep the
3266 // text aligned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 curwin->w_cursor.col += ins_len;
3268 while (vcol > orig_vcols && gchar_cursor() == ' ')
3269 {
3270 del_char(FALSE);
3271 ++orig_vcols;
3272 }
3273 curwin->w_cursor.col -= ins_len;
3274 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275
Bram Moolenaar196d1572019-01-02 23:47:18 +01003276 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003278
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003279#ifdef FEAT_PROP_POPUP
Bram Moolenaar196d1572019-01-02 23:47:18 +01003280 if (curbuf->b_has_textprop)
3281 {
3282 size_t len_now = STRLEN(ml_get_curline());
3283
3284 --text_prop_frozen;
3285 adjust_prop_columns(curwin->w_cursor.lnum, curwin->w_cursor.col,
Bram Moolenaarf3333b02019-05-19 22:53:40 +02003286 (int)(len_now - len_before), 0);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003287 }
3288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 }
3290 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003291 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292}
3293
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
3295/*
3296 * Map Hebrew keyboard when in hkmap mode.
3297 */
3298 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003299hkmap(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003301 if (p_hkmapp) // phonetic mapping, by Ilya Dogolazky
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 {
3303 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
3304 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
3305 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
3306 static char_u map[26] =
3307 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
3308 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
3309 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
3310 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
3311 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
3312 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
3313 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
3314 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
3315 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
3316
3317 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
3318 return (int)(map[CharOrd(c)] - 1 + p_aleph);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003319 // '-1'='sofit'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 else if (c == 'x')
3321 return 'X';
3322 else if (c == 'q')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003323 return '\''; // {geresh}={'}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 else if (c == 246)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003325 return ' '; // \"o --> ' ' for a german keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 else if (c == 228)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003327 return ' '; // \"a --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 else if (c == 252)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003329 return ' '; // \"u --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330#ifdef EBCDIC
3331 else if (islower(c))
3332#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003333 // NOTE: islower() does not do the right thing for us on Linux so we
3334 // do this the same was as 5.7 and previous, so it works correctly on
3335 // all systems. Specifically, the e.g. Delete and Arrow keys are
3336 // munged and won't work if e.g. searching for Hebrew text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 else if (c >= 'a' && c <= 'z')
3338#endif
3339 return (int)(map[CharOrdLow(c)] + p_aleph);
3340 else
3341 return c;
3342 }
3343 else
3344 {
3345 switch (c)
3346 {
3347 case '`': return ';';
3348 case '/': return '.';
3349 case '\'': return ',';
3350 case 'q': return '/';
3351 case 'w': return '\'';
3352
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003353 // Hebrew letters - set offset from 'a'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354 case ',': c = '{'; break;
3355 case '.': c = 'v'; break;
3356 case ';': c = 't'; break;
3357 default: {
3358 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
3359
3360#ifdef EBCDIC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003361 // see note about islower() above
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 if (!islower(c))
3363#else
3364 if (c < 'a' || c > 'z')
3365#endif
3366 return c;
3367 c = str[CharOrdLow(c)];
3368 break;
3369 }
3370 }
3371
3372 return (int)(CharOrdLow(c) + p_aleph);
3373 }
3374}
3375#endif
3376
3377 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003378ins_reg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379{
3380 int need_redraw = FALSE;
3381 int regname;
3382 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003383 int vis_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384
3385 /*
3386 * If we are going to wait for a character, show a '"'.
3387 */
3388 pc_status = PC_STATUS_UNSET;
3389 if (redrawing() && !char_avail())
3390 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003391 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00003392 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393
3394 edit_putchar('"', TRUE);
3395#ifdef FEAT_CMDL_INFO
3396 add_to_showcmd_c(Ctrl_R);
3397#endif
3398 }
3399
3400#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003401 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402#endif
3403
3404 /*
3405 * Don't map the register name. This also prevents the mode message to be
3406 * deleted when ESC is hit.
3407 */
3408 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003409 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003410 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
3413 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003414 // Get a third key for literal register insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 literally = regname;
3416#ifdef FEAT_CMDL_INFO
3417 add_to_showcmd_c(literally);
3418#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003419 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 }
3422 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003423 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424
3425#ifdef FEAT_EVAL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003426 // Don't call u_sync() while typing the expression or giving an error
3427 // message for it. Only call it explicitly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 ++no_u_sync;
3429 if (regname == '=')
3430 {
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003431 pos_T curpos = curwin->w_cursor;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003432# ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003434# endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003435 // Sync undo when evaluating the expression calls setline() or
3436 // append(), so that it can be undone separately.
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003437 u_sync_once = 2;
Bram Moolenaar5737ca22013-06-27 22:21:24 +02003438
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 regname = get_expr_register();
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003440
3441 // Cursor may be moved back a column.
3442 curwin->w_cursor = curpos;
3443 check_cursor();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003444# ifdef HAVE_INPUT_METHOD
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003445 // Restore the Input Method.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 if (im_on)
3447 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003448# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00003450 if (regname == NUL || !valid_yank_reg(regname, FALSE))
3451 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003452 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003453 need_redraw = TRUE; // remove the '"'
Bram Moolenaar677ee682005-01-27 14:41:15 +00003454 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 else
3456 {
3457#endif
3458 if (literally == Ctrl_O || literally == Ctrl_P)
3459 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003460 // Append the command to the redo buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 AppendCharToRedobuff(Ctrl_R);
3462 AppendCharToRedobuff(literally);
3463 AppendCharToRedobuff(regname);
3464
3465 do_put(regname, BACKWARD, 1L,
3466 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
3467 }
3468 else if (insert_reg(regname, literally) == FAIL)
3469 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003470 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003471 need_redraw = TRUE; // remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003473 else if (stop_insert_mode)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003474 // When the '=' register was used and a function was invoked that
3475 // did ":stopinsert" then stuff_empty() returns FALSE but we won't
3476 // insert anything, need to remove the '"'
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003477 need_redraw = TRUE;
3478
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479#ifdef FEAT_EVAL
3480 }
3481 --no_u_sync;
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003482 if (u_sync_once == 1)
3483 ins_need_undo = TRUE;
3484 u_sync_once = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485#endif
3486#ifdef FEAT_CMDL_INFO
3487 clear_showcmd();
3488#endif
3489
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003490 // If the inserted register is empty, we need to remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 if (need_redraw || stuff_empty())
3492 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003493
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003494 // Disallow starting Visual mode here, would get a weird mode.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003495 if (!vis_active && VIsual_active)
3496 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497}
3498
3499/*
3500 * CTRL-G commands in Insert mode.
3501 */
3502 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003503ins_ctrl_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504{
3505 int c;
3506
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003507 // Right after CTRL-X the cursor will be after the ruler.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509
3510 /*
3511 * Don't map the second key. This also prevents the mode message to be
3512 * deleted when ESC is hit.
3513 */
3514 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003515 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003516 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003518 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 switch (c)
3520 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003521 // CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 case K_UP:
3523 case Ctrl_K:
3524 case 'k': ins_up(TRUE);
3525 break;
3526
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003527 // CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 case K_DOWN:
3529 case Ctrl_J:
3530 case 'j': ins_down(TRUE);
3531 break;
3532
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003533 // CTRL-G u: start new undoable edit
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003534 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003536
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003537 // Need to reset Insstart, esp. because a BS that joins
3538 // a line to the previous one must save for undo.
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01003539 update_Insstart_orig = FALSE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003540 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 break;
3542
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003543 // CTRL-G U: do not break undo with the next char
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003544 case 'U':
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003545 // Allow one left/right cursor movement with the next char,
3546 // without breaking undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003547 dont_sync_undo = MAYBE;
3548 break;
3549
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003550 // Unknown CTRL-G command, reserved for future expansion.
Bram Moolenaar165bc692015-07-21 17:53:25 +02003551 default: vim_beep(BO_CTRLG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 }
3553}
3554
3555/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003556 * CTRL-^ in Insert mode.
3557 */
3558 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003559ins_ctrl_hat(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003560{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003561 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003562 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003563 // ":lmap" mappings exists, Toggle use of ":lmap" mappings.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003564 if (State & LANGMAP)
3565 {
3566 curbuf->b_p_iminsert = B_IMODE_NONE;
3567 State &= ~LANGMAP;
3568 }
3569 else
3570 {
3571 curbuf->b_p_iminsert = B_IMODE_LMAP;
3572 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003573#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003574 im_set_active(FALSE);
3575#endif
3576 }
3577 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003578#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003579 else
3580 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003581 // There are no ":lmap" mappings, toggle IM
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003582 if (im_get_status())
3583 {
3584 curbuf->b_p_iminsert = B_IMODE_NONE;
3585 im_set_active(FALSE);
3586 }
3587 else
3588 {
3589 curbuf->b_p_iminsert = B_IMODE_IM;
3590 State &= ~LANGMAP;
3591 im_set_active(TRUE);
3592 }
3593 }
3594#endif
3595 set_iminsert_global();
3596 showmode();
3597#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003598 // may show different cursor shape or color
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003599 if (gui.in_use)
3600 gui_update_cursor(TRUE, FALSE);
3601#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003602#if defined(FEAT_KEYMAP)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003603 // Show/unshow value of 'keymap' in status lines.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003604 status_redraw_curbuf();
3605#endif
3606}
3607
3608/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 * Handle ESC in insert mode.
3610 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
3611 * insert.
3612 */
3613 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003614ins_esc(
3615 long *count,
3616 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003617 int nomove) // don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618{
3619 int temp;
3620 static int disabled_redraw = FALSE;
3621
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003622#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003623 check_spell_redraw();
3624#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625
3626 temp = curwin->w_cursor.col;
3627 if (disabled_redraw)
3628 {
3629 --RedrawingDisabled;
3630 disabled_redraw = FALSE;
3631 }
3632 if (!arrow_used)
3633 {
3634 /*
3635 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00003636 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
3637 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 */
3639 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00003640 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641
3642 /*
3643 * Repeating insert may take a long time. Check for
3644 * interrupt now and then.
3645 */
3646 if (*count > 0)
3647 {
3648 line_breakcheck();
3649 if (got_int)
3650 *count = 0;
3651 }
3652
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003653 if (--*count > 0) // repeat what was typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003655 // Vi repeats the insert without replacing characters.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003656 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
3657 State &= ~REPLACE_FLAG;
3658
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 (void)start_redo_ins();
3660 if (cmdchar == 'r' || cmdchar == 'v')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003661 stuffRedoReadbuff(ESC_STR); // no ESC in redo buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 ++RedrawingDisabled;
3663 disabled_redraw = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003664 return FALSE; // repeat the insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 }
Bram Moolenaarf332a652013-11-04 04:20:33 +01003666 stop_insert(&curwin->w_cursor, TRUE, nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 undisplay_dollar();
3668 }
3669
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003670 // When an autoindent was removed, curswant stays after the
3671 // indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
3673 curwin->w_set_curswant = TRUE;
3674
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003675 // Remember the last Insert position in the '^ mark.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 if (!cmdmod.keepjumps)
3677 curbuf->b_last_insert = curwin->w_cursor;
3678
3679 /*
3680 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00003681 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00003683 if (!nomove
3684 && (curwin->w_cursor.col != 0
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003685 || curwin->w_cursor.coladd > 0)
Bram Moolenaar488c6512005-08-11 20:09:58 +00003686 && (restart_edit == NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003687 || (gchar_cursor() == NUL && !VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688#ifdef FEAT_RIGHTLEFT
3689 && !revins_on
3690#endif
3691 )
3692 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 if (curwin->w_cursor.coladd > 0 || ve_flags == VE_ALL)
3694 {
3695 oneleft();
3696 if (restart_edit != NUL)
3697 ++curwin->w_cursor.coladd;
3698 }
3699 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 {
3701 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003702 // Correct cursor for multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 if (has_mbyte)
3704 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 }
3706 }
3707
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003708#ifdef HAVE_INPUT_METHOD
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003709 // Disable IM to allow typing English directly for Normal mode commands.
3710 // When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
3711 // well).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 if (!(State & LANGMAP))
3713 im_save_status(&curbuf->b_p_iminsert);
3714 im_set_active(FALSE);
3715#endif
3716
3717 State = NORMAL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003718 // need to position cursor again (e.g. when on a TAB )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 changed_cline_bef_curs();
3720
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722#ifdef CURSOR_SHAPE
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003723 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003725 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003726 {
3727 // Re-enable bracketed paste mode.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003728 out_str(T_BE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003730 // Re-enable modifyOtherKeys.
3731 out_str(T_CTI);
3732 }
3733
Bram Moolenaarad3ec762019-04-21 00:00:13 +02003734 // When recording or for CTRL-O, need to display the new mode.
3735 // Otherwise remove the mode message.
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02003736 if (reg_recording != 0 || restart_edit != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 showmode();
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +02003738 else if (p_smd && (got_int || !skip_showmode()))
Bram Moolenaar32526b32019-01-19 17:43:09 +01003739 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003741 return TRUE; // exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742}
3743
3744#ifdef FEAT_RIGHTLEFT
3745/*
3746 * Toggle language: hkmap and revins_on.
3747 * Move to end of reverse inserted text.
3748 */
3749 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003750ins_ctrl_(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751{
3752 if (revins_on && revins_chars && revins_scol >= 0)
3753 {
3754 while (gchar_cursor() != NUL && revins_chars--)
3755 ++curwin->w_cursor.col;
3756 }
3757 p_ri = !p_ri;
3758 revins_on = (State == INSERT && p_ri);
3759 if (revins_on)
3760 {
3761 revins_scol = curwin->w_cursor.col;
3762 revins_legal++;
3763 revins_chars = 0;
3764 undisplay_dollar();
3765 }
3766 else
3767 revins_scol = -1;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003768 p_hkmap = curwin->w_p_rl ^ p_ri; // be consistent!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 showmode();
3770}
3771#endif
3772
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773/*
3774 * If 'keymodel' contains "startsel", may start selection.
3775 * Returns TRUE when a CTRL-O and other keys stuffed.
3776 */
3777 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003778ins_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779{
3780 if (km_startsel)
3781 switch (c)
3782 {
3783 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 case K_PAGEUP:
3786 case K_KPAGEUP:
3787 case K_PAGEDOWN:
3788 case K_KPAGEDOWN:
Bram Moolenaard0573012017-10-28 21:11:06 +02003789# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 case K_LEFT:
3791 case K_RIGHT:
3792 case K_UP:
3793 case K_DOWN:
3794 case K_END:
3795 case K_HOME:
3796# endif
3797 if (!(mod_mask & MOD_MASK_SHIFT))
3798 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003799 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 case K_S_LEFT:
3801 case K_S_RIGHT:
3802 case K_S_UP:
3803 case K_S_DOWN:
3804 case K_S_END:
3805 case K_S_HOME:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003806 // Start selection right away, the cursor can move with
3807 // CTRL-O when beyond the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 start_selection();
3809
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003810 // Execute the key in (insert) Select mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 stuffcharReadbuff(Ctrl_O);
3812 if (mod_mask)
3813 {
3814 char_u buf[4];
3815
3816 buf[0] = K_SPECIAL;
3817 buf[1] = KS_MODIFIER;
3818 buf[2] = mod_mask;
3819 buf[3] = NUL;
3820 stuffReadbuff(buf);
3821 }
3822 stuffcharReadbuff(c);
3823 return TRUE;
3824 }
3825 return FALSE;
3826}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827
3828/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003829 * <Insert> key in Insert mode: toggle insert/replace mode.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003830 */
3831 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003832ins_insert(int replaceState)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003833{
Bram Moolenaar14184a32019-02-16 15:10:30 +01003834#ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003835 set_vim_var_string(VV_INSERTMODE,
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02003836 (char_u *)((State & REPLACE_FLAG) ? "i"
3837 : replaceState == VREPLACE ? "v"
3838 : "r"), 1);
Bram Moolenaar14184a32019-02-16 15:10:30 +01003839#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02003840 ins_apply_autocmds(EVENT_INSERTCHANGE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003841 if (State & REPLACE_FLAG)
3842 State = INSERT | (State & LANGMAP);
3843 else
3844 State = replaceState | (State & LANGMAP);
3845 AppendCharToRedobuff(K_INS);
3846 showmode();
3847#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003848 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003849#endif
3850}
3851
3852/*
3853 * Pressed CTRL-O in Insert mode.
3854 */
3855 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003856ins_ctrl_o(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003857{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003858 if (State & VREPLACE_FLAG)
3859 restart_edit = 'V';
3860 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003861 if (State & REPLACE_FLAG)
3862 restart_edit = 'R';
3863 else
3864 restart_edit = 'I';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003865 if (virtual_active())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003866 ins_at_eol = FALSE; // cursor always keeps its column
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003867 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003868 ins_at_eol = (gchar_cursor() == NUL);
3869}
3870
3871/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 * If the cursor is on an indent, ^T/^D insert/delete one
3873 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00003874 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 * with vi. But vi only supports ^T and ^D after an
3876 * autoindent, we support it everywhere.
3877 */
3878 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003879ins_shift(int c, int lastc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880{
3881 if (stop_arrow() == FAIL)
3882 return;
3883 AppendCharToRedobuff(c);
3884
3885 /*
3886 * 0^D and ^^D: remove all indent.
3887 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00003888 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
3889 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 {
3891 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003892 (void)del_char(FALSE); // delete the '^' or '0'
3893 // In Replace mode, restore the characters that '^' or '0' replaced.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 if (State & REPLACE_FLAG)
3895 replace_pop_ins();
3896 if (lastc == '^')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003897 old_indent = get_indent(); // remember curr. indent
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003898 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 }
3900 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003901 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902
3903 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
3904 did_ai = FALSE;
3905#ifdef FEAT_SMARTINDENT
3906 did_si = FALSE;
3907 can_si = FALSE;
3908 can_si_back = FALSE;
3909#endif
3910#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003911 can_cindent = FALSE; // no cindenting after ^D or ^T
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912#endif
3913}
3914
3915 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003916ins_del(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917{
3918 int temp;
3919
3920 if (stop_arrow() == FAIL)
3921 return;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003922 if (gchar_cursor() == NUL) // delete newline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 {
3924 temp = curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003925 if (!can_bs(BS_EOL) // only if "eol" included
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02003926 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003927 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 else
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003929 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 curwin->w_cursor.col = temp;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003931 // Adjust orig_line_count in case more lines have been deleted than
3932 // have been added. That makes sure, that open_line() later
3933 // can access all buffer lines correctly
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003934 if (State & VREPLACE_FLAG &&
3935 orig_line_count > curbuf->b_ml.ml_line_count)
3936 orig_line_count = curbuf->b_ml.ml_line_count;
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003939 else if (del_char(FALSE) == FAIL) // delete char under cursor
Bram Moolenaar165bc692015-07-21 17:53:25 +02003940 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 did_ai = FALSE;
3942#ifdef FEAT_SMARTINDENT
3943 did_si = FALSE;
3944 can_si = FALSE;
3945 can_si_back = FALSE;
3946#endif
3947 AppendCharToRedobuff(K_DEL);
3948}
3949
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003950/*
3951 * Delete one character for ins_bs().
3952 */
3953 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003954ins_bs_one(colnr_T *vcolp)
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003955{
3956 dec_cursor();
3957 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
3958 if (State & REPLACE_FLAG)
3959 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003960 // Don't delete characters before the insert point when in
3961 // Replace mode
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003962 if (curwin->w_cursor.lnum != Insstart.lnum
3963 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003964 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003965 }
3966 else
3967 (void)del_char(FALSE);
3968}
3969
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970/*
3971 * Handle Backspace, delete-word and delete-line in Insert mode.
3972 * Return TRUE when backspace was actually used.
3973 */
3974 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003975ins_bs(
3976 int c,
3977 int mode,
3978 int *inserted_space_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979{
3980 linenr_T lnum;
3981 int cc;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003982 int temp = 0; // init for GCC
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003983 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 colnr_T mincol;
3985 int did_backspace = FALSE;
3986 int in_indent;
3987 int oldState;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003988 int cpc[MAX_MCO]; // composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989
3990 /*
3991 * can't delete anything in an empty file
3992 * can't backup past first character in buffer
3993 * can't backup past starting point unless 'backspace' > 1
3994 * can backup to a previous line if 'backspace' == 0
3995 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003996 if ( BUFEMPTY()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 || (
3998#ifdef FEAT_RIGHTLEFT
3999 !revins_on &&
4000#endif
4001 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
4002 || (!can_bs(BS_START)
4003 && (arrow_used
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004004 || (curwin->w_cursor.lnum == Insstart_orig.lnum
4005 && curwin->w_cursor.col <= Insstart_orig.col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
4007 && curwin->w_cursor.col <= ai_col)
4008 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
4009 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02004010 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 return FALSE;
4012 }
4013
4014 if (stop_arrow() == FAIL)
4015 return FALSE;
4016 in_indent = inindent(0);
4017#ifdef FEAT_CINDENT
4018 if (in_indent)
4019 can_cindent = FALSE;
4020#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004021 end_comment_pending = NUL; // After BS, don't auto-end comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004023 if (revins_on) // put cursor after last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 inc_cursor();
4025#endif
4026
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004027 // Virtualedit:
4028 // BACKSPACE_CHAR eats a virtual space
4029 // BACKSPACE_WORD eats all coladd
4030 // BACKSPACE_LINE eats all coladd and keeps going
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 if (curwin->w_cursor.coladd > 0)
4032 {
4033 if (mode == BACKSPACE_CHAR)
4034 {
4035 --curwin->w_cursor.coladd;
4036 return TRUE;
4037 }
4038 if (mode == BACKSPACE_WORD)
4039 {
4040 curwin->w_cursor.coladd = 0;
4041 return TRUE;
4042 }
4043 curwin->w_cursor.coladd = 0;
4044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045
4046 /*
Bram Moolenaar878c2632017-04-01 15:15:52 +02004047 * Delete newline!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 */
4049 if (curwin->w_cursor.col == 0)
4050 {
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004051 lnum = Insstart.lnum;
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004052 if (curwin->w_cursor.lnum == lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053#ifdef FEAT_RIGHTLEFT
4054 || revins_on
4055#endif
4056 )
4057 {
4058 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
4059 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
4060 return FALSE;
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004061 --Insstart.lnum;
Bram Moolenaar04000562017-04-03 21:35:42 +02004062 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 }
4064 /*
4065 * In replace mode:
4066 * cc < 0: NL was inserted, delete it
4067 * cc >= 0: NL was replaced, put original characters back
4068 */
4069 cc = -1;
4070 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004071 cc = replace_pop(); // returns -1 if NL was inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 /*
4073 * In replace mode, in the line we started replacing, we only move the
4074 * cursor.
4075 */
4076 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
4077 {
4078 dec_cursor();
4079 }
4080 else
4081 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 if (!(State & VREPLACE_FLAG)
4083 || curwin->w_cursor.lnum > orig_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004085 temp = gchar_cursor(); // remember current char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004087
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004088 // When "aw" is in 'formatoptions' we must delete the space at
4089 // the end of the line, otherwise the line will be broken
4090 // again when auto-formatting.
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004091 if (has_format_option(FO_AUTO)
4092 && has_format_option(FO_WHITE_PAR))
4093 {
4094 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
4095 TRUE);
4096 int len;
4097
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004098 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004099 if (len > 0 && ptr[len - 1] == ' ')
4100 ptr[len - 1] = NUL;
4101 }
4102
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004103 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 if (temp == NUL && gchar_cursor() != NUL)
4105 inc_cursor();
4106 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 else
4108 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109
4110 /*
4111 * In REPLACE mode we have to put back the text that was replaced
4112 * by the NL. On the replace stack is first a NUL-terminated
4113 * sequence of characters that were deleted and then the
4114 * characters that NL replaced.
4115 */
4116 if (State & REPLACE_FLAG)
4117 {
4118 /*
4119 * Do the next ins_char() in NORMAL state, to
4120 * prevent ins_char() from replacing characters and
4121 * avoiding showmatch().
4122 */
4123 oldState = State;
4124 State = NORMAL;
4125 /*
4126 * restore characters (blanks) deleted after cursor
4127 */
4128 while (cc > 0)
4129 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004130 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 mb_replace_pop_ins(cc);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004132 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 cc = replace_pop();
4134 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004135 // restore the characters that NL replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 replace_pop_ins();
4137 State = oldState;
4138 }
4139 }
4140 did_ai = FALSE;
4141 }
4142 else
4143 {
4144 /*
4145 * Delete character(s) before the cursor.
4146 */
4147#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004148 if (revins_on) // put cursor on last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 dec_cursor();
4150#endif
4151 mincol = 0;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004152 // keep indent
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004153 if (mode == BACKSPACE_LINE
4154 && (curbuf->b_p_ai
4155#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00004156 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004157#endif
4158 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159#ifdef FEAT_RIGHTLEFT
4160 && !revins_on
4161#endif
4162 )
4163 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004164 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00004166 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004168 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 }
4170
4171 /*
4172 * Handle deleting one 'shiftwidth' or 'softtabstop'.
4173 */
4174 if ( mode == BACKSPACE_CHAR
4175 && ((p_sta && in_indent)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004176 || ((get_sts_value() != 0
4177#ifdef FEAT_VARTABS
4178 || tabstop_count(curbuf->b_p_vsts_array)
4179#endif
4180 )
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00004181 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 && (*(ml_get_cursor() - 1) == TAB
4183 || (*(ml_get_cursor() - 1) == ' '
4184 && (!*inserted_space_p
4185 || arrow_used))))))
4186 {
4187 int ts;
4188 colnr_T vcol;
4189 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004190 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191
4192 *inserted_space_p = FALSE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004193 // Compute the virtual column where we want to be. Since
4194 // 'showbreak' may get in the way, need to get the last column of
4195 // the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004197 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 dec_cursor();
4199 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
4200 inc_cursor();
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004201#ifdef FEAT_VARTABS
4202 if (p_sta && in_indent)
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004203 {
4204 ts = (int)get_sw_value(curbuf);
4205 want_vcol = (want_vcol / ts) * ts;
4206 }
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004207 else
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004208 want_vcol = tabstop_start(want_vcol, get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004209 curbuf->b_p_vsts_array);
4210#else
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004211 if (p_sta && in_indent)
4212 ts = (int)get_sw_value(curbuf);
4213 else
4214 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 want_vcol = (want_vcol / ts) * ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004216#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004218 // delete characters until we are at or before want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 while (vcol > want_vcol
Bram Moolenaar1c465442017-03-12 20:10:05 +01004220 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004221 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004223 // insert extra spaces until we are at want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 while (vcol < want_vcol)
4225 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004226 // Remember the first char we inserted
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004227 if (curwin->w_cursor.lnum == Insstart_orig.lnum
4228 && curwin->w_cursor.col < Insstart_orig.col)
4229 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 if (State & VREPLACE_FLAG)
4232 ins_char(' ');
4233 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 {
4235 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004236 if ((State & REPLACE_FLAG))
4237 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238 }
4239 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
4240 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004241
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004242 // If we are now back where we started delete one character. Can
4243 // happen when using 'sts' and 'linebreak'.
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004244 if (vcol >= start_vcol)
4245 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 }
4247
4248 /*
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004249 * Delete up to starting point, start of line or previous word.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 */
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004251 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004253 int cclass = 0, prev_cclass = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004255 if (has_mbyte)
4256 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004257 do
4258 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004260 if (!revins_on) // put cursor on char to be deleted
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004261#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 dec_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004263
4264 cc = gchar_cursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004265 // look multi-byte character class
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004266 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004268 prev_cclass = cclass;
4269 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 }
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004271
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004272 // start of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004273 if (mode == BACKSPACE_WORD && !vim_isspace(cc))
4274 {
4275 mode = BACKSPACE_WORD_NOT_SPACE;
4276 temp = vim_iswordc(cc);
4277 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004278 // end of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004279 else if (mode == BACKSPACE_WORD_NOT_SPACE
4280 && ((vim_isspace(cc) || vim_iswordc(cc) != temp)
Bram Moolenaar13505972019-01-24 15:04:48 +01004281 || prev_cclass != cclass))
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004282 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283#ifdef FEAT_RIGHTLEFT
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004284 if (!revins_on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004286 inc_cursor();
4287#ifdef FEAT_RIGHTLEFT
4288 else if (State & REPLACE_FLAG)
4289 dec_cursor();
4290#endif
4291 break;
4292 }
4293 if (State & REPLACE_FLAG)
4294 replace_do_bs(-1);
4295 else
4296 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004297 if (enc_utf8 && p_deco)
4298 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004299 (void)del_char(FALSE);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004300 /*
4301 * If there are combining characters and 'delcombine' is set
4302 * move the cursor back. Don't back up before the base
4303 * character.
4304 */
4305 if (enc_utf8 && p_deco && cpc[0] != NUL)
4306 inc_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004307#ifdef FEAT_RIGHTLEFT
4308 if (revins_chars)
4309 {
4310 revins_chars--;
4311 revins_legal++;
4312 }
4313 if (revins_on && gchar_cursor() == NUL)
4314 break;
4315#endif
4316 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004317 // Just a single backspace?:
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004318 if (mode == BACKSPACE_CHAR)
4319 break;
4320 } while (
4321#ifdef FEAT_RIGHTLEFT
4322 revins_on ||
4323#endif
4324 (curwin->w_cursor.col > mincol
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02004325 && (can_bs(BS_NOSTOP)
4326 || (curwin->w_cursor.lnum != Insstart_orig.lnum
4327 || curwin->w_cursor.col != Insstart_orig.col)
4328 )));
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 did_backspace = TRUE;
4331 }
4332#ifdef FEAT_SMARTINDENT
4333 did_si = FALSE;
4334 can_si = FALSE;
4335 can_si_back = FALSE;
4336#endif
4337 if (curwin->w_cursor.col <= 1)
4338 did_ai = FALSE;
4339 /*
4340 * It's a little strange to put backspaces into the redo
4341 * buffer, but it makes auto-indent a lot easier to deal
4342 * with.
4343 */
4344 AppendCharToRedobuff(c);
4345
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004346 // If deleted before the insertion point, adjust it
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004347 if (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02004348 && curwin->w_cursor.col < Insstart_orig.col)
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004349 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004351 // vi behaviour: the cursor moves backward but the character that
4352 // was there remains visible
4353 // Vim behaviour: the cursor moves backward and the character that
4354 // was there is erased from the screen.
4355 // We can emulate the vi behaviour by pretending there is a dollar
4356 // displayed even when there isn't.
4357 // --pkv Sun Jan 19 01:56:40 EST 2003
Bram Moolenaar76b9b362012-02-04 23:35:00 +01004358 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 dollar_vcol = curwin->w_virtcol;
4360
Bram Moolenaarce3be472008-01-14 19:12:28 +00004361#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004362 // When deleting a char the cursor line must never be in a closed fold.
4363 // E.g., when 'foldmethod' is indent and deleting the first non-white
4364 // char before a Tab.
Bram Moolenaarce3be472008-01-14 19:12:28 +00004365 if (did_backspace)
4366 foldOpenCursor();
4367#endif
4368
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 return did_backspace;
4370}
4371
Bram Moolenaarec2da362017-01-21 20:04:22 +01004372/*
4373 * Handle receiving P_PS: start paste mode. Inserts the following text up to
4374 * P_PE literally.
4375 * When "drop" is TRUE then consume the text and drop it.
4376 */
4377 int
4378bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
4379{
4380 int c;
4381 char_u buf[NUMBUFLEN + MB_MAXBYTES];
4382 int idx = 0;
4383 char_u *end = find_termcode((char_u *)"PE");
4384 int ret_char = -1;
4385 int save_allow_keys = allow_keys;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004386 int save_paste = p_paste;
Bram Moolenaarec2da362017-01-21 20:04:22 +01004387
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004388 // If the end code is too long we can't detect it, read everything.
Bram Moolenaarfe4bbac2020-01-20 21:12:20 +01004389 if (end != NULL && STRLEN(end) >= NUMBUFLEN)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004390 end = NULL;
4391 ++no_mapping;
4392 allow_keys = 0;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004393 if (!p_paste)
4394 // Also have the side effects of setting 'paste' to make it work much
4395 // faster.
4396 set_option_value((char_u *)"paste", TRUE, NULL, 0);
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004397
Bram Moolenaarec2da362017-01-21 20:04:22 +01004398 for (;;)
4399 {
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004400 // When the end is not defined read everything there is.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004401 if (end == NULL && vpeekc() == NUL)
4402 break;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004403 do
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004404 c = vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +01004405 while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004406 if (c == NUL || got_int || (ex_normal_busy > 0 && c == Ctrl_C))
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004407 // When CTRL-C was encountered the typeahead will be flushed and we
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004408 // won't get the end sequence. Except when using ":normal".
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004409 break;
4410
Bram Moolenaarec2da362017-01-21 20:04:22 +01004411 if (has_mbyte)
4412 idx += (*mb_char2bytes)(c, buf + idx);
4413 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004414 buf[idx++] = c;
4415 buf[idx] = NUL;
Bram Moolenaar866c6882017-04-07 14:02:01 +02004416 if (end != NULL && STRNCMP(buf, end, idx) == 0)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004417 {
4418 if (end[idx] == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004419 break; // Found the end of paste code.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004420 continue;
4421 }
4422 if (!drop)
4423 {
4424 switch (mode)
4425 {
4426 case PASTE_CMDLINE:
4427 put_on_cmdline(buf, idx, TRUE);
4428 break;
4429
4430 case PASTE_EX:
4431 if (gap != NULL && ga_grow(gap, idx) == OK)
4432 {
4433 mch_memmove((char *)gap->ga_data + gap->ga_len,
4434 buf, (size_t)idx);
4435 gap->ga_len += idx;
4436 }
4437 break;
4438
4439 case PASTE_INSERT:
4440 if (stop_arrow() == OK)
4441 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004442 c = buf[0];
4443 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL))
4444 ins_eol(c);
4445 else
Bram Moolenaar076e5022017-01-24 18:58:30 +01004446 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004447 ins_char_bytes(buf, idx);
Bram Moolenaar076e5022017-01-24 18:58:30 +01004448 AppendToRedobuffLit(buf, idx);
4449 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01004450 }
4451 break;
4452
4453 case PASTE_ONE_CHAR:
4454 if (ret_char == -1)
4455 {
Bram Moolenaarec2da362017-01-21 20:04:22 +01004456 if (has_mbyte)
4457 ret_char = (*mb_ptr2char)(buf);
4458 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004459 ret_char = buf[0];
4460 }
4461 break;
4462 }
4463 }
4464 idx = 0;
4465 }
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004466
Bram Moolenaarec2da362017-01-21 20:04:22 +01004467 --no_mapping;
4468 allow_keys = save_allow_keys;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004469 if (!save_paste)
4470 set_option_value((char_u *)"paste", FALSE, NULL, 0);
Bram Moolenaarec2da362017-01-21 20:04:22 +01004471
4472 return ret_char;
4473}
4474
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004475#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004476 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004477ins_tabline(int c)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004478{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004479 // We will be leaving the current window, unless closing another tab.
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004480 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
4481 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
4482 {
4483 undisplay_dollar();
4484 start_arrow(&curwin->w_cursor);
4485# ifdef FEAT_CINDENT
4486 can_cindent = TRUE;
4487# endif
4488 }
4489
4490 if (c == K_TABLINE)
4491 goto_tabpage(current_tab);
4492 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004493 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004494 handle_tabmenu();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004495 redraw_statuslines(); // will redraw the tabline when needed
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004496 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004497}
4498#endif
4499
4500#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004502ins_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503{
4504 pos_T tpos;
4505
4506 undisplay_dollar();
4507 tpos = curwin->w_cursor;
4508 if (gui_do_scroll())
4509 {
4510 start_arrow(&tpos);
4511# ifdef FEAT_CINDENT
4512 can_cindent = TRUE;
4513# endif
4514 }
4515}
4516
4517 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004518ins_horscroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519{
4520 pos_T tpos;
4521
4522 undisplay_dollar();
4523 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004524 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 {
4526 start_arrow(&tpos);
4527# ifdef FEAT_CINDENT
4528 can_cindent = TRUE;
4529# endif
4530 }
4531}
4532#endif
4533
4534 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004535ins_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536{
4537 pos_T tpos;
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004538 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539
4540#ifdef FEAT_FOLDING
4541 if ((fdo_flags & FDO_HOR) && KeyTyped)
4542 foldOpenCursor();
4543#endif
4544 undisplay_dollar();
4545 tpos = curwin->w_cursor;
4546 if (oneleft() == OK)
4547 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004548#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004549 // Only call start_arrow() when not busy with preediting, it will
4550 // break undo. K_LEFT is inserted in im_correct_cursor().
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02004551 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting())
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004552#endif
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004553 {
4554 start_arrow_with_change(&tpos, end_change);
4555 if (!end_change)
4556 AppendCharToRedobuff(K_LEFT);
4557 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004559 // If exit reversed string, position is fixed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
4561 revins_legal++;
4562 revins_chars++;
4563#endif
4564 }
4565
4566 /*
4567 * if 'whichwrap' set for cursor in insert mode may go to
4568 * previous line
4569 */
4570 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
4571 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004572 // always break undo when moving upwards/downwards, else undo may break
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 start_arrow(&tpos);
4574 --(curwin->w_cursor.lnum);
4575 coladvance((colnr_T)MAXCOL);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004576 curwin->w_set_curswant = TRUE; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 }
4578 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004579 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004580 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581}
4582
4583 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004584ins_home(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585{
4586 pos_T tpos;
4587
4588#ifdef FEAT_FOLDING
4589 if ((fdo_flags & FDO_HOR) && KeyTyped)
4590 foldOpenCursor();
4591#endif
4592 undisplay_dollar();
4593 tpos = curwin->w_cursor;
4594 if (c == K_C_HOME)
4595 curwin->w_cursor.lnum = 1;
4596 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 curwin->w_curswant = 0;
4599 start_arrow(&tpos);
4600}
4601
4602 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004603ins_end(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604{
4605 pos_T tpos;
4606
4607#ifdef FEAT_FOLDING
4608 if ((fdo_flags & FDO_HOR) && KeyTyped)
4609 foldOpenCursor();
4610#endif
4611 undisplay_dollar();
4612 tpos = curwin->w_cursor;
4613 if (c == K_C_END)
4614 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4615 coladvance((colnr_T)MAXCOL);
4616 curwin->w_curswant = MAXCOL;
4617
4618 start_arrow(&tpos);
4619}
4620
4621 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004622ins_s_left()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004624 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625#ifdef FEAT_FOLDING
4626 if ((fdo_flags & FDO_HOR) && KeyTyped)
4627 foldOpenCursor();
4628#endif
4629 undisplay_dollar();
4630 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
4631 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004632 start_arrow_with_change(&curwin->w_cursor, end_change);
4633 if (!end_change)
4634 AppendCharToRedobuff(K_S_LEFT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 (void)bck_word(1L, FALSE, FALSE);
4636 curwin->w_set_curswant = TRUE;
4637 }
4638 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004639 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004640 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641}
4642
4643 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004644ins_right(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004646 int end_change = dont_sync_undo == FALSE; // end undoable change
4647
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648#ifdef FEAT_FOLDING
4649 if ((fdo_flags & FDO_HOR) && KeyTyped)
4650 foldOpenCursor();
4651#endif
4652 undisplay_dollar();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004653 if (gchar_cursor() != NUL || virtual_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 {
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004655 start_arrow_with_change(&curwin->w_cursor, end_change);
4656 if (!end_change)
4657 AppendCharToRedobuff(K_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 if (virtual_active())
4660 oneright();
4661 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004664 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 ++curwin->w_cursor.col;
4667 }
4668
4669#ifdef FEAT_RIGHTLEFT
4670 revins_legal++;
4671 if (revins_chars)
4672 revins_chars--;
4673#endif
4674 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004675 // if 'whichwrap' set for cursor in insert mode, may move the
4676 // cursor to the next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 else if (vim_strchr(p_ww, ']') != NULL
4678 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4679 {
4680 start_arrow(&curwin->w_cursor);
4681 curwin->w_set_curswant = TRUE;
4682 ++curwin->w_cursor.lnum;
4683 curwin->w_cursor.col = 0;
4684 }
4685 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004686 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004687 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688}
4689
4690 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004691ins_s_right()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004693 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694#ifdef FEAT_FOLDING
4695 if ((fdo_flags & FDO_HOR) && KeyTyped)
4696 foldOpenCursor();
4697#endif
4698 undisplay_dollar();
4699 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4700 || gchar_cursor() != NUL)
4701 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004702 start_arrow_with_change(&curwin->w_cursor, end_change);
4703 if (!end_change)
4704 AppendCharToRedobuff(K_S_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 (void)fwd_word(1L, FALSE, 0);
4706 curwin->w_set_curswant = TRUE;
4707 }
4708 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004709 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004710 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711}
4712
4713 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004714ins_up(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004715 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716{
4717 pos_T tpos;
4718 linenr_T old_topline = curwin->w_topline;
4719#ifdef FEAT_DIFF
4720 int old_topfill = curwin->w_topfill;
4721#endif
4722
4723 undisplay_dollar();
4724 tpos = curwin->w_cursor;
4725 if (cursor_up(1L, TRUE) == OK)
4726 {
4727 if (startcol)
4728 coladvance(getvcol_nolist(&Insstart));
4729 if (old_topline != curwin->w_topline
4730#ifdef FEAT_DIFF
4731 || old_topfill != curwin->w_topfill
4732#endif
4733 )
4734 redraw_later(VALID);
4735 start_arrow(&tpos);
4736#ifdef FEAT_CINDENT
4737 can_cindent = TRUE;
4738#endif
4739 }
4740 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004741 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742}
4743
4744 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004745ins_pageup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746{
4747 pos_T tpos;
4748
4749 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004750
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004751 if (mod_mask & MOD_MASK_CTRL)
4752 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004753 // <C-PageUp>: tab page back
Bram Moolenaarbc444822006-10-17 11:37:50 +00004754 if (first_tabpage->tp_next != NULL)
4755 {
4756 start_arrow(&curwin->w_cursor);
4757 goto_tabpage(-1);
4758 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004759 return;
4760 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004761
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 tpos = curwin->w_cursor;
4763 if (onepage(BACKWARD, 1L) == OK)
4764 {
4765 start_arrow(&tpos);
4766#ifdef FEAT_CINDENT
4767 can_cindent = TRUE;
4768#endif
4769 }
4770 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004771 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772}
4773
4774 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004775ins_down(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004776 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777{
4778 pos_T tpos;
4779 linenr_T old_topline = curwin->w_topline;
4780#ifdef FEAT_DIFF
4781 int old_topfill = curwin->w_topfill;
4782#endif
4783
4784 undisplay_dollar();
4785 tpos = curwin->w_cursor;
4786 if (cursor_down(1L, TRUE) == OK)
4787 {
4788 if (startcol)
4789 coladvance(getvcol_nolist(&Insstart));
4790 if (old_topline != curwin->w_topline
4791#ifdef FEAT_DIFF
4792 || old_topfill != curwin->w_topfill
4793#endif
4794 )
4795 redraw_later(VALID);
4796 start_arrow(&tpos);
4797#ifdef FEAT_CINDENT
4798 can_cindent = TRUE;
4799#endif
4800 }
4801 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004802 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803}
4804
4805 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004806ins_pagedown(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807{
4808 pos_T tpos;
4809
4810 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004811
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004812 if (mod_mask & MOD_MASK_CTRL)
4813 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004814 // <C-PageDown>: tab page forward
Bram Moolenaarbc444822006-10-17 11:37:50 +00004815 if (first_tabpage->tp_next != NULL)
4816 {
4817 start_arrow(&curwin->w_cursor);
4818 goto_tabpage(0);
4819 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004820 return;
4821 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004822
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 tpos = curwin->w_cursor;
4824 if (onepage(FORWARD, 1L) == OK)
4825 {
4826 start_arrow(&tpos);
4827#ifdef FEAT_CINDENT
4828 can_cindent = TRUE;
4829#endif
4830 }
4831 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004832 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833}
4834
4835#ifdef FEAT_DND
4836 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004837ins_drop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838{
4839 do_put('~', BACKWARD, 1L, PUT_CURSEND);
4840}
4841#endif
4842
4843/*
4844 * Handle TAB in Insert or Replace mode.
4845 * Return TRUE when the TAB needs to be inserted like a normal character.
4846 */
4847 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004848ins_tab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849{
4850 int ind;
4851 int i;
4852 int temp;
4853
4854 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
4855 Insstart_blank_vcol = get_nolist_virtcol();
4856 if (echeck_abbr(TAB + ABBR_OFF))
4857 return FALSE;
4858
4859 ind = inindent(0);
4860#ifdef FEAT_CINDENT
4861 if (ind)
4862 can_cindent = FALSE;
4863#endif
4864
4865 /*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004866 * When nothing special, insert TAB like a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 */
4868 if (!curbuf->b_p_et
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004869#ifdef FEAT_VARTABS
4870 && !(p_sta && ind
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004871 // These five lines mean 'tabstop' != 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004872 && ((tabstop_count(curbuf->b_p_vts_array) > 1)
4873 || (tabstop_count(curbuf->b_p_vts_array) == 1
4874 && tabstop_first(curbuf->b_p_vts_array)
4875 != get_sw_value(curbuf))
4876 || (tabstop_count(curbuf->b_p_vts_array) == 0
4877 && curbuf->b_p_ts != get_sw_value(curbuf))))
4878 && tabstop_count(curbuf->b_p_vsts_array) == 0
4879#else
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004880 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004881#endif
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004882 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 return TRUE;
4884
4885 if (stop_arrow() == FAIL)
4886 return TRUE;
4887
4888 did_ai = FALSE;
4889#ifdef FEAT_SMARTINDENT
4890 did_si = FALSE;
4891 can_si = FALSE;
4892 can_si_back = FALSE;
4893#endif
4894 AppendToRedobuff((char_u *)"\t");
4895
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004896#ifdef FEAT_VARTABS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004897 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004898 {
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004899 temp = (int)get_sw_value(curbuf);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004900 temp -= get_nolist_virtcol() % temp;
4901 }
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004902 else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts != 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004903 // use 'softtabstop' when set
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004904 temp = tabstop_padding(get_nolist_virtcol(), get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004905 curbuf->b_p_vsts_array);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004906 else // otherwise use 'tabstop'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004907 temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts,
4908 curbuf->b_p_vts_array);
4909#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004910 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004911 temp = (int)get_sw_value(curbuf);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004912 else if (curbuf->b_p_sts != 0) // use 'softtabstop' when set
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004913 temp = (int)get_sts_value();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004914 else // otherwise use 'tabstop'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 temp = (int)curbuf->b_p_ts;
4916 temp -= get_nolist_virtcol() % temp;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918
4919 /*
4920 * Insert the first space with ins_char(). It will delete one char in
4921 * replace mode. Insert the rest with ins_str(); it will not delete any
4922 * chars. For VREPLACE mode, we use ins_char() for all characters.
4923 */
4924 ins_char(' ');
4925 while (--temp > 0)
4926 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 if (State & VREPLACE_FLAG)
4928 ins_char(' ');
4929 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 {
4931 ins_str((char_u *)" ");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004932 if (State & REPLACE_FLAG) // no char replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 replace_push(NUL);
4934 }
4935 }
4936
4937 /*
4938 * When 'expandtab' not set: Replace spaces by TABs where possible.
4939 */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004940#ifdef FEAT_VARTABS
4941 if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0
4942 || get_sts_value() > 0
4943 || (p_sta && ind)))
4944#else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004945 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004946#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 {
4948 char_u *ptr;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004949 char_u *saved_line = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 pos_T fpos;
4952 pos_T *cursor;
4953 colnr_T want_vcol, vcol;
4954 int change_col = -1;
4955 int save_list = curwin->w_p_list;
4956
4957 /*
4958 * Get the current line. For VREPLACE mode, don't make real changes
4959 * yet, just work on a copy of the line.
4960 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 if (State & VREPLACE_FLAG)
4962 {
4963 pos = curwin->w_cursor;
4964 cursor = &pos;
4965 saved_line = vim_strsave(ml_get_curline());
4966 if (saved_line == NULL)
4967 return FALSE;
4968 ptr = saved_line + pos.col;
4969 }
4970 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 {
4972 ptr = ml_get_cursor();
4973 cursor = &curwin->w_cursor;
4974 }
4975
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004976 // When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
4978 curwin->w_p_list = FALSE;
4979
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004980 // Find first white before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 fpos = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +01004982 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 {
4984 --fpos.col;
4985 --ptr;
4986 }
4987
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004988 // In Replace mode, don't change characters before the insert point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 if ((State & REPLACE_FLAG)
4990 && fpos.lnum == Insstart.lnum
4991 && fpos.col < Insstart.col)
4992 {
4993 ptr += Insstart.col - fpos.col;
4994 fpos.col = Insstart.col;
4995 }
4996
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004997 // compute virtual column numbers of first white and cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 getvcol(curwin, &fpos, &vcol, NULL, NULL);
4999 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
5000
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005001 // Use as many TABs as possible. Beware of 'breakindent', 'showbreak'
5002 // and 'linebreak' adding extra virtual columns.
Bram Moolenaar1c465442017-03-12 20:10:05 +01005003 while (VIM_ISWHITE(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02005005 i = lbr_chartabsize(NULL, (char_u *)"\t", vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 if (vcol + i > want_vcol)
5007 break;
5008 if (*ptr != TAB)
5009 {
5010 *ptr = TAB;
5011 if (change_col < 0)
5012 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005013 change_col = fpos.col; // Column of first change
5014 // May have to adjust Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
5016 Insstart.col = fpos.col;
5017 }
5018 }
5019 ++fpos.col;
5020 ++ptr;
5021 vcol += i;
5022 }
5023
5024 if (change_col >= 0)
5025 {
5026 int repl_off = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005027 char_u *line = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005029 // Skip over the spaces we need.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 while (vcol < want_vcol && *ptr == ' ')
5031 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02005032 vcol += lbr_chartabsize(line, ptr, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 ++ptr;
5034 ++repl_off;
5035 }
5036 if (vcol > want_vcol)
5037 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005038 // Must have a char with 'showbreak' just before it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 --ptr;
5040 --repl_off;
5041 }
5042 fpos.col += repl_off;
5043
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005044 // Delete following spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 i = cursor->col - fpos.col;
5046 if (i > 0)
5047 {
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005048#ifdef FEAT_PROP_POPUP
5049 if (!(State & VREPLACE_FLAG))
5050 {
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005051 char_u *newp;
5052 int col;
5053
5054 newp = alloc(curbuf->b_ml.ml_line_len - i);
5055 if (newp == NULL)
5056 return FALSE;
5057
5058 col = ptr - curbuf->b_ml.ml_line_ptr;
5059 if (col > 0)
5060 mch_memmove(newp, ptr - col, col);
5061 mch_memmove(newp + col, ptr + i,
5062 curbuf->b_ml.ml_line_len - col - i);
5063
5064 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY)
5065 vim_free(curbuf->b_ml.ml_line_ptr);
5066 curbuf->b_ml.ml_line_ptr = newp;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005067 curbuf->b_ml.ml_line_len -= i;
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005068 curbuf->b_ml.ml_flags =
5069 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005070 }
5071 else
5072#endif
5073 STRMOVE(ptr, ptr + i);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005074 // correct replace stack.
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005075 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 for (temp = i; --temp >= 0; )
5077 replace_join(repl_off);
5078 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00005079#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005080 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00005081 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02005082 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00005083 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
5084 (char_u *)"\t", 1);
5085 }
5086#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 cursor->col -= i;
5088
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 /*
5090 * In VREPLACE mode, we haven't changed anything yet. Do it now by
5091 * backspacing over the changed spacing and then inserting the new
5092 * spacing.
5093 */
5094 if (State & VREPLACE_FLAG)
5095 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005096 // Backspace from real cursor to change_col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 backspace_until_column(change_col);
5098
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005099 // Insert each char in saved_line from changed_col to
5100 // ptr-cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 ins_bytes_len(saved_line + change_col,
5102 cursor->col - change_col);
5103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 }
5105
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 if (State & VREPLACE_FLAG)
5107 vim_free(saved_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 curwin->w_p_list = save_list;
5109 }
5110
5111 return FALSE;
5112}
5113
5114/*
5115 * Handle CR or NL in insert mode.
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005116 * Return FAIL when out of memory or can't undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005118 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005119ins_eol(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120{
5121 int i;
5122
5123 if (echeck_abbr(c + ABBR_OFF))
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005124 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 if (stop_arrow() == FAIL)
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005126 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 undisplay_dollar();
5128
5129 /*
5130 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
5131 * character under the cursor. Only push a NUL on the replace stack,
5132 * nothing to put back when the NL is deleted.
5133 */
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005134 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 replace_push(NUL);
5136
5137 /*
5138 * In VREPLACE mode, a NL replaces the rest of the line, and starts
5139 * replacing the next line, so we push all of the characters left on the
5140 * line onto the replace stack. This is not done here though, it is done
5141 * in open_line().
5142 */
5143
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005144 // Put cursor on NUL if on the last char and coladd is 1 (happens after
5145 // CTRL-O).
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005146 if (virtual_active() && curwin->w_cursor.coladd > 0)
5147 coladvance(getviscol());
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005148
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005150 // NL in reverse insert will always start in the end of
5151 // current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 if (revins_on)
5153 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
5154#endif
5155
5156 AppendToRedobuff(NL_STR);
5157 i = open_line(FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02005158 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM : 0, old_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 old_indent = 0;
5160#ifdef FEAT_CINDENT
5161 can_cindent = TRUE;
5162#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005163#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005164 // When inserting a line the cursor line must never be in a closed fold.
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005165 foldOpenCursor();
5166#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005168 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169}
5170
5171#ifdef FEAT_DIGRAPHS
5172/*
5173 * Handle digraph in insert mode.
5174 * Returns character still to be inserted, or NUL when nothing remaining to be
5175 * done.
5176 */
5177 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005178ins_digraph(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179{
5180 int c;
5181 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005182 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183
5184 pc_status = PC_STATUS_UNSET;
5185 if (redrawing() && !char_avail())
5186 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005187 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005188 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189
5190 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005191 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192#ifdef FEAT_CMDL_INFO
5193 add_to_showcmd_c(Ctrl_K);
5194#endif
5195 }
5196
5197#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005198 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199#endif
5200
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005201 // don't map the digraph chars. This also prevents the
5202 // mode message to be deleted when ESC is hit
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 ++no_mapping;
5204 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005205 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 --no_mapping;
5207 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005208 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005209 // when the line fits in 'columns' the '?' is at the start of the next
5210 // line and will not be removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005211 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02005212
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005213 if (IS_SPECIAL(c) || mod_mask) // special key
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 {
5215#ifdef FEAT_CMDL_INFO
5216 clear_showcmd();
5217#endif
5218 insert_special(c, TRUE, FALSE);
5219 return NUL;
5220 }
5221 if (c != ESC)
5222 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005223 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 if (redrawing() && !char_avail())
5225 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005226 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005227 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228
5229 if (char2cells(c) == 1)
5230 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00005231 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005233 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 }
5235#ifdef FEAT_CMDL_INFO
5236 add_to_showcmd_c(c);
5237#endif
5238 }
5239 ++no_mapping;
5240 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005241 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 --no_mapping;
5243 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005244 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005245 // when the line fits in 'columns' the '?' is at the start of the
5246 // next line and will not be removed by a redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005247 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 if (cc != ESC)
5249 {
5250 AppendToRedobuff((char_u *)CTRL_V_STR);
5251 c = getdigraph(c, cc, TRUE);
5252#ifdef FEAT_CMDL_INFO
5253 clear_showcmd();
5254#endif
5255 return c;
5256 }
5257 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258#ifdef FEAT_CMDL_INFO
5259 clear_showcmd();
5260#endif
5261 return NUL;
5262}
5263#endif
5264
5265/*
5266 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
5267 * Returns the char to be inserted, or NUL if none found.
5268 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005269 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005270ins_copychar(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271{
5272 int c;
5273 int temp;
5274 char_u *ptr, *prev_ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005275 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276
5277 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
5278 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02005279 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 return NUL;
5281 }
5282
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005283 // try to advance to the cursor column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 temp = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005285 line = ptr = ml_get(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 prev_ptr = ptr;
5287 validate_virtcol();
5288 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
5289 {
5290 prev_ptr = ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005291 temp += lbr_chartabsize_adv(line, &ptr, (colnr_T)temp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 }
5293 if ((colnr_T)temp > curwin->w_virtcol)
5294 ptr = prev_ptr;
5295
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 c = (*mb_ptr2char)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 if (c == NUL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005298 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 return c;
5300}
5301
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005302/*
5303 * CTRL-Y or CTRL-E typed in Insert mode.
5304 */
5305 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005306ins_ctrl_ey(int tc)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005307{
5308 int c = tc;
5309
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005310 if (ctrl_x_mode_scroll())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005311 {
5312 if (c == Ctrl_Y)
5313 scrolldown_clamp();
5314 else
5315 scrollup_clamp();
5316 redraw_later(VALID);
5317 }
5318 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005319 {
5320 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
5321 if (c != NUL)
5322 {
5323 long tw_save;
5324
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005325 // The character must be taken literally, insert like it
5326 // was typed after a CTRL-V, and pretend 'textwidth'
5327 // wasn't set. Digits, 'o' and 'x' are special after a
5328 // CTRL-V, don't use it for these.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005329 if (c < 256 && !isalnum(c))
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005330 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005331 tw_save = curbuf->b_p_tw;
5332 curbuf->b_p_tw = -1;
5333 insert_special(c, TRUE, FALSE);
5334 curbuf->b_p_tw = tw_save;
5335#ifdef FEAT_RIGHTLEFT
5336 revins_chars++;
5337 revins_legal++;
5338#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005339 c = Ctrl_V; // pretend CTRL-V is last character
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005340 auto_format(FALSE, TRUE);
5341 }
5342 }
5343 return c;
5344}
5345
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346/*
5347 * Get the value that w_virtcol would have when 'list' is off.
5348 * Unless 'cpo' contains the 'L' flag.
5349 */
Bram Moolenaarf9514162018-11-22 03:08:29 +01005350 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005351get_nolist_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352{
Bram Moolenaarf9514162018-11-22 03:08:29 +01005353 // check validity of cursor in current buffer
5354 if (curwin->w_buffer == NULL
5355 || curwin->w_buffer->b_ml.ml_mfp == NULL
5356 || curwin->w_cursor.lnum > curwin->w_buffer->b_ml.ml_line_count)
5357 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
5359 return getvcol_nolist(&curwin->w_cursor);
5360 validate_virtcol();
5361 return curwin->w_virtcol;
5362}
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005363
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005364#if defined(FEAT_EVAL)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005365/*
5366 * Handle the InsertCharPre autocommand.
5367 * "c" is the character that was typed.
5368 * Return a pointer to allocated memory with the replacement string.
5369 * Return NULL to continue inserting "c".
5370 */
5371 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005372do_insert_char_pre(int c)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005373{
Bram Moolenaar704984a2012-06-01 14:57:51 +02005374 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +02005375 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005376 int save_State = State;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005377
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005378 // Return quickly when there is nothing to do.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005379 if (!has_insertcharpre())
5380 return NULL;
5381
Bram Moolenaar704984a2012-06-01 14:57:51 +02005382 if (has_mbyte)
5383 buf[(*mb_char2bytes)(c, buf)] = NUL;
5384 else
Bram Moolenaar704984a2012-06-01 14:57:51 +02005385 {
5386 buf[0] = c;
5387 buf[1] = NUL;
5388 }
5389
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005390 // Lock the text to avoid weird things from happening.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005391 ++textwinlock;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005392 set_vim_var_string(VV_CHAR, buf, -1); // set v:char
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005393
Bram Moolenaar704984a2012-06-01 14:57:51 +02005394 res = NULL;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005395 if (ins_apply_autocmds(EVENT_INSERTCHARPRE))
Bram Moolenaar704984a2012-06-01 14:57:51 +02005396 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005397 // Get the value of v:char. It may be empty or more than one
5398 // character. Only use it when changed, otherwise continue with the
5399 // original character to avoid breaking autoindent.
Bram Moolenaar704984a2012-06-01 14:57:51 +02005400 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
5401 res = vim_strsave(get_vim_var_str(VV_CHAR));
5402 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005403
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005404 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005405 --textwinlock;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005406
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005407 // Restore the State, it may have been changed.
5408 State = save_State;
5409
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005410 return res;
5411}
5412#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005413
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005414#if defined(FEAT_CINDENT) || defined(PROTO)
5415 int
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005416get_can_cindent(void)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005417{
5418 return can_cindent;
5419}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005420
5421 void
5422set_can_cindent(int val)
5423{
5424 can_cindent = val;
5425}
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005426#endif
5427
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005428/*
5429 * Trigger "event" and take care of fixing undo.
5430 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005431 int
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005432ins_apply_autocmds(event_T event)
5433{
5434 varnumber_T tick = CHANGEDTICK(curbuf);
5435 int r;
5436
5437 r = apply_autocmds(event, NULL, NULL, FALSE, curbuf);
5438
5439 // If u_savesub() was called then we are not prepared to start
5440 // a new line. Call u_save() with no contents to fix that.
Bram Moolenaardb934952020-04-27 20:18:31 +02005441 // Except when leaving Insert mode.
5442 if (event != EVENT_INSERTLEAVE && tick != CHANGEDTICK(curbuf))
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005443 u_save(curwin->w_cursor.lnum, (linenr_T)(curwin->w_cursor.lnum + 1));
5444
5445 return r;
5446}