blob: 5252334ce5c9557da27ab85fee5152cd8d806ebd [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]);
1612 c = merge_modifyOtherKeys(arg[form]);
1613 }
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/*
1685 * Return the effective prompt for the current buffer.
1686 */
1687 char_u *
1688prompt_text(void)
1689{
1690 if (curbuf->b_prompt_text == NULL)
1691 return (char_u *)"% ";
1692 return curbuf->b_prompt_text;
1693}
1694
1695/*
1696 * Prepare for prompt mode: Make sure the last line has the prompt text.
1697 * Move the cursor to this line.
1698 */
1699 static void
1700init_prompt(int cmdchar_todo)
1701{
1702 char_u *prompt = prompt_text();
1703 char_u *text;
1704
1705 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1706 text = ml_get_curline();
1707 if (STRNCMP(text, prompt, STRLEN(prompt)) != 0)
1708 {
1709 // prompt is missing, insert it or append a line with it
1710 if (*text == NUL)
1711 ml_replace(curbuf->b_ml.ml_line_count, prompt, TRUE);
1712 else
1713 ml_append(curbuf->b_ml.ml_line_count, prompt, 0, FALSE);
1714 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
1715 coladvance((colnr_T)MAXCOL);
1716 changed_bytes(curbuf->b_ml.ml_line_count, 0);
1717 }
Bram Moolenaar6d41c782018-06-06 09:11:12 +02001718
1719 // Insert always starts after the prompt, allow editing text after it.
1720 if (Insstart_orig.lnum != curwin->w_cursor.lnum
1721 || Insstart_orig.col != (int)STRLEN(prompt))
1722 {
1723 Insstart.lnum = curwin->w_cursor.lnum;
Bram Moolenaare31e2562018-06-10 13:12:55 +02001724 Insstart.col = (int)STRLEN(prompt);
Bram Moolenaar6d41c782018-06-06 09:11:12 +02001725 Insstart_orig = Insstart;
1726 Insstart_textlen = Insstart.col;
1727 Insstart_blank_vcol = MAXCOL;
1728 arrow_used = FALSE;
1729 }
1730
Bram Moolenaarf2732452018-06-03 14:47:35 +02001731 if (cmdchar_todo == 'A')
1732 coladvance((colnr_T)MAXCOL);
1733 if (cmdchar_todo == 'I' || curwin->w_cursor.col <= (int)STRLEN(prompt))
Bram Moolenaare31e2562018-06-10 13:12:55 +02001734 curwin->w_cursor.col = (int)STRLEN(prompt);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001735 // Make sure the cursor is in a valid position.
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02001736 check_cursor();
Bram Moolenaarf2732452018-06-03 14:47:35 +02001737}
1738
1739/*
1740 * Return TRUE if the cursor is in the editable position of the prompt line.
1741 */
1742 int
1743prompt_curpos_editable()
1744{
1745 return curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count
1746 && curwin->w_cursor.col >= (int)STRLEN(prompt_text());
1747}
1748#endif
1749
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750/*
1751 * Undo the previous edit_putchar().
1752 */
1753 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001754edit_unputchar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755{
1756 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1757 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 if (pc_status == PC_STATUS_RIGHT)
1759 ++curwin->w_wcol;
1760 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001761 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1764 }
1765}
1766
1767/*
1768 * Called when p_dollar is set: display a '$' at the end of the changed text
1769 * Only works when cursor is in the line that changes.
1770 */
1771 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001772display_dollar(colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773{
1774 colnr_T save_col;
1775
1776 if (!redrawing())
1777 return;
1778
1779 cursor_off();
1780 save_col = curwin->w_cursor.col;
1781 curwin->w_cursor.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 if (has_mbyte)
1783 {
1784 char_u *p;
1785
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001786 // If on the last byte of a multi-byte move to the first byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 p = ml_get_curline();
1788 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1789 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001790 curs_columns(FALSE); // recompute w_wrow and w_wcol
Bram Moolenaar02631462017-09-22 15:20:32 +02001791 if (curwin->w_wcol < curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 {
1793 edit_putchar('$', FALSE);
1794 dollar_vcol = curwin->w_virtcol;
1795 }
1796 curwin->w_cursor.col = save_col;
1797}
1798
1799/*
1800 * Call this function before moving the cursor from the normal insert position
1801 * in insert mode.
1802 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001803 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001804undisplay_dollar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001806 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001808 dollar_vcol = -1;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001809 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 }
1811}
1812
1813/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 * Truncate the space at the end of a line. This is to be used only in an
1815 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
1816 * modes.
1817 */
1818 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001819truncate_spaces(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820{
1821 int i;
1822
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001823 // find start of trailing white space
Bram Moolenaar1c465442017-03-12 20:10:05 +01001824 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 {
1826 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001827 replace_join(0); // remove a NUL from the replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 }
1829 line[i + 1] = NUL;
1830}
1831
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832/*
1833 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
1834 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001835 * Will attempt not to go before "col" even when there is a composing
1836 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 */
1838 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001839backspace_until_column(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840{
1841 while ((int)curwin->w_cursor.col > col)
1842 {
1843 curwin->w_cursor.col--;
1844 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001845 replace_do_bs(col);
1846 else if (!del_char_after_col(col))
1847 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 }
1849}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001851/*
1852 * Like del_char(), but make sure not to go before column "limit_col".
1853 * Only matters when there are composing characters.
1854 * Return TRUE when something was deleted.
1855 */
1856 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001857del_char_after_col(int limit_col UNUSED)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001858{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001859 if (enc_utf8 && limit_col >= 0)
1860 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001861 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001862
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001863 // Make sure the cursor is at the start of a character, but
1864 // skip forward again when going too far back because of a
1865 // composing character.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001866 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00001867 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001868 {
1869 int l = utf_ptr2len(ml_get_cursor());
1870
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001871 if (l == 0) // end of line
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001872 break;
1873 curwin->w_cursor.col += l;
1874 }
1875 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
1876 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001877 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001878 }
1879 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001880 (void)del_char(FALSE);
1881 return TRUE;
1882}
1883
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884/*
1885 * Next character is interpreted literally.
1886 * A one, two or three digit decimal number is interpreted as its byte value.
1887 * If one or two digits are entered, the next character is given to vungetc().
1888 * For Unicode a character > 255 may be returned.
1889 */
1890 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001891get_literal(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892{
1893 int cc;
1894 int nc;
1895 int i;
1896 int hex = FALSE;
1897 int octal = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 int unicode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899
1900 if (got_int)
1901 return Ctrl_C;
1902
1903#ifdef FEAT_GUI
1904 /*
1905 * In GUI there is no point inserting the internal code for a special key.
1906 * It is more useful to insert the string "<KEY>" instead. This would
1907 * probably be useful in a text window too, but it would not be
1908 * vi-compatible (maybe there should be an option for it?) -- webb
1909 */
1910 if (gui.in_use)
1911 ++allow_keys;
1912#endif
1913#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001914 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001916 ++no_mapping; // don't map the next key hits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 cc = 0;
1918 i = 0;
1919 for (;;)
1920 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001921 nc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922#ifdef FEAT_CMDL_INFO
Bram Moolenaar13505972019-01-24 15:04:48 +01001923 if (!(State & CMDLINE) && MB_BYTE2LEN_CHECK(nc) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 add_to_showcmd(nc);
1925#endif
1926 if (nc == 'x' || nc == 'X')
1927 hex = TRUE;
1928 else if (nc == 'o' || nc == 'O')
1929 octal = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 else if (nc == 'u' || nc == 'U')
1931 unicode = nc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 else
1933 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001934 if (hex || unicode != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 {
1936 if (!vim_isxdigit(nc))
1937 break;
1938 cc = cc * 16 + hex2nr(nc);
1939 }
1940 else if (octal)
1941 {
1942 if (nc < '0' || nc > '7')
1943 break;
1944 cc = cc * 8 + nc - '0';
1945 }
1946 else
1947 {
1948 if (!VIM_ISDIGIT(nc))
1949 break;
1950 cc = cc * 10 + nc - '0';
1951 }
1952
1953 ++i;
1954 }
1955
Bram Moolenaar13505972019-01-24 15:04:48 +01001956 if (cc > 255 && unicode == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001957 cc = 255; // limit range to 0-255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 nc = 0;
1959
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001960 if (hex) // hex: up to two chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 {
1962 if (i >= 2)
1963 break;
1964 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001965 else if (unicode) // Unicode: up to four or eight chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 {
1967 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
1968 break;
1969 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001970 else if (i >= 3) // decimal or octal: up to three chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 break;
1972 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001973 if (i == 0) // no number entered
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001975 if (nc == K_ZERO) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 {
1977 cc = '\n';
1978 nc = 0;
1979 }
1980 else
1981 {
1982 cc = nc;
1983 nc = 0;
1984 }
1985 }
1986
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001987 if (cc == 0) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00001989 if (enc_dbcs && (cc & 0xff) == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001990 cc = '?'; // don't accept an illegal DBCS char, the NUL in the
1991 // second byte will cause trouble!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992
1993 --no_mapping;
1994#ifdef FEAT_GUI
1995 if (gui.in_use)
1996 --allow_keys;
1997#endif
1998 if (nc)
1999 vungetc(nc);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002000 got_int = FALSE; // CTRL-C typed after CTRL-V is not an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 return cc;
2002}
2003
2004/*
2005 * Insert character, taking care of special keys and mod_mask
2006 */
2007 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002008insert_special(
2009 int c,
2010 int allow_modmask,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002011 int ctrlv) // c was typed after CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012{
2013 char_u *p;
2014 int len;
2015
2016 /*
2017 * Special function key, translate into "<Key>". Up to the last '>' is
2018 * inserted with ins_str(), so as not to replace characters in replace
2019 * mode.
2020 * Only use mod_mask for special keys, to avoid things like <S-Space>,
2021 * unless 'allow_modmask' is TRUE.
2022 */
Bram Moolenaard0573012017-10-28 21:11:06 +02002023#ifdef MACOS_X
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002024 // Command-key never produces a normal key
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 if (mod_mask & MOD_MASK_CMD)
2026 allow_modmask = TRUE;
2027#endif
2028 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
2029 {
2030 p = get_special_key_name(c, mod_mask);
2031 len = (int)STRLEN(p);
2032 c = p[len - 1];
2033 if (len > 2)
2034 {
2035 if (stop_arrow() == FAIL)
2036 return;
2037 p[len - 1] = NUL;
2038 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00002039 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 ctrlv = FALSE;
2041 }
2042 }
2043 if (stop_arrow() == OK)
2044 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
2045}
2046
2047/*
2048 * Special characters in this context are those that need processing other
2049 * than the simple insertion that can be performed here. This includes ESC
2050 * which terminates the insert, and CR/NL which need special processing to
2051 * open up a new line. This routine tries to optimize insertions performed by
2052 * the "redo", "undo" or "put" commands, so it needs to know when it should
2053 * stop and defer processing to the "normal" mechanism.
2054 * '0' and '^' are special, because they can be followed by CTRL-D.
2055 */
2056#ifdef EBCDIC
2057# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
2058#else
2059# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
2060#endif
2061
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02002062/*
2063 * "flags": INSCHAR_FORMAT - force formatting
2064 * INSCHAR_CTRLV - char typed just after CTRL-V
2065 * INSCHAR_NO_FEX - don't use 'formatexpr'
2066 *
2067 * NOTE: passes the flags value straight through to internal_format() which,
2068 * beside INSCHAR_FORMAT (above), is also looking for these:
2069 * INSCHAR_DO_COM - format comments
2070 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
2071 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002073insertchar(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002074 int c, // character to insert or NUL
2075 int flags, // INSCHAR_FORMAT, etc.
2076 int second_indent) // indent for second line if >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 int textwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 int fo_ins_blank;
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002081 int force_format = flags & INSCHAR_FORMAT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002083 textwidth = comp_textwidth(force_format);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085
2086 /*
2087 * Try to break the line in two or more pieces when:
2088 * - Always do this if we have been called to do formatting only.
2089 * - Always do this when 'formatoptions' has the 'a' flag and the line
2090 * ends in white space.
2091 * - Otherwise:
2092 * - Don't do this if inserting a blank
2093 * - Don't do this if an existing character is being replaced, unless
2094 * we're in VREPLACE mode.
2095 * - Do this if the cursor is not on the line where insert started
2096 * or - 'formatoptions' doesn't have 'l' or the line was not too long
2097 * before the insert.
2098 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
2099 * before 'textwidth'
2100 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002101 if (textwidth > 0
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002102 && (force_format
Bram Moolenaar1c465442017-03-12 20:10:05 +01002103 || (!VIM_ISWHITE(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 && !((State & REPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 && !(State & VREPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 && *ml_get_cursor() != NUL)
2107 && (curwin->w_cursor.lnum != Insstart.lnum
2108 || ((!has_format_option(FO_INS_LONG)
2109 || Insstart_textlen <= (colnr_T)textwidth)
2110 && (!fo_ins_blank
2111 || Insstart_blank_vcol <= (colnr_T)textwidth
2112 ))))))
2113 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002114 // Format with 'formatexpr' when it's set. Use internal formatting
2115 // when 'formatexpr' isn't set or it returns non-zero.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002116#if defined(FEAT_EVAL)
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002117 int do_internal = TRUE;
2118 colnr_T virtcol = get_nolist_virtcol()
2119 + char2cells(c != NUL ? c : gchar_cursor());
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002120
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002121 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0
2122 && (force_format || virtcol > (colnr_T)textwidth))
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002123 {
2124 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002125 // It may be required to save for undo again, e.g. when setline()
2126 // was called.
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002127 ins_need_undo = TRUE;
2128 }
2129 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00002131 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002133
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002134 if (c == NUL) // only formatting was wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 return;
2136
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002137 // Check whether this character should end a comment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 if (did_ai && (int)c == end_comment_pending)
2139 {
2140 char_u *line;
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002141 char_u lead_end[COM_MAX_LEN]; // end-comment string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 int middle_len, end_len;
2143 int i;
2144
2145 /*
2146 * Need to remove existing (middle) comment leader and insert end
2147 * comment leader. First, check what comment leader we can find.
2148 */
Bram Moolenaar81340392012-06-06 16:12:59 +02002149 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002150 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) // Just checking
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002152 // Skip middle-comment string
2153 while (*p && p[-1] != ':') // find end of middle flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 ++p;
2155 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002156 // Don't count trailing white space for middle_len
Bram Moolenaar1c465442017-03-12 20:10:05 +01002157 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 --middle_len;
2159
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002160 // Find the end-comment string
2161 while (*p && p[-1] != ':') // find end of end flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 ++p;
2163 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
2164
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002165 // Skip white space before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 i = curwin->w_cursor.col;
Bram Moolenaar1c465442017-03-12 20:10:05 +01002167 while (--i >= 0 && VIM_ISWHITE(line[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 ;
2169 i++;
2170
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002171 // Skip to before the middle leader
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 i -= middle_len;
2173
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002174 // Check some expected things before we go on
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
2176 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002177 // Backspace over all the stuff we want to replace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 backspace_until_column(i);
2179
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002180 // Insert the end-comment string, except for the last
2181 // character, which will get inserted as normal later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 ins_bytes_len(lead_end, end_len - 1);
2183 }
2184 }
2185 }
2186 end_comment_pending = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187
2188 did_ai = FALSE;
2189#ifdef FEAT_SMARTINDENT
2190 did_si = FALSE;
2191 can_si = FALSE;
2192 can_si_back = FALSE;
2193#endif
2194
2195 /*
2196 * If there's any pending input, grab up to INPUT_BUFLEN at once.
2197 * This speeds up normal text input considerably.
2198 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
2199 * need to re-indent at a ':', or any other character (but not what
2200 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01002201 * Don't do this when there an InsertCharPre autocommand is defined,
2202 * because we need to fire the event for every character.
Bram Moolenaar39de9522018-05-08 22:48:00 +02002203 * Do the check for InsertCharPre before the call to vpeekc() because the
2204 * InsertCharPre autocommand could change the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 */
2206#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002207 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208#endif
2209
2210 if ( !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 && (!has_mbyte || (*mb_char2len)(c) == 1)
Bram Moolenaar39de9522018-05-08 22:48:00 +02002212 && !has_insertcharpre()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 && vpeekc() != NUL
2214 && !(State & REPLACE_FLAG)
2215#ifdef FEAT_CINDENT
2216 && !cindent_on()
2217#endif
2218#ifdef FEAT_RIGHTLEFT
2219 && !p_ri
2220#endif
Bram Moolenaar39de9522018-05-08 22:48:00 +02002221 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 {
2223#define INPUT_BUFLEN 100
2224 char_u buf[INPUT_BUFLEN + 1];
2225 int i;
2226 colnr_T virtcol = 0;
2227
2228 buf[0] = c;
2229 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002230 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 virtcol = get_nolist_virtcol();
2232 /*
2233 * Stop the string when:
2234 * - no more chars available
2235 * - finding a special character (command key)
2236 * - buffer is full
2237 * - running into the 'textwidth' boundary
2238 * - need to check for abbreviation: A non-word char after a word-char
2239 */
2240 while ( (c = vpeekc()) != NUL
2241 && !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 && i < INPUT_BUFLEN
2244 && (textwidth == 0
2245 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
2246 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
2247 {
2248#ifdef FEAT_RIGHTLEFT
2249 c = vgetc();
2250 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002251 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 buf[i++] = c;
2253#else
2254 buf[i++] = vgetc();
2255#endif
2256 }
2257
2258#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002259 do_digraph(-1); // clear digraphs
2260 do_digraph(buf[i-1]); // may be the start of a digraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261#endif
2262 buf[i] = NUL;
2263 ins_str(buf);
2264 if (flags & INSCHAR_CTRLV)
2265 {
2266 redo_literal(*buf);
2267 i = 1;
2268 }
2269 else
2270 i = 0;
2271 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002272 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 }
2274 else
2275 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002276 int cc;
2277
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
2279 {
2280 char_u buf[MB_MAXBYTES + 1];
2281
2282 (*mb_char2bytes)(c, buf);
2283 buf[cc] = NUL;
2284 ins_char_bytes(buf, cc);
2285 AppendCharToRedobuff(c);
2286 }
2287 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 {
2289 ins_char(c);
2290 if (flags & INSCHAR_CTRLV)
2291 redo_literal(c);
2292 else
2293 AppendCharToRedobuff(c);
2294 }
2295 }
2296}
2297
2298/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 * Put a character in the redo buffer, for when just after a CTRL-V.
2300 */
2301 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002302redo_literal(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303{
2304 char_u buf[10];
2305
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002306 // Only digits need special treatment. Translate them into a string of
2307 // three digits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 if (VIM_ISDIGIT(c))
2309 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002310 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 AppendToRedobuff(buf);
2312 }
2313 else
2314 AppendCharToRedobuff(c);
2315}
2316
2317/*
2318 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002319 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01002321 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002322start_arrow(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002323 pos_T *end_insert_pos) // can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324{
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002325 start_arrow_common(end_insert_pos, TRUE);
2326}
2327
2328/*
2329 * Like start_arrow() but with end_change argument.
2330 * Will prepare for redo of CTRL-G U if "end_change" is FALSE.
2331 */
2332 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002333start_arrow_with_change(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002334 pos_T *end_insert_pos, // can be NULL
2335 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002336{
2337 start_arrow_common(end_insert_pos, end_change);
2338 if (!end_change)
2339 {
2340 AppendCharToRedobuff(Ctrl_G);
2341 AppendCharToRedobuff('U');
2342 }
2343}
2344
2345 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002346start_arrow_common(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002347 pos_T *end_insert_pos, // can be NULL
2348 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002349{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002350 if (!arrow_used && end_change) // something has been inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 {
2352 AppendToRedobuff(ESC_STR);
Bram Moolenaarf332a652013-11-04 04:20:33 +01002353 stop_insert(end_insert_pos, FALSE, FALSE);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002354 arrow_used = TRUE; // this means we stopped the current insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002356#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002357 check_spell_redraw();
2358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359}
2360
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002361#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002362/*
2363 * If we skipped highlighting word at cursor, do it now.
2364 * It may be skipped again, thus reset spell_redraw_lnum first.
2365 */
2366 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002367check_spell_redraw(void)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002368{
2369 if (spell_redraw_lnum != 0)
2370 {
2371 linenr_T lnum = spell_redraw_lnum;
2372
2373 spell_redraw_lnum = 0;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01002374 redrawWinline(curwin, lnum);
Bram Moolenaar217ad922005-03-20 22:37:15 +00002375 }
2376}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002377
Bram Moolenaar217ad922005-03-20 22:37:15 +00002378#endif
2379
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380/*
2381 * stop_arrow() is called before a change is made in insert mode.
2382 * If an arrow key has been used, start a new insertion.
2383 * Returns FAIL if undo is impossible, shouldn't insert then.
2384 */
2385 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002386stop_arrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387{
2388 if (arrow_used)
2389 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002390 Insstart = curwin->w_cursor; // new insertion starts here
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002391 if (Insstart.col > Insstart_orig.col && !ins_need_undo)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002392 // Don't update the original insert position when moved to the
2393 // right, except when nothing was inserted yet.
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002394 update_Insstart_orig = FALSE;
2395 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
2396
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 if (u_save_cursor() == OK)
2398 {
2399 arrow_used = FALSE;
2400 ins_need_undo = FALSE;
2401 }
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002402
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 ai_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 if (State & VREPLACE_FLAG)
2405 {
2406 orig_line_count = curbuf->b_ml.ml_line_count;
2407 vr_lines_changed = 1;
2408 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 ResetRedobuff();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002410 AppendToRedobuff((char_u *)"1i"); // pretend we start an insertion
Bram Moolenaara9b1e742005-12-19 22:14:58 +00002411 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 }
2413 else if (ins_need_undo)
2414 {
2415 if (u_save_cursor() == OK)
2416 ins_need_undo = FALSE;
2417 }
2418
2419#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002420 // Always open fold at the cursor line when inserting something.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 foldOpenCursor();
2422#endif
2423
2424 return (arrow_used || ins_need_undo ? FAIL : OK);
2425}
2426
2427/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002428 * Do a few things to stop inserting.
2429 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
2430 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 */
2432 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002433stop_insert(
2434 pos_T *end_insert_pos,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002435 int esc, // called by ins_esc()
2436 int nomove) // <c-\><c-o>, don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002438 int cc;
2439 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440
2441 stop_redo_ins();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002442 replace_flush(); // abandon replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443
2444 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002445 * Save the inserted text for later redo with ^@ and CTRL-A.
2446 * Don't do it when "restart_edit" was set and nothing was inserted,
2447 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002449 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002450 if (did_restart_edit == 0 || (ptr != NULL
2451 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002452 {
2453 vim_free(last_insert);
2454 last_insert = ptr;
2455 last_insert_skip = new_insert_skip;
2456 }
2457 else
2458 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002460 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002462 // Auto-format now. It may seem strange to do this when stopping an
2463 // insertion (or moving the cursor), but it's required when appending
2464 // a line and having it end in a space. But only do it when something
2465 // was actually inserted, otherwise undo won't work.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002466 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002468 pos_T tpos = curwin->w_cursor;
2469
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002470 // When the cursor is at the end of the line after a space the
2471 // formatting will move it to the following word. Avoid that by
2472 // moving the cursor onto the space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 cc = 'x';
2474 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
2475 {
2476 dec_cursor();
2477 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002478 if (!VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002479 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 }
2481
2482 auto_format(TRUE, FALSE);
2483
Bram Moolenaar1c465442017-03-12 20:10:05 +01002484 if (VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002485 {
2486 if (gchar_cursor() != NUL)
2487 inc_cursor();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002488 // If the cursor is still at the same character, also keep
2489 // the "coladd".
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002490 if (gchar_cursor() == NUL
2491 && curwin->w_cursor.lnum == tpos.lnum
2492 && curwin->w_cursor.col == tpos.col)
2493 curwin->w_cursor.coladd = tpos.coladd;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002494 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 }
2496
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002497 // If a space was inserted for auto-formatting, remove it now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 check_auto_format(TRUE);
2499
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002500 // If we just did an auto-indent, remove the white space from the end
2501 // of the line, and put the cursor back.
2502 // Do this when ESC was used or moving the cursor up/down.
2503 // Check for the old position still being valid, just in case the text
2504 // got changed unexpectedly.
Bram Moolenaarf332a652013-11-04 04:20:33 +01002505 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00002506 && curwin->w_cursor.lnum != end_insert_pos->lnum))
2507 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002509 pos_T tpos = curwin->w_cursor;
2510
2511 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002512 check_cursor_col(); // make sure it is not past the line
Bram Moolenaar39f05632006-03-19 22:15:26 +00002513 for (;;)
2514 {
2515 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
2516 --curwin->w_cursor.col;
2517 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002518 if (!VIM_ISWHITE(cc))
Bram Moolenaar39f05632006-03-19 22:15:26 +00002519 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00002520 if (del_char(TRUE) == FAIL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002521 break; // should not happen
Bram Moolenaar39f05632006-03-19 22:15:26 +00002522 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002523 if (curwin->w_cursor.lnum != tpos.lnum)
2524 curwin->w_cursor = tpos;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002525 else
2526 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002527 // reset tpos, could have been invalidated in the loop above
Bram Moolenaaref6875b2014-11-12 18:59:25 +01002528 tpos = curwin->w_cursor;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002529 tpos.col++;
2530 if (cc != NUL && gchar_pos(&tpos) == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002531 ++curwin->w_cursor.col; // put cursor back on the NUL
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002534 // <C-S-Right> may have started Visual mode, adjust the position for
2535 // deleted characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
2537 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002538 int len = (int)STRLEN(ml_get_curline());
2539
2540 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002542 VIsual.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 VIsual.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 }
2545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 }
2547 }
2548 did_ai = FALSE;
2549#ifdef FEAT_SMARTINDENT
2550 did_si = FALSE;
2551 can_si = FALSE;
2552 can_si_back = FALSE;
2553#endif
2554
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002555 // Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
2556 // now in a different buffer.
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002557 if (end_insert_pos != NULL)
2558 {
2559 curbuf->b_op_start = Insstart;
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002560 curbuf->b_op_start_orig = Insstart_orig;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002561 curbuf->b_op_end = *end_insert_pos;
2562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563}
2564
2565/*
2566 * Set the last inserted text to a single character.
2567 * Used for the replace command.
2568 */
2569 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002570set_last_insert(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571{
2572 char_u *s;
2573
2574 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 if (last_insert != NULL)
2577 {
2578 s = last_insert;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002579 // Use the CTRL-V only when entering a special char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 if (c < ' ' || c == DEL)
2581 *s++ = Ctrl_V;
2582 s = add_char2buf(c, s);
2583 *s++ = ESC;
2584 *s++ = NUL;
2585 last_insert_skip = 0;
2586 }
2587}
2588
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002589#if defined(EXITFREE) || defined(PROTO)
2590 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002591free_last_insert(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002592{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002593 VIM_CLEAR(last_insert);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002594}
2595#endif
2596
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597/*
2598 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
2599 * and CSI. Handle multi-byte characters.
2600 * Returns a pointer to after the added bytes.
2601 */
2602 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002603add_char2buf(int c, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604{
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002605 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 int i;
2607 int len;
2608
2609 len = (*mb_char2bytes)(c, temp);
2610 for (i = 0; i < len; ++i)
2611 {
2612 c = temp[i];
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002613 // Need to escape K_SPECIAL and CSI like in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 if (c == K_SPECIAL)
2615 {
2616 *s++ = K_SPECIAL;
2617 *s++ = KS_SPECIAL;
2618 *s++ = KE_FILLER;
2619 }
2620#ifdef FEAT_GUI
2621 else if (c == CSI)
2622 {
2623 *s++ = CSI;
2624 *s++ = KS_EXTRA;
2625 *s++ = (int)KE_CSI;
2626 }
2627#endif
2628 else
2629 *s++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 return s;
2632}
2633
2634/*
2635 * move cursor to start of line
2636 * if flags & BL_WHITE move to first non-white
2637 * if flags & BL_SOL move to first non-white if startofline is set,
2638 * otherwise keep "curswant" column
2639 * if flags & BL_FIX don't leave the cursor on a NUL.
2640 */
2641 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002642beginline(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643{
2644 if ((flags & BL_SOL) && !p_sol)
2645 coladvance(curwin->w_curswant);
2646 else
2647 {
2648 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650
2651 if (flags & (BL_WHITE | BL_SOL))
2652 {
2653 char_u *ptr;
2654
Bram Moolenaar1c465442017-03-12 20:10:05 +01002655 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
2657 ++curwin->w_cursor.col;
2658 }
2659 curwin->w_set_curswant = TRUE;
2660 }
2661}
2662
2663/*
2664 * oneright oneleft cursor_down cursor_up
2665 *
2666 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002667 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 * Return OK when successful, FAIL when we hit a line of file boundary.
2669 */
2670
2671 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002672oneright(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673{
2674 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 if (virtual_active())
2678 {
2679 pos_T prevpos = curwin->w_cursor;
2680
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002681 // Adjust for multi-wide char (excluding TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002683 coladvance(getviscol() + ((*ptr != TAB
2684 && vim_isprintc((*mb_ptr2char)(ptr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 ? ptr2cells(ptr) : 1));
2686 curwin->w_set_curswant = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002687 // Return OK if the cursor moved, FAIL otherwise (at window edge).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 return (prevpos.col != curwin->w_cursor.col
2689 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
2690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691
2692 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002693 if (*ptr == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002694 return FAIL; // already at the very end
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002695
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002696 if (has_mbyte)
2697 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 else
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002699 l = 1;
2700
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002701 // move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
2702 // contains "onemore".
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002703 if (ptr[l] == NUL && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002704 return FAIL;
2705 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706
2707 curwin->w_set_curswant = TRUE;
2708 return OK;
2709}
2710
2711 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002712oneleft(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 if (virtual_active())
2715 {
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002716#ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 int width;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002718#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 int v = getviscol();
2720
2721 if (v == 0)
2722 return FAIL;
2723
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002724#ifdef FEAT_LINEBREAK
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002725 // We might get stuck on 'showbreak', skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 width = 1;
2727 for (;;)
2728 {
2729 coladvance(v - width);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002730 // getviscol() is slow, skip it when 'showbreak' is empty,
2731 // 'breakindent' is not set and there are no multi-byte
2732 // characters
Bram Moolenaaree857022019-11-09 23:26:40 +01002733 if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri
Bram Moolenaar13505972019-01-24 15:04:48 +01002734 && !has_mbyte) || getviscol() < v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 break;
2736 ++width;
2737 }
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002738#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 coladvance(v - 1);
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002740#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741
2742 if (curwin->w_cursor.coladd == 1)
2743 {
2744 char_u *ptr;
2745
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002746 // Adjust for multi-wide char (not a TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002748 if (*ptr != TAB && vim_isprintc((*mb_ptr2char)(ptr))
2749 && ptr2cells(ptr) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 curwin->w_cursor.coladd = 0;
2751 }
2752
2753 curwin->w_set_curswant = TRUE;
2754 return OK;
2755 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756
2757 if (curwin->w_cursor.col == 0)
2758 return FAIL;
2759
2760 curwin->w_set_curswant = TRUE;
2761 --curwin->w_cursor.col;
2762
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002763 // if the character on the left of the current cursor is a multi-byte
2764 // character, move to its first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 if (has_mbyte)
2766 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 return OK;
2768}
2769
2770 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002771cursor_up(
2772 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002773 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774{
2775 linenr_T lnum;
2776
2777 if (n > 0)
2778 {
2779 lnum = curwin->w_cursor.lnum;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002780 // This fails if the cursor is already in the first line or the count
2781 // is larger than the line number and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002782 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 return FAIL;
2784 if (n >= lnum)
2785 lnum = 1;
2786 else
2787#ifdef FEAT_FOLDING
2788 if (hasAnyFolding(curwin))
2789 {
2790 /*
2791 * Count each sequence of folded lines as one logical line.
2792 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002793 // go to the start of the current fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 (void)hasFolding(lnum, &lnum, NULL);
2795
2796 while (n--)
2797 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002798 // move up one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 --lnum;
2800 if (lnum <= 1)
2801 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002802 // If we entered a fold, move to the beginning, unless in
2803 // Insert mode or when 'foldopen' contains "all": it will open
2804 // in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
2806 (void)hasFolding(lnum, &lnum, NULL);
2807 }
2808 if (lnum < 1)
2809 lnum = 1;
2810 }
2811 else
2812#endif
2813 lnum -= n;
2814 curwin->w_cursor.lnum = lnum;
2815 }
2816
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002817 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 coladvance(curwin->w_curswant);
2819
2820 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002821 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822
2823 return OK;
2824}
2825
2826/*
2827 * Cursor down a number of logical lines.
2828 */
2829 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002830cursor_down(
2831 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002832 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833{
2834 linenr_T lnum;
2835
2836 if (n > 0)
2837 {
2838 lnum = curwin->w_cursor.lnum;
2839#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002840 // Move to last line of fold, will fail if it's the end-of-file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 (void)hasFolding(lnum, NULL, &lnum);
2842#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002843 // This fails if the cursor is already in the last line or would move
2844 // beyond the last line and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002845 if (lnum >= curbuf->b_ml.ml_line_count
2846 || (lnum + n > curbuf->b_ml.ml_line_count
2847 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 return FAIL;
2849 if (lnum + n >= curbuf->b_ml.ml_line_count)
2850 lnum = curbuf->b_ml.ml_line_count;
2851 else
2852#ifdef FEAT_FOLDING
2853 if (hasAnyFolding(curwin))
2854 {
2855 linenr_T last;
2856
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002857 // count each sequence of folded lines as one logical line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 while (n--)
2859 {
2860 if (hasFolding(lnum, NULL, &last))
2861 lnum = last + 1;
2862 else
2863 ++lnum;
2864 if (lnum >= curbuf->b_ml.ml_line_count)
2865 break;
2866 }
2867 if (lnum > curbuf->b_ml.ml_line_count)
2868 lnum = curbuf->b_ml.ml_line_count;
2869 }
2870 else
2871#endif
2872 lnum += n;
2873 curwin->w_cursor.lnum = lnum;
2874 }
2875
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002876 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 coladvance(curwin->w_curswant);
2878
2879 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002880 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881
2882 return OK;
2883}
2884
2885/*
2886 * Stuff the last inserted text in the read buffer.
2887 * Last_insert actually is a copy of the redo buffer, so we
2888 * first have to remove the command.
2889 */
2890 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002891stuff_inserted(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002892 int c, // Command character to be inserted
2893 long count, // Repeat this many times
2894 int no_esc) // Don't add an ESC at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895{
2896 char_u *esc_ptr;
2897 char_u *ptr;
2898 char_u *last_ptr;
2899 char_u last = NUL;
2900
2901 ptr = get_last_insert();
2902 if (ptr == NULL)
2903 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002904 emsg(_(e_noinstext));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 return FAIL;
2906 }
2907
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002908 // may want to stuff the command character, to start Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 if (c != NUL)
2910 stuffcharReadbuff(c);
2911 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002912 *esc_ptr = NUL; // remove the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002914 // when the last char is either "0" or "^" it will be quoted if no ESC
2915 // comes after it OR if it will inserted more than once and "ptr"
2916 // starts with ^D. -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
2918 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
2919 && (no_esc || (*ptr == Ctrl_D && count > 1)))
2920 {
2921 last = *last_ptr;
2922 *last_ptr = NUL;
2923 }
2924
2925 do
2926 {
2927 stuffReadbuff(ptr);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002928 // a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 if (last)
2930 stuffReadbuff((char_u *)(last == '0'
2931 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
2932 : IF_EB("\026^", CTRL_V_STR "^")));
2933 }
2934 while (--count > 0);
2935
2936 if (last)
2937 *last_ptr = last;
2938
2939 if (esc_ptr != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002940 *esc_ptr = ESC; // put the ESC back
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002942 // may want to stuff a trailing ESC, to get out of Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 if (!no_esc)
2944 stuffcharReadbuff(ESC);
2945
2946 return OK;
2947}
2948
2949 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002950get_last_insert(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951{
2952 if (last_insert == NULL)
2953 return NULL;
2954 return last_insert + last_insert_skip;
2955}
2956
2957/*
2958 * Get last inserted string, and remove trailing <Esc>.
2959 * Returns pointer to allocated memory (must be freed) or NULL.
2960 */
2961 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002962get_last_insert_save(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963{
2964 char_u *s;
2965 int len;
2966
2967 if (last_insert == NULL)
2968 return NULL;
2969 s = vim_strsave(last_insert + last_insert_skip);
2970 if (s != NULL)
2971 {
2972 len = (int)STRLEN(s);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002973 if (len > 0 && s[len - 1] == ESC) // remove trailing ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 s[len - 1] = NUL;
2975 }
2976 return s;
2977}
2978
2979/*
2980 * Check the word in front of the cursor for an abbreviation.
2981 * Called when the non-id character "c" has been entered.
2982 * When an abbreviation is recognized it is removed from the text and
2983 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
2984 */
2985 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002986echeck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002988 // Don't check for abbreviation in paste mode, when disabled and just
2989 // after moving around with cursor keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 if (p_paste || no_abbr || arrow_used)
2991 return FALSE;
2992
2993 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
2994 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
2995}
2996
2997/*
2998 * replace-stack functions
2999 *
3000 * When replacing characters, the replaced characters are remembered for each
3001 * new character. This is used to re-insert the old text when backspacing.
3002 *
3003 * There is a NUL headed list of characters for each character that is
3004 * currently in the file after the insertion point. When BS is used, one NUL
3005 * headed list is put back for the deleted character.
3006 *
3007 * For a newline, there are two NUL headed lists. One contains the characters
3008 * that the NL replaced. The extra one stores the characters after the cursor
3009 * that were deleted (always white space).
3010 *
3011 * Replace_offset is normally 0, in which case replace_push will add a new
3012 * character at the end of the stack. If replace_offset is not 0, that many
3013 * characters will be left on the stack above the newly inserted character.
3014 */
3015
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003016static char_u *replace_stack = NULL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003017static long replace_stack_nr = 0; // next entry in replace stack
3018static long replace_stack_len = 0; // max. number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019
3020 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003021replace_push(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003022 int c) // character that is replaced (NUL is none)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023{
3024 char_u *p;
3025
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003026 if (replace_stack_nr < replace_offset) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 return;
3028 if (replace_stack_len <= replace_stack_nr)
3029 {
3030 replace_stack_len += 50;
Bram Moolenaar3397f742019-06-02 18:40:06 +02003031 p = ALLOC_MULT(char_u, replace_stack_len);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003032 if (p == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 {
3034 replace_stack_len -= 50;
3035 return;
3036 }
3037 if (replace_stack != NULL)
3038 {
3039 mch_memmove(p, replace_stack,
3040 (size_t)(replace_stack_nr * sizeof(char_u)));
3041 vim_free(replace_stack);
3042 }
3043 replace_stack = p;
3044 }
3045 p = replace_stack + replace_stack_nr - replace_offset;
3046 if (replace_offset)
3047 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
3048 *p = c;
3049 ++replace_stack_nr;
3050}
3051
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003052/*
3053 * Push a character onto the replace stack. Handles a multi-byte character in
3054 * reverse byte order, so that the first byte is popped off first.
3055 * Return the number of bytes done (includes composing characters).
3056 */
3057 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003058replace_push_mb(char_u *p)
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003059{
3060 int l = (*mb_ptr2len)(p);
3061 int j;
3062
3063 for (j = l - 1; j >= 0; --j)
3064 replace_push(p[j]);
3065 return l;
3066}
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003067
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068/*
3069 * Pop one item from the replace stack.
3070 * return -1 if stack empty
3071 * return replaced character or NUL otherwise
3072 */
3073 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003074replace_pop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075{
3076 if (replace_stack_nr == 0)
3077 return -1;
3078 return (int)replace_stack[--replace_stack_nr];
3079}
3080
3081/*
3082 * Join the top two items on the replace stack. This removes to "off"'th NUL
3083 * encountered.
3084 */
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003085 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003086replace_join(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003087 int off) // offset for which NUL to remove
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088{
3089 int i;
3090
3091 for (i = replace_stack_nr; --i >= 0; )
3092 if (replace_stack[i] == NUL && off-- <= 0)
3093 {
3094 --replace_stack_nr;
3095 mch_memmove(replace_stack + i, replace_stack + i + 1,
3096 (size_t)(replace_stack_nr - i));
3097 return;
3098 }
3099}
3100
3101/*
3102 * Pop bytes from the replace stack until a NUL is found, and insert them
3103 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
3104 */
3105 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003106replace_pop_ins(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107{
3108 int cc;
3109 int oldState = State;
3110
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003111 State = NORMAL; // don't want REPLACE here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 while ((cc = replace_pop()) > 0)
3113 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 mb_replace_pop_ins(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 dec_cursor();
3116 }
3117 State = oldState;
3118}
3119
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120/*
3121 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
3122 * indicates a multi-byte char, pop the other bytes too.
3123 */
3124 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003125mb_replace_pop_ins(int cc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126{
3127 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02003128 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 int i;
3130 int c;
3131
3132 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
3133 {
3134 buf[0] = cc;
3135 for (i = 1; i < n; ++i)
3136 buf[i] = replace_pop();
3137 ins_bytes_len(buf, n);
3138 }
3139 else
3140 ins_char(cc);
3141
3142 if (enc_utf8)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003143 // Handle composing chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 for (;;)
3145 {
3146 c = replace_pop();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003147 if (c == -1) // stack empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 break;
3149 if ((n = MB_BYTE2LEN(c)) == 1)
3150 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003151 // Not a multi-byte char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 replace_push(c);
3153 break;
3154 }
3155 else
3156 {
3157 buf[0] = c;
3158 for (i = 1; i < n; ++i)
3159 buf[i] = replace_pop();
3160 if (utf_iscomposing(utf_ptr2char(buf)))
3161 ins_bytes_len(buf, n);
3162 else
3163 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003164 // Not a composing char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 for (i = n - 1; i >= 0; --i)
3166 replace_push(buf[i]);
3167 break;
3168 }
3169 }
3170 }
3171}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172
3173/*
3174 * make the replace stack empty
3175 * (called when exiting replace mode)
3176 */
3177 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003178replace_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179{
Bram Moolenaard23a8232018-02-10 18:45:26 +01003180 VIM_CLEAR(replace_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 replace_stack_len = 0;
3182 replace_stack_nr = 0;
3183}
3184
3185/*
3186 * Handle doing a BS for one character.
3187 * cc < 0: replace stack empty, just move cursor
3188 * cc == 0: character was inserted, delete it
3189 * cc > 0: character was replaced, put cc (first byte of original char) back
3190 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003191 * When "limit_col" is >= 0, don't delete before this column. Matters when
3192 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 */
3194 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003195replace_do_bs(int limit_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196{
3197 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 int orig_len = 0;
3199 int ins_len;
3200 int orig_vcols = 0;
3201 colnr_T start_vcol;
3202 char_u *p;
3203 int i;
3204 int vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205
3206 cc = replace_pop();
3207 if (cc > 0)
3208 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003209#ifdef FEAT_PROP_POPUP
Bram Moolenaar6d11f3b2019-01-06 17:44:38 +01003210 size_t len_before = 0; // init to shut up GCC
Bram Moolenaar196d1572019-01-02 23:47:18 +01003211
3212 if (curbuf->b_has_textprop)
3213 {
3214 // Do not adjust text properties for individual delete and insert
3215 // operations, do it afterwards on the resulting text.
3216 len_before = STRLEN(ml_get_curline());
3217 ++text_prop_frozen;
3218 }
3219#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 if (State & VREPLACE_FLAG)
3221 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003222 // Get the number of screen cells used by the character we are
3223 // going to delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
3225 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
3226 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 if (has_mbyte)
3228 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003229 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003231 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 replace_push(cc);
3233 }
3234 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 {
3236 pchar_cursor(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003238 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 }
3240 replace_pop_ins();
3241
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 if (State & VREPLACE_FLAG)
3243 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003244 // Get the number of screen cells used by the inserted characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003246 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 vcol = start_vcol;
3248 for (i = 0; i < ins_len; ++i)
3249 {
3250 vcol += chartabsize(p + i, vcol);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003251 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 }
3253 vcol -= start_vcol;
3254
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003255 // Delete spaces that were inserted after the cursor to keep the
3256 // text aligned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 curwin->w_cursor.col += ins_len;
3258 while (vcol > orig_vcols && gchar_cursor() == ' ')
3259 {
3260 del_char(FALSE);
3261 ++orig_vcols;
3262 }
3263 curwin->w_cursor.col -= ins_len;
3264 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265
Bram Moolenaar196d1572019-01-02 23:47:18 +01003266 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003268
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003269#ifdef FEAT_PROP_POPUP
Bram Moolenaar196d1572019-01-02 23:47:18 +01003270 if (curbuf->b_has_textprop)
3271 {
3272 size_t len_now = STRLEN(ml_get_curline());
3273
3274 --text_prop_frozen;
3275 adjust_prop_columns(curwin->w_cursor.lnum, curwin->w_cursor.col,
Bram Moolenaarf3333b02019-05-19 22:53:40 +02003276 (int)(len_now - len_before), 0);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003277 }
3278#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279 }
3280 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003281 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282}
3283
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
3285/*
3286 * Map Hebrew keyboard when in hkmap mode.
3287 */
3288 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003289hkmap(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003291 if (p_hkmapp) // phonetic mapping, by Ilya Dogolazky
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 {
3293 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
3294 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
3295 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
3296 static char_u map[26] =
3297 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
3298 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
3299 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
3300 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
3301 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
3302 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
3303 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
3304 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
3305 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
3306
3307 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
3308 return (int)(map[CharOrd(c)] - 1 + p_aleph);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003309 // '-1'='sofit'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 else if (c == 'x')
3311 return 'X';
3312 else if (c == 'q')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003313 return '\''; // {geresh}={'}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314 else if (c == 246)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003315 return ' '; // \"o --> ' ' for a german keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 else if (c == 228)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003317 return ' '; // \"a --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 else if (c == 252)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003319 return ' '; // \"u --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320#ifdef EBCDIC
3321 else if (islower(c))
3322#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003323 // NOTE: islower() does not do the right thing for us on Linux so we
3324 // do this the same was as 5.7 and previous, so it works correctly on
3325 // all systems. Specifically, the e.g. Delete and Arrow keys are
3326 // munged and won't work if e.g. searching for Hebrew text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 else if (c >= 'a' && c <= 'z')
3328#endif
3329 return (int)(map[CharOrdLow(c)] + p_aleph);
3330 else
3331 return c;
3332 }
3333 else
3334 {
3335 switch (c)
3336 {
3337 case '`': return ';';
3338 case '/': return '.';
3339 case '\'': return ',';
3340 case 'q': return '/';
3341 case 'w': return '\'';
3342
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003343 // Hebrew letters - set offset from 'a'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 case ',': c = '{'; break;
3345 case '.': c = 'v'; break;
3346 case ';': c = 't'; break;
3347 default: {
3348 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
3349
3350#ifdef EBCDIC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003351 // see note about islower() above
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 if (!islower(c))
3353#else
3354 if (c < 'a' || c > 'z')
3355#endif
3356 return c;
3357 c = str[CharOrdLow(c)];
3358 break;
3359 }
3360 }
3361
3362 return (int)(CharOrdLow(c) + p_aleph);
3363 }
3364}
3365#endif
3366
3367 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003368ins_reg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369{
3370 int need_redraw = FALSE;
3371 int regname;
3372 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003373 int vis_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374
3375 /*
3376 * If we are going to wait for a character, show a '"'.
3377 */
3378 pc_status = PC_STATUS_UNSET;
3379 if (redrawing() && !char_avail())
3380 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003381 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00003382 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383
3384 edit_putchar('"', TRUE);
3385#ifdef FEAT_CMDL_INFO
3386 add_to_showcmd_c(Ctrl_R);
3387#endif
3388 }
3389
3390#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003391 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392#endif
3393
3394 /*
3395 * Don't map the register name. This also prevents the mode message to be
3396 * deleted when ESC is hit.
3397 */
3398 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003399 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003400 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
3403 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003404 // Get a third key for literal register insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 literally = regname;
3406#ifdef FEAT_CMDL_INFO
3407 add_to_showcmd_c(literally);
3408#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003409 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 }
3412 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003413 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414
3415#ifdef FEAT_EVAL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003416 // Don't call u_sync() while typing the expression or giving an error
3417 // message for it. Only call it explicitly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 ++no_u_sync;
3419 if (regname == '=')
3420 {
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003421 pos_T curpos = curwin->w_cursor;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003422# ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003424# endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003425 // Sync undo when evaluating the expression calls setline() or
3426 // append(), so that it can be undone separately.
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003427 u_sync_once = 2;
Bram Moolenaar5737ca22013-06-27 22:21:24 +02003428
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 regname = get_expr_register();
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003430
3431 // Cursor may be moved back a column.
3432 curwin->w_cursor = curpos;
3433 check_cursor();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003434# ifdef HAVE_INPUT_METHOD
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003435 // Restore the Input Method.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 if (im_on)
3437 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003438# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00003440 if (regname == NUL || !valid_yank_reg(regname, FALSE))
3441 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003442 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003443 need_redraw = TRUE; // remove the '"'
Bram Moolenaar677ee682005-01-27 14:41:15 +00003444 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 else
3446 {
3447#endif
3448 if (literally == Ctrl_O || literally == Ctrl_P)
3449 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003450 // Append the command to the redo buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 AppendCharToRedobuff(Ctrl_R);
3452 AppendCharToRedobuff(literally);
3453 AppendCharToRedobuff(regname);
3454
3455 do_put(regname, BACKWARD, 1L,
3456 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
3457 }
3458 else if (insert_reg(regname, literally) == FAIL)
3459 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003460 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003461 need_redraw = TRUE; // remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003463 else if (stop_insert_mode)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003464 // When the '=' register was used and a function was invoked that
3465 // did ":stopinsert" then stuff_empty() returns FALSE but we won't
3466 // insert anything, need to remove the '"'
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003467 need_redraw = TRUE;
3468
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469#ifdef FEAT_EVAL
3470 }
3471 --no_u_sync;
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003472 if (u_sync_once == 1)
3473 ins_need_undo = TRUE;
3474 u_sync_once = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475#endif
3476#ifdef FEAT_CMDL_INFO
3477 clear_showcmd();
3478#endif
3479
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003480 // If the inserted register is empty, we need to remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 if (need_redraw || stuff_empty())
3482 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003483
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003484 // Disallow starting Visual mode here, would get a weird mode.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003485 if (!vis_active && VIsual_active)
3486 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487}
3488
3489/*
3490 * CTRL-G commands in Insert mode.
3491 */
3492 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003493ins_ctrl_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494{
3495 int c;
3496
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003497 // Right after CTRL-X the cursor will be after the ruler.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499
3500 /*
3501 * Don't map the second key. This also prevents the mode message to be
3502 * deleted when ESC is hit.
3503 */
3504 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003505 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003506 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003508 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 switch (c)
3510 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003511 // CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 case K_UP:
3513 case Ctrl_K:
3514 case 'k': ins_up(TRUE);
3515 break;
3516
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003517 // CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 case K_DOWN:
3519 case Ctrl_J:
3520 case 'j': ins_down(TRUE);
3521 break;
3522
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003523 // CTRL-G u: start new undoable edit
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003524 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003526
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003527 // Need to reset Insstart, esp. because a BS that joins
3528 // a line to the previous one must save for undo.
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01003529 update_Insstart_orig = FALSE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003530 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531 break;
3532
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003533 // CTRL-G U: do not break undo with the next char
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003534 case 'U':
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003535 // Allow one left/right cursor movement with the next char,
3536 // without breaking undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003537 dont_sync_undo = MAYBE;
3538 break;
3539
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003540 // Unknown CTRL-G command, reserved for future expansion.
Bram Moolenaar165bc692015-07-21 17:53:25 +02003541 default: vim_beep(BO_CTRLG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 }
3543}
3544
3545/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003546 * CTRL-^ in Insert mode.
3547 */
3548 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003549ins_ctrl_hat(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003550{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003551 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003552 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003553 // ":lmap" mappings exists, Toggle use of ":lmap" mappings.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003554 if (State & LANGMAP)
3555 {
3556 curbuf->b_p_iminsert = B_IMODE_NONE;
3557 State &= ~LANGMAP;
3558 }
3559 else
3560 {
3561 curbuf->b_p_iminsert = B_IMODE_LMAP;
3562 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003563#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003564 im_set_active(FALSE);
3565#endif
3566 }
3567 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003568#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003569 else
3570 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003571 // There are no ":lmap" mappings, toggle IM
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003572 if (im_get_status())
3573 {
3574 curbuf->b_p_iminsert = B_IMODE_NONE;
3575 im_set_active(FALSE);
3576 }
3577 else
3578 {
3579 curbuf->b_p_iminsert = B_IMODE_IM;
3580 State &= ~LANGMAP;
3581 im_set_active(TRUE);
3582 }
3583 }
3584#endif
3585 set_iminsert_global();
3586 showmode();
3587#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003588 // may show different cursor shape or color
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003589 if (gui.in_use)
3590 gui_update_cursor(TRUE, FALSE);
3591#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003592#if defined(FEAT_KEYMAP)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003593 // Show/unshow value of 'keymap' in status lines.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003594 status_redraw_curbuf();
3595#endif
3596}
3597
3598/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 * Handle ESC in insert mode.
3600 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
3601 * insert.
3602 */
3603 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003604ins_esc(
3605 long *count,
3606 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003607 int nomove) // don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608{
3609 int temp;
3610 static int disabled_redraw = FALSE;
3611
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003612#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003613 check_spell_redraw();
3614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615
3616 temp = curwin->w_cursor.col;
3617 if (disabled_redraw)
3618 {
3619 --RedrawingDisabled;
3620 disabled_redraw = FALSE;
3621 }
3622 if (!arrow_used)
3623 {
3624 /*
3625 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00003626 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
3627 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 */
3629 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00003630 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631
3632 /*
3633 * Repeating insert may take a long time. Check for
3634 * interrupt now and then.
3635 */
3636 if (*count > 0)
3637 {
3638 line_breakcheck();
3639 if (got_int)
3640 *count = 0;
3641 }
3642
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003643 if (--*count > 0) // repeat what was typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003645 // Vi repeats the insert without replacing characters.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003646 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
3647 State &= ~REPLACE_FLAG;
3648
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 (void)start_redo_ins();
3650 if (cmdchar == 'r' || cmdchar == 'v')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003651 stuffRedoReadbuff(ESC_STR); // no ESC in redo buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 ++RedrawingDisabled;
3653 disabled_redraw = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003654 return FALSE; // repeat the insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 }
Bram Moolenaarf332a652013-11-04 04:20:33 +01003656 stop_insert(&curwin->w_cursor, TRUE, nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 undisplay_dollar();
3658 }
3659
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003660 // When an autoindent was removed, curswant stays after the
3661 // indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
3663 curwin->w_set_curswant = TRUE;
3664
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003665 // Remember the last Insert position in the '^ mark.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 if (!cmdmod.keepjumps)
3667 curbuf->b_last_insert = curwin->w_cursor;
3668
3669 /*
3670 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00003671 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00003673 if (!nomove
3674 && (curwin->w_cursor.col != 0
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003675 || curwin->w_cursor.coladd > 0)
Bram Moolenaar488c6512005-08-11 20:09:58 +00003676 && (restart_edit == NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003677 || (gchar_cursor() == NUL && !VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678#ifdef FEAT_RIGHTLEFT
3679 && !revins_on
3680#endif
3681 )
3682 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 if (curwin->w_cursor.coladd > 0 || ve_flags == VE_ALL)
3684 {
3685 oneleft();
3686 if (restart_edit != NUL)
3687 ++curwin->w_cursor.coladd;
3688 }
3689 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 {
3691 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003692 // Correct cursor for multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 if (has_mbyte)
3694 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 }
3696 }
3697
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003698#ifdef HAVE_INPUT_METHOD
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003699 // Disable IM to allow typing English directly for Normal mode commands.
3700 // When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
3701 // well).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 if (!(State & LANGMAP))
3703 im_save_status(&curbuf->b_p_iminsert);
3704 im_set_active(FALSE);
3705#endif
3706
3707 State = NORMAL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003708 // need to position cursor again (e.g. when on a TAB )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 changed_cline_bef_curs();
3710
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712#ifdef CURSOR_SHAPE
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003713 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003715 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003716 {
3717 // Re-enable bracketed paste mode.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003718 out_str(T_BE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003720 // Re-enable modifyOtherKeys.
3721 out_str(T_CTI);
3722 }
3723
Bram Moolenaarad3ec762019-04-21 00:00:13 +02003724 // When recording or for CTRL-O, need to display the new mode.
3725 // Otherwise remove the mode message.
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02003726 if (reg_recording != 0 || restart_edit != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 showmode();
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +02003728 else if (p_smd && (got_int || !skip_showmode()))
Bram Moolenaar32526b32019-01-19 17:43:09 +01003729 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003731 return TRUE; // exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732}
3733
3734#ifdef FEAT_RIGHTLEFT
3735/*
3736 * Toggle language: hkmap and revins_on.
3737 * Move to end of reverse inserted text.
3738 */
3739 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003740ins_ctrl_(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741{
3742 if (revins_on && revins_chars && revins_scol >= 0)
3743 {
3744 while (gchar_cursor() != NUL && revins_chars--)
3745 ++curwin->w_cursor.col;
3746 }
3747 p_ri = !p_ri;
3748 revins_on = (State == INSERT && p_ri);
3749 if (revins_on)
3750 {
3751 revins_scol = curwin->w_cursor.col;
3752 revins_legal++;
3753 revins_chars = 0;
3754 undisplay_dollar();
3755 }
3756 else
3757 revins_scol = -1;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003758 p_hkmap = curwin->w_p_rl ^ p_ri; // be consistent!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 showmode();
3760}
3761#endif
3762
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763/*
3764 * If 'keymodel' contains "startsel", may start selection.
3765 * Returns TRUE when a CTRL-O and other keys stuffed.
3766 */
3767 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003768ins_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769{
3770 if (km_startsel)
3771 switch (c)
3772 {
3773 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 case K_PAGEUP:
3776 case K_KPAGEUP:
3777 case K_PAGEDOWN:
3778 case K_KPAGEDOWN:
Bram Moolenaard0573012017-10-28 21:11:06 +02003779# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 case K_LEFT:
3781 case K_RIGHT:
3782 case K_UP:
3783 case K_DOWN:
3784 case K_END:
3785 case K_HOME:
3786# endif
3787 if (!(mod_mask & MOD_MASK_SHIFT))
3788 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003789 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 case K_S_LEFT:
3791 case K_S_RIGHT:
3792 case K_S_UP:
3793 case K_S_DOWN:
3794 case K_S_END:
3795 case K_S_HOME:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003796 // Start selection right away, the cursor can move with
3797 // CTRL-O when beyond the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 start_selection();
3799
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003800 // Execute the key in (insert) Select mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 stuffcharReadbuff(Ctrl_O);
3802 if (mod_mask)
3803 {
3804 char_u buf[4];
3805
3806 buf[0] = K_SPECIAL;
3807 buf[1] = KS_MODIFIER;
3808 buf[2] = mod_mask;
3809 buf[3] = NUL;
3810 stuffReadbuff(buf);
3811 }
3812 stuffcharReadbuff(c);
3813 return TRUE;
3814 }
3815 return FALSE;
3816}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817
3818/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003819 * <Insert> key in Insert mode: toggle insert/replace mode.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003820 */
3821 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003822ins_insert(int replaceState)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003823{
Bram Moolenaar14184a32019-02-16 15:10:30 +01003824#ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003825 set_vim_var_string(VV_INSERTMODE,
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02003826 (char_u *)((State & REPLACE_FLAG) ? "i"
3827 : replaceState == VREPLACE ? "v"
3828 : "r"), 1);
Bram Moolenaar14184a32019-02-16 15:10:30 +01003829#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02003830 ins_apply_autocmds(EVENT_INSERTCHANGE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003831 if (State & REPLACE_FLAG)
3832 State = INSERT | (State & LANGMAP);
3833 else
3834 State = replaceState | (State & LANGMAP);
3835 AppendCharToRedobuff(K_INS);
3836 showmode();
3837#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003838 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003839#endif
3840}
3841
3842/*
3843 * Pressed CTRL-O in Insert mode.
3844 */
3845 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003846ins_ctrl_o(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003847{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003848 if (State & VREPLACE_FLAG)
3849 restart_edit = 'V';
3850 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003851 if (State & REPLACE_FLAG)
3852 restart_edit = 'R';
3853 else
3854 restart_edit = 'I';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003855 if (virtual_active())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003856 ins_at_eol = FALSE; // cursor always keeps its column
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003857 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003858 ins_at_eol = (gchar_cursor() == NUL);
3859}
3860
3861/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 * If the cursor is on an indent, ^T/^D insert/delete one
3863 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00003864 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 * with vi. But vi only supports ^T and ^D after an
3866 * autoindent, we support it everywhere.
3867 */
3868 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003869ins_shift(int c, int lastc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870{
3871 if (stop_arrow() == FAIL)
3872 return;
3873 AppendCharToRedobuff(c);
3874
3875 /*
3876 * 0^D and ^^D: remove all indent.
3877 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00003878 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
3879 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 {
3881 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003882 (void)del_char(FALSE); // delete the '^' or '0'
3883 // In Replace mode, restore the characters that '^' or '0' replaced.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 if (State & REPLACE_FLAG)
3885 replace_pop_ins();
3886 if (lastc == '^')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003887 old_indent = get_indent(); // remember curr. indent
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003888 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 }
3890 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003891 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892
3893 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
3894 did_ai = FALSE;
3895#ifdef FEAT_SMARTINDENT
3896 did_si = FALSE;
3897 can_si = FALSE;
3898 can_si_back = FALSE;
3899#endif
3900#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003901 can_cindent = FALSE; // no cindenting after ^D or ^T
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902#endif
3903}
3904
3905 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003906ins_del(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907{
3908 int temp;
3909
3910 if (stop_arrow() == FAIL)
3911 return;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003912 if (gchar_cursor() == NUL) // delete newline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 {
3914 temp = curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003915 if (!can_bs(BS_EOL) // only if "eol" included
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02003916 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003917 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 else
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003919 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 curwin->w_cursor.col = temp;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003921 // Adjust orig_line_count in case more lines have been deleted than
3922 // have been added. That makes sure, that open_line() later
3923 // can access all buffer lines correctly
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003924 if (State & VREPLACE_FLAG &&
3925 orig_line_count > curbuf->b_ml.ml_line_count)
3926 orig_line_count = curbuf->b_ml.ml_line_count;
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003929 else if (del_char(FALSE) == FAIL) // delete char under cursor
Bram Moolenaar165bc692015-07-21 17:53:25 +02003930 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 did_ai = FALSE;
3932#ifdef FEAT_SMARTINDENT
3933 did_si = FALSE;
3934 can_si = FALSE;
3935 can_si_back = FALSE;
3936#endif
3937 AppendCharToRedobuff(K_DEL);
3938}
3939
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003940/*
3941 * Delete one character for ins_bs().
3942 */
3943 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003944ins_bs_one(colnr_T *vcolp)
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003945{
3946 dec_cursor();
3947 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
3948 if (State & REPLACE_FLAG)
3949 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003950 // Don't delete characters before the insert point when in
3951 // Replace mode
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003952 if (curwin->w_cursor.lnum != Insstart.lnum
3953 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003954 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003955 }
3956 else
3957 (void)del_char(FALSE);
3958}
3959
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960/*
3961 * Handle Backspace, delete-word and delete-line in Insert mode.
3962 * Return TRUE when backspace was actually used.
3963 */
3964 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003965ins_bs(
3966 int c,
3967 int mode,
3968 int *inserted_space_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969{
3970 linenr_T lnum;
3971 int cc;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003972 int temp = 0; // init for GCC
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003973 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 colnr_T mincol;
3975 int did_backspace = FALSE;
3976 int in_indent;
3977 int oldState;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003978 int cpc[MAX_MCO]; // composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979
3980 /*
3981 * can't delete anything in an empty file
3982 * can't backup past first character in buffer
3983 * can't backup past starting point unless 'backspace' > 1
3984 * can backup to a previous line if 'backspace' == 0
3985 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003986 if ( BUFEMPTY()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 || (
3988#ifdef FEAT_RIGHTLEFT
3989 !revins_on &&
3990#endif
3991 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
3992 || (!can_bs(BS_START)
3993 && (arrow_used
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02003994 || (curwin->w_cursor.lnum == Insstart_orig.lnum
3995 && curwin->w_cursor.col <= Insstart_orig.col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
3997 && curwin->w_cursor.col <= ai_col)
3998 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
3999 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02004000 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 return FALSE;
4002 }
4003
4004 if (stop_arrow() == FAIL)
4005 return FALSE;
4006 in_indent = inindent(0);
4007#ifdef FEAT_CINDENT
4008 if (in_indent)
4009 can_cindent = FALSE;
4010#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004011 end_comment_pending = NUL; // After BS, don't auto-end comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004013 if (revins_on) // put cursor after last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 inc_cursor();
4015#endif
4016
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004017 // Virtualedit:
4018 // BACKSPACE_CHAR eats a virtual space
4019 // BACKSPACE_WORD eats all coladd
4020 // BACKSPACE_LINE eats all coladd and keeps going
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 if (curwin->w_cursor.coladd > 0)
4022 {
4023 if (mode == BACKSPACE_CHAR)
4024 {
4025 --curwin->w_cursor.coladd;
4026 return TRUE;
4027 }
4028 if (mode == BACKSPACE_WORD)
4029 {
4030 curwin->w_cursor.coladd = 0;
4031 return TRUE;
4032 }
4033 curwin->w_cursor.coladd = 0;
4034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035
4036 /*
Bram Moolenaar878c2632017-04-01 15:15:52 +02004037 * Delete newline!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 */
4039 if (curwin->w_cursor.col == 0)
4040 {
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004041 lnum = Insstart.lnum;
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004042 if (curwin->w_cursor.lnum == lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043#ifdef FEAT_RIGHTLEFT
4044 || revins_on
4045#endif
4046 )
4047 {
4048 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
4049 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
4050 return FALSE;
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004051 --Insstart.lnum;
Bram Moolenaar04000562017-04-03 21:35:42 +02004052 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 }
4054 /*
4055 * In replace mode:
4056 * cc < 0: NL was inserted, delete it
4057 * cc >= 0: NL was replaced, put original characters back
4058 */
4059 cc = -1;
4060 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004061 cc = replace_pop(); // returns -1 if NL was inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 /*
4063 * In replace mode, in the line we started replacing, we only move the
4064 * cursor.
4065 */
4066 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
4067 {
4068 dec_cursor();
4069 }
4070 else
4071 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 if (!(State & VREPLACE_FLAG)
4073 || curwin->w_cursor.lnum > orig_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004075 temp = gchar_cursor(); // remember current char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004077
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004078 // When "aw" is in 'formatoptions' we must delete the space at
4079 // the end of the line, otherwise the line will be broken
4080 // again when auto-formatting.
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004081 if (has_format_option(FO_AUTO)
4082 && has_format_option(FO_WHITE_PAR))
4083 {
4084 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
4085 TRUE);
4086 int len;
4087
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004088 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004089 if (len > 0 && ptr[len - 1] == ' ')
4090 ptr[len - 1] = NUL;
4091 }
4092
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004093 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 if (temp == NUL && gchar_cursor() != NUL)
4095 inc_cursor();
4096 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 else
4098 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099
4100 /*
4101 * In REPLACE mode we have to put back the text that was replaced
4102 * by the NL. On the replace stack is first a NUL-terminated
4103 * sequence of characters that were deleted and then the
4104 * characters that NL replaced.
4105 */
4106 if (State & REPLACE_FLAG)
4107 {
4108 /*
4109 * Do the next ins_char() in NORMAL state, to
4110 * prevent ins_char() from replacing characters and
4111 * avoiding showmatch().
4112 */
4113 oldState = State;
4114 State = NORMAL;
4115 /*
4116 * restore characters (blanks) deleted after cursor
4117 */
4118 while (cc > 0)
4119 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004120 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 mb_replace_pop_ins(cc);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004122 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 cc = replace_pop();
4124 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004125 // restore the characters that NL replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 replace_pop_ins();
4127 State = oldState;
4128 }
4129 }
4130 did_ai = FALSE;
4131 }
4132 else
4133 {
4134 /*
4135 * Delete character(s) before the cursor.
4136 */
4137#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004138 if (revins_on) // put cursor on last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 dec_cursor();
4140#endif
4141 mincol = 0;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004142 // keep indent
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004143 if (mode == BACKSPACE_LINE
4144 && (curbuf->b_p_ai
4145#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00004146 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004147#endif
4148 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149#ifdef FEAT_RIGHTLEFT
4150 && !revins_on
4151#endif
4152 )
4153 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004154 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00004156 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004158 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 }
4160
4161 /*
4162 * Handle deleting one 'shiftwidth' or 'softtabstop'.
4163 */
4164 if ( mode == BACKSPACE_CHAR
4165 && ((p_sta && in_indent)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004166 || ((get_sts_value() != 0
4167#ifdef FEAT_VARTABS
4168 || tabstop_count(curbuf->b_p_vsts_array)
4169#endif
4170 )
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00004171 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 && (*(ml_get_cursor() - 1) == TAB
4173 || (*(ml_get_cursor() - 1) == ' '
4174 && (!*inserted_space_p
4175 || arrow_used))))))
4176 {
4177 int ts;
4178 colnr_T vcol;
4179 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004180 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181
4182 *inserted_space_p = FALSE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004183 // Compute the virtual column where we want to be. Since
4184 // 'showbreak' may get in the way, need to get the last column of
4185 // the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004187 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 dec_cursor();
4189 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
4190 inc_cursor();
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004191#ifdef FEAT_VARTABS
4192 if (p_sta && in_indent)
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004193 {
4194 ts = (int)get_sw_value(curbuf);
4195 want_vcol = (want_vcol / ts) * ts;
4196 }
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004197 else
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004198 want_vcol = tabstop_start(want_vcol, get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004199 curbuf->b_p_vsts_array);
4200#else
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004201 if (p_sta && in_indent)
4202 ts = (int)get_sw_value(curbuf);
4203 else
4204 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 want_vcol = (want_vcol / ts) * ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004206#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004208 // delete characters until we are at or before want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 while (vcol > want_vcol
Bram Moolenaar1c465442017-03-12 20:10:05 +01004210 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004211 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004213 // insert extra spaces until we are at want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214 while (vcol < want_vcol)
4215 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004216 // Remember the first char we inserted
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004217 if (curwin->w_cursor.lnum == Insstart_orig.lnum
4218 && curwin->w_cursor.col < Insstart_orig.col)
4219 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 if (State & VREPLACE_FLAG)
4222 ins_char(' ');
4223 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 {
4225 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004226 if ((State & REPLACE_FLAG))
4227 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 }
4229 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
4230 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004231
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004232 // If we are now back where we started delete one character. Can
4233 // happen when using 'sts' and 'linebreak'.
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004234 if (vcol >= start_vcol)
4235 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 }
4237
4238 /*
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004239 * Delete up to starting point, start of line or previous word.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 */
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004241 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004243 int cclass = 0, prev_cclass = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004245 if (has_mbyte)
4246 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004247 do
4248 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004250 if (!revins_on) // put cursor on char to be deleted
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 dec_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004253
4254 cc = gchar_cursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004255 // look multi-byte character class
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004256 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004258 prev_cclass = cclass;
4259 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 }
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004261
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004262 // start of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004263 if (mode == BACKSPACE_WORD && !vim_isspace(cc))
4264 {
4265 mode = BACKSPACE_WORD_NOT_SPACE;
4266 temp = vim_iswordc(cc);
4267 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004268 // end of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004269 else if (mode == BACKSPACE_WORD_NOT_SPACE
4270 && ((vim_isspace(cc) || vim_iswordc(cc) != temp)
Bram Moolenaar13505972019-01-24 15:04:48 +01004271 || prev_cclass != cclass))
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004272 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273#ifdef FEAT_RIGHTLEFT
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004274 if (!revins_on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004276 inc_cursor();
4277#ifdef FEAT_RIGHTLEFT
4278 else if (State & REPLACE_FLAG)
4279 dec_cursor();
4280#endif
4281 break;
4282 }
4283 if (State & REPLACE_FLAG)
4284 replace_do_bs(-1);
4285 else
4286 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004287 if (enc_utf8 && p_deco)
4288 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004289 (void)del_char(FALSE);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004290 /*
4291 * If there are combining characters and 'delcombine' is set
4292 * move the cursor back. Don't back up before the base
4293 * character.
4294 */
4295 if (enc_utf8 && p_deco && cpc[0] != NUL)
4296 inc_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004297#ifdef FEAT_RIGHTLEFT
4298 if (revins_chars)
4299 {
4300 revins_chars--;
4301 revins_legal++;
4302 }
4303 if (revins_on && gchar_cursor() == NUL)
4304 break;
4305#endif
4306 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004307 // Just a single backspace?:
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004308 if (mode == BACKSPACE_CHAR)
4309 break;
4310 } while (
4311#ifdef FEAT_RIGHTLEFT
4312 revins_on ||
4313#endif
4314 (curwin->w_cursor.col > mincol
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02004315 && (can_bs(BS_NOSTOP)
4316 || (curwin->w_cursor.lnum != Insstart_orig.lnum
4317 || curwin->w_cursor.col != Insstart_orig.col)
4318 )));
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 did_backspace = TRUE;
4321 }
4322#ifdef FEAT_SMARTINDENT
4323 did_si = FALSE;
4324 can_si = FALSE;
4325 can_si_back = FALSE;
4326#endif
4327 if (curwin->w_cursor.col <= 1)
4328 did_ai = FALSE;
4329 /*
4330 * It's a little strange to put backspaces into the redo
4331 * buffer, but it makes auto-indent a lot easier to deal
4332 * with.
4333 */
4334 AppendCharToRedobuff(c);
4335
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004336 // If deleted before the insertion point, adjust it
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004337 if (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02004338 && curwin->w_cursor.col < Insstart_orig.col)
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004339 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004341 // vi behaviour: the cursor moves backward but the character that
4342 // was there remains visible
4343 // Vim behaviour: the cursor moves backward and the character that
4344 // was there is erased from the screen.
4345 // We can emulate the vi behaviour by pretending there is a dollar
4346 // displayed even when there isn't.
4347 // --pkv Sun Jan 19 01:56:40 EST 2003
Bram Moolenaar76b9b362012-02-04 23:35:00 +01004348 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 dollar_vcol = curwin->w_virtcol;
4350
Bram Moolenaarce3be472008-01-14 19:12:28 +00004351#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004352 // When deleting a char the cursor line must never be in a closed fold.
4353 // E.g., when 'foldmethod' is indent and deleting the first non-white
4354 // char before a Tab.
Bram Moolenaarce3be472008-01-14 19:12:28 +00004355 if (did_backspace)
4356 foldOpenCursor();
4357#endif
4358
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 return did_backspace;
4360}
4361
Bram Moolenaarec2da362017-01-21 20:04:22 +01004362/*
4363 * Handle receiving P_PS: start paste mode. Inserts the following text up to
4364 * P_PE literally.
4365 * When "drop" is TRUE then consume the text and drop it.
4366 */
4367 int
4368bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
4369{
4370 int c;
4371 char_u buf[NUMBUFLEN + MB_MAXBYTES];
4372 int idx = 0;
4373 char_u *end = find_termcode((char_u *)"PE");
4374 int ret_char = -1;
4375 int save_allow_keys = allow_keys;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004376 int save_paste = p_paste;
Bram Moolenaarec2da362017-01-21 20:04:22 +01004377
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004378 // If the end code is too long we can't detect it, read everything.
Bram Moolenaarfe4bbac2020-01-20 21:12:20 +01004379 if (end != NULL && STRLEN(end) >= NUMBUFLEN)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004380 end = NULL;
4381 ++no_mapping;
4382 allow_keys = 0;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004383 if (!p_paste)
4384 // Also have the side effects of setting 'paste' to make it work much
4385 // faster.
4386 set_option_value((char_u *)"paste", TRUE, NULL, 0);
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004387
Bram Moolenaarec2da362017-01-21 20:04:22 +01004388 for (;;)
4389 {
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004390 // When the end is not defined read everything there is.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004391 if (end == NULL && vpeekc() == NUL)
4392 break;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004393 do
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004394 c = vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +01004395 while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004396 if (c == NUL || got_int || (ex_normal_busy > 0 && c == Ctrl_C))
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004397 // When CTRL-C was encountered the typeahead will be flushed and we
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004398 // won't get the end sequence. Except when using ":normal".
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004399 break;
4400
Bram Moolenaarec2da362017-01-21 20:04:22 +01004401 if (has_mbyte)
4402 idx += (*mb_char2bytes)(c, buf + idx);
4403 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004404 buf[idx++] = c;
4405 buf[idx] = NUL;
Bram Moolenaar866c6882017-04-07 14:02:01 +02004406 if (end != NULL && STRNCMP(buf, end, idx) == 0)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004407 {
4408 if (end[idx] == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004409 break; // Found the end of paste code.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004410 continue;
4411 }
4412 if (!drop)
4413 {
4414 switch (mode)
4415 {
4416 case PASTE_CMDLINE:
4417 put_on_cmdline(buf, idx, TRUE);
4418 break;
4419
4420 case PASTE_EX:
4421 if (gap != NULL && ga_grow(gap, idx) == OK)
4422 {
4423 mch_memmove((char *)gap->ga_data + gap->ga_len,
4424 buf, (size_t)idx);
4425 gap->ga_len += idx;
4426 }
4427 break;
4428
4429 case PASTE_INSERT:
4430 if (stop_arrow() == OK)
4431 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004432 c = buf[0];
4433 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL))
4434 ins_eol(c);
4435 else
Bram Moolenaar076e5022017-01-24 18:58:30 +01004436 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004437 ins_char_bytes(buf, idx);
Bram Moolenaar076e5022017-01-24 18:58:30 +01004438 AppendToRedobuffLit(buf, idx);
4439 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01004440 }
4441 break;
4442
4443 case PASTE_ONE_CHAR:
4444 if (ret_char == -1)
4445 {
Bram Moolenaarec2da362017-01-21 20:04:22 +01004446 if (has_mbyte)
4447 ret_char = (*mb_ptr2char)(buf);
4448 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004449 ret_char = buf[0];
4450 }
4451 break;
4452 }
4453 }
4454 idx = 0;
4455 }
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004456
Bram Moolenaarec2da362017-01-21 20:04:22 +01004457 --no_mapping;
4458 allow_keys = save_allow_keys;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004459 if (!save_paste)
4460 set_option_value((char_u *)"paste", FALSE, NULL, 0);
Bram Moolenaarec2da362017-01-21 20:04:22 +01004461
4462 return ret_char;
4463}
4464
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004465#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004466 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004467ins_tabline(int c)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004468{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004469 // We will be leaving the current window, unless closing another tab.
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004470 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
4471 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
4472 {
4473 undisplay_dollar();
4474 start_arrow(&curwin->w_cursor);
4475# ifdef FEAT_CINDENT
4476 can_cindent = TRUE;
4477# endif
4478 }
4479
4480 if (c == K_TABLINE)
4481 goto_tabpage(current_tab);
4482 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004483 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004484 handle_tabmenu();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004485 redraw_statuslines(); // will redraw the tabline when needed
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004486 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004487}
4488#endif
4489
4490#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004492ins_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493{
4494 pos_T tpos;
4495
4496 undisplay_dollar();
4497 tpos = curwin->w_cursor;
4498 if (gui_do_scroll())
4499 {
4500 start_arrow(&tpos);
4501# ifdef FEAT_CINDENT
4502 can_cindent = TRUE;
4503# endif
4504 }
4505}
4506
4507 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004508ins_horscroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509{
4510 pos_T tpos;
4511
4512 undisplay_dollar();
4513 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004514 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 {
4516 start_arrow(&tpos);
4517# ifdef FEAT_CINDENT
4518 can_cindent = TRUE;
4519# endif
4520 }
4521}
4522#endif
4523
4524 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004525ins_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526{
4527 pos_T tpos;
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004528 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529
4530#ifdef FEAT_FOLDING
4531 if ((fdo_flags & FDO_HOR) && KeyTyped)
4532 foldOpenCursor();
4533#endif
4534 undisplay_dollar();
4535 tpos = curwin->w_cursor;
4536 if (oneleft() == OK)
4537 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004538#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004539 // Only call start_arrow() when not busy with preediting, it will
4540 // break undo. K_LEFT is inserted in im_correct_cursor().
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02004541 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting())
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004542#endif
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004543 {
4544 start_arrow_with_change(&tpos, end_change);
4545 if (!end_change)
4546 AppendCharToRedobuff(K_LEFT);
4547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004549 // If exit reversed string, position is fixed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
4551 revins_legal++;
4552 revins_chars++;
4553#endif
4554 }
4555
4556 /*
4557 * if 'whichwrap' set for cursor in insert mode may go to
4558 * previous line
4559 */
4560 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
4561 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004562 // always break undo when moving upwards/downwards, else undo may break
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 start_arrow(&tpos);
4564 --(curwin->w_cursor.lnum);
4565 coladvance((colnr_T)MAXCOL);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004566 curwin->w_set_curswant = TRUE; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 }
4568 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004569 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004570 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571}
4572
4573 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004574ins_home(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575{
4576 pos_T tpos;
4577
4578#ifdef FEAT_FOLDING
4579 if ((fdo_flags & FDO_HOR) && KeyTyped)
4580 foldOpenCursor();
4581#endif
4582 undisplay_dollar();
4583 tpos = curwin->w_cursor;
4584 if (c == K_C_HOME)
4585 curwin->w_cursor.lnum = 1;
4586 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 curwin->w_curswant = 0;
4589 start_arrow(&tpos);
4590}
4591
4592 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004593ins_end(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594{
4595 pos_T tpos;
4596
4597#ifdef FEAT_FOLDING
4598 if ((fdo_flags & FDO_HOR) && KeyTyped)
4599 foldOpenCursor();
4600#endif
4601 undisplay_dollar();
4602 tpos = curwin->w_cursor;
4603 if (c == K_C_END)
4604 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4605 coladvance((colnr_T)MAXCOL);
4606 curwin->w_curswant = MAXCOL;
4607
4608 start_arrow(&tpos);
4609}
4610
4611 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004612ins_s_left()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004614 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615#ifdef FEAT_FOLDING
4616 if ((fdo_flags & FDO_HOR) && KeyTyped)
4617 foldOpenCursor();
4618#endif
4619 undisplay_dollar();
4620 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
4621 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004622 start_arrow_with_change(&curwin->w_cursor, end_change);
4623 if (!end_change)
4624 AppendCharToRedobuff(K_S_LEFT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 (void)bck_word(1L, FALSE, FALSE);
4626 curwin->w_set_curswant = TRUE;
4627 }
4628 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004629 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004630 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631}
4632
4633 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004634ins_right(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004636 int end_change = dont_sync_undo == FALSE; // end undoable change
4637
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638#ifdef FEAT_FOLDING
4639 if ((fdo_flags & FDO_HOR) && KeyTyped)
4640 foldOpenCursor();
4641#endif
4642 undisplay_dollar();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004643 if (gchar_cursor() != NUL || virtual_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 {
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004645 start_arrow_with_change(&curwin->w_cursor, end_change);
4646 if (!end_change)
4647 AppendCharToRedobuff(K_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 if (virtual_active())
4650 oneright();
4651 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004654 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 ++curwin->w_cursor.col;
4657 }
4658
4659#ifdef FEAT_RIGHTLEFT
4660 revins_legal++;
4661 if (revins_chars)
4662 revins_chars--;
4663#endif
4664 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004665 // if 'whichwrap' set for cursor in insert mode, may move the
4666 // cursor to the next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 else if (vim_strchr(p_ww, ']') != NULL
4668 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4669 {
4670 start_arrow(&curwin->w_cursor);
4671 curwin->w_set_curswant = TRUE;
4672 ++curwin->w_cursor.lnum;
4673 curwin->w_cursor.col = 0;
4674 }
4675 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004676 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004677 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678}
4679
4680 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004681ins_s_right()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004683 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684#ifdef FEAT_FOLDING
4685 if ((fdo_flags & FDO_HOR) && KeyTyped)
4686 foldOpenCursor();
4687#endif
4688 undisplay_dollar();
4689 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4690 || gchar_cursor() != NUL)
4691 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004692 start_arrow_with_change(&curwin->w_cursor, end_change);
4693 if (!end_change)
4694 AppendCharToRedobuff(K_S_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 (void)fwd_word(1L, FALSE, 0);
4696 curwin->w_set_curswant = TRUE;
4697 }
4698 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004699 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004700 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701}
4702
4703 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004704ins_up(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004705 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706{
4707 pos_T tpos;
4708 linenr_T old_topline = curwin->w_topline;
4709#ifdef FEAT_DIFF
4710 int old_topfill = curwin->w_topfill;
4711#endif
4712
4713 undisplay_dollar();
4714 tpos = curwin->w_cursor;
4715 if (cursor_up(1L, TRUE) == OK)
4716 {
4717 if (startcol)
4718 coladvance(getvcol_nolist(&Insstart));
4719 if (old_topline != curwin->w_topline
4720#ifdef FEAT_DIFF
4721 || old_topfill != curwin->w_topfill
4722#endif
4723 )
4724 redraw_later(VALID);
4725 start_arrow(&tpos);
4726#ifdef FEAT_CINDENT
4727 can_cindent = TRUE;
4728#endif
4729 }
4730 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004731 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732}
4733
4734 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004735ins_pageup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736{
4737 pos_T tpos;
4738
4739 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004740
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004741 if (mod_mask & MOD_MASK_CTRL)
4742 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004743 // <C-PageUp>: tab page back
Bram Moolenaarbc444822006-10-17 11:37:50 +00004744 if (first_tabpage->tp_next != NULL)
4745 {
4746 start_arrow(&curwin->w_cursor);
4747 goto_tabpage(-1);
4748 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004749 return;
4750 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004751
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 tpos = curwin->w_cursor;
4753 if (onepage(BACKWARD, 1L) == OK)
4754 {
4755 start_arrow(&tpos);
4756#ifdef FEAT_CINDENT
4757 can_cindent = TRUE;
4758#endif
4759 }
4760 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004761 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762}
4763
4764 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004765ins_down(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004766 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767{
4768 pos_T tpos;
4769 linenr_T old_topline = curwin->w_topline;
4770#ifdef FEAT_DIFF
4771 int old_topfill = curwin->w_topfill;
4772#endif
4773
4774 undisplay_dollar();
4775 tpos = curwin->w_cursor;
4776 if (cursor_down(1L, TRUE) == OK)
4777 {
4778 if (startcol)
4779 coladvance(getvcol_nolist(&Insstart));
4780 if (old_topline != curwin->w_topline
4781#ifdef FEAT_DIFF
4782 || old_topfill != curwin->w_topfill
4783#endif
4784 )
4785 redraw_later(VALID);
4786 start_arrow(&tpos);
4787#ifdef FEAT_CINDENT
4788 can_cindent = TRUE;
4789#endif
4790 }
4791 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004792 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793}
4794
4795 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004796ins_pagedown(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797{
4798 pos_T tpos;
4799
4800 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004801
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004802 if (mod_mask & MOD_MASK_CTRL)
4803 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004804 // <C-PageDown>: tab page forward
Bram Moolenaarbc444822006-10-17 11:37:50 +00004805 if (first_tabpage->tp_next != NULL)
4806 {
4807 start_arrow(&curwin->w_cursor);
4808 goto_tabpage(0);
4809 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004810 return;
4811 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004812
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813 tpos = curwin->w_cursor;
4814 if (onepage(FORWARD, 1L) == OK)
4815 {
4816 start_arrow(&tpos);
4817#ifdef FEAT_CINDENT
4818 can_cindent = TRUE;
4819#endif
4820 }
4821 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004822 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823}
4824
4825#ifdef FEAT_DND
4826 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004827ins_drop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828{
4829 do_put('~', BACKWARD, 1L, PUT_CURSEND);
4830}
4831#endif
4832
4833/*
4834 * Handle TAB in Insert or Replace mode.
4835 * Return TRUE when the TAB needs to be inserted like a normal character.
4836 */
4837 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004838ins_tab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839{
4840 int ind;
4841 int i;
4842 int temp;
4843
4844 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
4845 Insstart_blank_vcol = get_nolist_virtcol();
4846 if (echeck_abbr(TAB + ABBR_OFF))
4847 return FALSE;
4848
4849 ind = inindent(0);
4850#ifdef FEAT_CINDENT
4851 if (ind)
4852 can_cindent = FALSE;
4853#endif
4854
4855 /*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004856 * When nothing special, insert TAB like a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 */
4858 if (!curbuf->b_p_et
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004859#ifdef FEAT_VARTABS
4860 && !(p_sta && ind
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004861 // These five lines mean 'tabstop' != 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004862 && ((tabstop_count(curbuf->b_p_vts_array) > 1)
4863 || (tabstop_count(curbuf->b_p_vts_array) == 1
4864 && tabstop_first(curbuf->b_p_vts_array)
4865 != get_sw_value(curbuf))
4866 || (tabstop_count(curbuf->b_p_vts_array) == 0
4867 && curbuf->b_p_ts != get_sw_value(curbuf))))
4868 && tabstop_count(curbuf->b_p_vsts_array) == 0
4869#else
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004870 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004871#endif
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004872 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 return TRUE;
4874
4875 if (stop_arrow() == FAIL)
4876 return TRUE;
4877
4878 did_ai = FALSE;
4879#ifdef FEAT_SMARTINDENT
4880 did_si = FALSE;
4881 can_si = FALSE;
4882 can_si_back = FALSE;
4883#endif
4884 AppendToRedobuff((char_u *)"\t");
4885
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004886#ifdef FEAT_VARTABS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004887 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004888 {
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004889 temp = (int)get_sw_value(curbuf);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004890 temp -= get_nolist_virtcol() % temp;
4891 }
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004892 else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts != 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004893 // use 'softtabstop' when set
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004894 temp = tabstop_padding(get_nolist_virtcol(), get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004895 curbuf->b_p_vsts_array);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004896 else // otherwise use 'tabstop'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004897 temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts,
4898 curbuf->b_p_vts_array);
4899#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004900 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004901 temp = (int)get_sw_value(curbuf);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004902 else if (curbuf->b_p_sts != 0) // use 'softtabstop' when set
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004903 temp = (int)get_sts_value();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004904 else // otherwise use 'tabstop'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 temp = (int)curbuf->b_p_ts;
4906 temp -= get_nolist_virtcol() % temp;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004907#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908
4909 /*
4910 * Insert the first space with ins_char(). It will delete one char in
4911 * replace mode. Insert the rest with ins_str(); it will not delete any
4912 * chars. For VREPLACE mode, we use ins_char() for all characters.
4913 */
4914 ins_char(' ');
4915 while (--temp > 0)
4916 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 if (State & VREPLACE_FLAG)
4918 ins_char(' ');
4919 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 {
4921 ins_str((char_u *)" ");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004922 if (State & REPLACE_FLAG) // no char replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 replace_push(NUL);
4924 }
4925 }
4926
4927 /*
4928 * When 'expandtab' not set: Replace spaces by TABs where possible.
4929 */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004930#ifdef FEAT_VARTABS
4931 if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0
4932 || get_sts_value() > 0
4933 || (p_sta && ind)))
4934#else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004935 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 {
4938 char_u *ptr;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004939 char_u *saved_line = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 pos_T fpos;
4942 pos_T *cursor;
4943 colnr_T want_vcol, vcol;
4944 int change_col = -1;
4945 int save_list = curwin->w_p_list;
4946
4947 /*
4948 * Get the current line. For VREPLACE mode, don't make real changes
4949 * yet, just work on a copy of the line.
4950 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 if (State & VREPLACE_FLAG)
4952 {
4953 pos = curwin->w_cursor;
4954 cursor = &pos;
4955 saved_line = vim_strsave(ml_get_curline());
4956 if (saved_line == NULL)
4957 return FALSE;
4958 ptr = saved_line + pos.col;
4959 }
4960 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 {
4962 ptr = ml_get_cursor();
4963 cursor = &curwin->w_cursor;
4964 }
4965
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004966 // When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
4968 curwin->w_p_list = FALSE;
4969
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004970 // Find first white before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 fpos = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +01004972 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 {
4974 --fpos.col;
4975 --ptr;
4976 }
4977
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004978 // In Replace mode, don't change characters before the insert point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 if ((State & REPLACE_FLAG)
4980 && fpos.lnum == Insstart.lnum
4981 && fpos.col < Insstart.col)
4982 {
4983 ptr += Insstart.col - fpos.col;
4984 fpos.col = Insstart.col;
4985 }
4986
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004987 // compute virtual column numbers of first white and cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 getvcol(curwin, &fpos, &vcol, NULL, NULL);
4989 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
4990
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004991 // Use as many TABs as possible. Beware of 'breakindent', 'showbreak'
4992 // and 'linebreak' adding extra virtual columns.
Bram Moolenaar1c465442017-03-12 20:10:05 +01004993 while (VIM_ISWHITE(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02004995 i = lbr_chartabsize(NULL, (char_u *)"\t", vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 if (vcol + i > want_vcol)
4997 break;
4998 if (*ptr != TAB)
4999 {
5000 *ptr = TAB;
5001 if (change_col < 0)
5002 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005003 change_col = fpos.col; // Column of first change
5004 // May have to adjust Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
5006 Insstart.col = fpos.col;
5007 }
5008 }
5009 ++fpos.col;
5010 ++ptr;
5011 vcol += i;
5012 }
5013
5014 if (change_col >= 0)
5015 {
5016 int repl_off = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005017 char_u *line = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005019 // Skip over the spaces we need.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 while (vcol < want_vcol && *ptr == ' ')
5021 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02005022 vcol += lbr_chartabsize(line, ptr, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 ++ptr;
5024 ++repl_off;
5025 }
5026 if (vcol > want_vcol)
5027 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005028 // Must have a char with 'showbreak' just before it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 --ptr;
5030 --repl_off;
5031 }
5032 fpos.col += repl_off;
5033
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005034 // Delete following spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 i = cursor->col - fpos.col;
5036 if (i > 0)
5037 {
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005038#ifdef FEAT_PROP_POPUP
5039 if (!(State & VREPLACE_FLAG))
5040 {
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005041 char_u *newp;
5042 int col;
5043
5044 newp = alloc(curbuf->b_ml.ml_line_len - i);
5045 if (newp == NULL)
5046 return FALSE;
5047
5048 col = ptr - curbuf->b_ml.ml_line_ptr;
5049 if (col > 0)
5050 mch_memmove(newp, ptr - col, col);
5051 mch_memmove(newp + col, ptr + i,
5052 curbuf->b_ml.ml_line_len - col - i);
5053
5054 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY)
5055 vim_free(curbuf->b_ml.ml_line_ptr);
5056 curbuf->b_ml.ml_line_ptr = newp;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005057 curbuf->b_ml.ml_line_len -= i;
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005058 curbuf->b_ml.ml_flags =
5059 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005060 }
5061 else
5062#endif
5063 STRMOVE(ptr, ptr + i);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005064 // correct replace stack.
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005065 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 for (temp = i; --temp >= 0; )
5067 replace_join(repl_off);
5068 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00005069#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005070 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00005071 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02005072 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00005073 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
5074 (char_u *)"\t", 1);
5075 }
5076#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 cursor->col -= i;
5078
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 /*
5080 * In VREPLACE mode, we haven't changed anything yet. Do it now by
5081 * backspacing over the changed spacing and then inserting the new
5082 * spacing.
5083 */
5084 if (State & VREPLACE_FLAG)
5085 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005086 // Backspace from real cursor to change_col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 backspace_until_column(change_col);
5088
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005089 // Insert each char in saved_line from changed_col to
5090 // ptr-cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 ins_bytes_len(saved_line + change_col,
5092 cursor->col - change_col);
5093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 }
5095
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 if (State & VREPLACE_FLAG)
5097 vim_free(saved_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 curwin->w_p_list = save_list;
5099 }
5100
5101 return FALSE;
5102}
5103
5104/*
5105 * Handle CR or NL in insert mode.
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005106 * Return FAIL when out of memory or can't undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005108 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005109ins_eol(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110{
5111 int i;
5112
5113 if (echeck_abbr(c + ABBR_OFF))
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005114 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 if (stop_arrow() == FAIL)
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005116 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 undisplay_dollar();
5118
5119 /*
5120 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
5121 * character under the cursor. Only push a NUL on the replace stack,
5122 * nothing to put back when the NL is deleted.
5123 */
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005124 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 replace_push(NUL);
5126
5127 /*
5128 * In VREPLACE mode, a NL replaces the rest of the line, and starts
5129 * replacing the next line, so we push all of the characters left on the
5130 * line onto the replace stack. This is not done here though, it is done
5131 * in open_line().
5132 */
5133
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005134 // Put cursor on NUL if on the last char and coladd is 1 (happens after
5135 // CTRL-O).
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005136 if (virtual_active() && curwin->w_cursor.coladd > 0)
5137 coladvance(getviscol());
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005138
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005140 // NL in reverse insert will always start in the end of
5141 // current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 if (revins_on)
5143 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
5144#endif
5145
5146 AppendToRedobuff(NL_STR);
5147 i = open_line(FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02005148 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM : 0, old_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 old_indent = 0;
5150#ifdef FEAT_CINDENT
5151 can_cindent = TRUE;
5152#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005153#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005154 // When inserting a line the cursor line must never be in a closed fold.
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005155 foldOpenCursor();
5156#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005158 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159}
5160
5161#ifdef FEAT_DIGRAPHS
5162/*
5163 * Handle digraph in insert mode.
5164 * Returns character still to be inserted, or NUL when nothing remaining to be
5165 * done.
5166 */
5167 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005168ins_digraph(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169{
5170 int c;
5171 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005172 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173
5174 pc_status = PC_STATUS_UNSET;
5175 if (redrawing() && !char_avail())
5176 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005177 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005178 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179
5180 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005181 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182#ifdef FEAT_CMDL_INFO
5183 add_to_showcmd_c(Ctrl_K);
5184#endif
5185 }
5186
5187#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005188 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189#endif
5190
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005191 // don't map the digraph chars. This also prevents the
5192 // mode message to be deleted when ESC is hit
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 ++no_mapping;
5194 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005195 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 --no_mapping;
5197 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005198 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005199 // when the line fits in 'columns' the '?' is at the start of the next
5200 // line and will not be removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005201 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02005202
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005203 if (IS_SPECIAL(c) || mod_mask) // special key
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 {
5205#ifdef FEAT_CMDL_INFO
5206 clear_showcmd();
5207#endif
5208 insert_special(c, TRUE, FALSE);
5209 return NUL;
5210 }
5211 if (c != ESC)
5212 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005213 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 if (redrawing() && !char_avail())
5215 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005216 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005217 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218
5219 if (char2cells(c) == 1)
5220 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00005221 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005223 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 }
5225#ifdef FEAT_CMDL_INFO
5226 add_to_showcmd_c(c);
5227#endif
5228 }
5229 ++no_mapping;
5230 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005231 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 --no_mapping;
5233 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005234 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005235 // when the line fits in 'columns' the '?' is at the start of the
5236 // next line and will not be removed by a redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005237 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 if (cc != ESC)
5239 {
5240 AppendToRedobuff((char_u *)CTRL_V_STR);
5241 c = getdigraph(c, cc, TRUE);
5242#ifdef FEAT_CMDL_INFO
5243 clear_showcmd();
5244#endif
5245 return c;
5246 }
5247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248#ifdef FEAT_CMDL_INFO
5249 clear_showcmd();
5250#endif
5251 return NUL;
5252}
5253#endif
5254
5255/*
5256 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
5257 * Returns the char to be inserted, or NUL if none found.
5258 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005259 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005260ins_copychar(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261{
5262 int c;
5263 int temp;
5264 char_u *ptr, *prev_ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005265 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266
5267 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
5268 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02005269 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 return NUL;
5271 }
5272
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005273 // try to advance to the cursor column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 temp = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005275 line = ptr = ml_get(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 prev_ptr = ptr;
5277 validate_virtcol();
5278 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
5279 {
5280 prev_ptr = ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005281 temp += lbr_chartabsize_adv(line, &ptr, (colnr_T)temp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 }
5283 if ((colnr_T)temp > curwin->w_virtcol)
5284 ptr = prev_ptr;
5285
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 c = (*mb_ptr2char)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 if (c == NUL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005288 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 return c;
5290}
5291
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005292/*
5293 * CTRL-Y or CTRL-E typed in Insert mode.
5294 */
5295 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005296ins_ctrl_ey(int tc)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005297{
5298 int c = tc;
5299
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005300 if (ctrl_x_mode_scroll())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005301 {
5302 if (c == Ctrl_Y)
5303 scrolldown_clamp();
5304 else
5305 scrollup_clamp();
5306 redraw_later(VALID);
5307 }
5308 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005309 {
5310 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
5311 if (c != NUL)
5312 {
5313 long tw_save;
5314
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005315 // The character must be taken literally, insert like it
5316 // was typed after a CTRL-V, and pretend 'textwidth'
5317 // wasn't set. Digits, 'o' and 'x' are special after a
5318 // CTRL-V, don't use it for these.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005319 if (c < 256 && !isalnum(c))
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005320 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005321 tw_save = curbuf->b_p_tw;
5322 curbuf->b_p_tw = -1;
5323 insert_special(c, TRUE, FALSE);
5324 curbuf->b_p_tw = tw_save;
5325#ifdef FEAT_RIGHTLEFT
5326 revins_chars++;
5327 revins_legal++;
5328#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005329 c = Ctrl_V; // pretend CTRL-V is last character
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005330 auto_format(FALSE, TRUE);
5331 }
5332 }
5333 return c;
5334}
5335
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336/*
5337 * Get the value that w_virtcol would have when 'list' is off.
5338 * Unless 'cpo' contains the 'L' flag.
5339 */
Bram Moolenaarf9514162018-11-22 03:08:29 +01005340 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005341get_nolist_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342{
Bram Moolenaarf9514162018-11-22 03:08:29 +01005343 // check validity of cursor in current buffer
5344 if (curwin->w_buffer == NULL
5345 || curwin->w_buffer->b_ml.ml_mfp == NULL
5346 || curwin->w_cursor.lnum > curwin->w_buffer->b_ml.ml_line_count)
5347 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
5349 return getvcol_nolist(&curwin->w_cursor);
5350 validate_virtcol();
5351 return curwin->w_virtcol;
5352}
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005353
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005354#if defined(FEAT_EVAL)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005355/*
5356 * Handle the InsertCharPre autocommand.
5357 * "c" is the character that was typed.
5358 * Return a pointer to allocated memory with the replacement string.
5359 * Return NULL to continue inserting "c".
5360 */
5361 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005362do_insert_char_pre(int c)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005363{
Bram Moolenaar704984a2012-06-01 14:57:51 +02005364 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +02005365 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005366 int save_State = State;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005367
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005368 // Return quickly when there is nothing to do.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005369 if (!has_insertcharpre())
5370 return NULL;
5371
Bram Moolenaar704984a2012-06-01 14:57:51 +02005372 if (has_mbyte)
5373 buf[(*mb_char2bytes)(c, buf)] = NUL;
5374 else
Bram Moolenaar704984a2012-06-01 14:57:51 +02005375 {
5376 buf[0] = c;
5377 buf[1] = NUL;
5378 }
5379
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005380 // Lock the text to avoid weird things from happening.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005381 ++textwinlock;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005382 set_vim_var_string(VV_CHAR, buf, -1); // set v:char
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005383
Bram Moolenaar704984a2012-06-01 14:57:51 +02005384 res = NULL;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005385 if (ins_apply_autocmds(EVENT_INSERTCHARPRE))
Bram Moolenaar704984a2012-06-01 14:57:51 +02005386 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005387 // Get the value of v:char. It may be empty or more than one
5388 // character. Only use it when changed, otherwise continue with the
5389 // original character to avoid breaking autoindent.
Bram Moolenaar704984a2012-06-01 14:57:51 +02005390 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
5391 res = vim_strsave(get_vim_var_str(VV_CHAR));
5392 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005393
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005394 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005395 --textwinlock;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005396
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005397 // Restore the State, it may have been changed.
5398 State = save_State;
5399
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005400 return res;
5401}
5402#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005403
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005404#if defined(FEAT_CINDENT) || defined(PROTO)
5405 int
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005406get_can_cindent(void)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005407{
5408 return can_cindent;
5409}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005410
5411 void
5412set_can_cindent(int val)
5413{
5414 can_cindent = val;
5415}
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005416#endif
5417
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005418/*
5419 * Trigger "event" and take care of fixing undo.
5420 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005421 int
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005422ins_apply_autocmds(event_T event)
5423{
5424 varnumber_T tick = CHANGEDTICK(curbuf);
5425 int r;
5426
5427 r = apply_autocmds(event, NULL, NULL, FALSE, curbuf);
5428
5429 // If u_savesub() was called then we are not prepared to start
5430 // a new line. Call u_save() with no contents to fix that.
Bram Moolenaardb934952020-04-27 20:18:31 +02005431 // Except when leaving Insert mode.
5432 if (event != EVENT_INSERTLEAVE && tick != CHANGEDTICK(curbuf))
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005433 u_save(curwin->w_cursor.lnum, (linenr_T)(curwin->w_cursor.lnum + 1));
5434
5435 return r;
5436}