blob: a152d84499a77f68a2df9b2b8926c85aa293e02f [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * edit.c: functions for Insert mode
12 */
13
14#include "vim.h"
15
Bram Moolenaar071d4272004-06-13 20:20:40 +000016#define BACKSPACE_CHAR 1
17#define BACKSPACE_WORD 2
18#define BACKSPACE_WORD_NOT_SPACE 3
19#define BACKSPACE_LINE 4
20
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010021// Set when doing something for completion that may call edit() recursively,
22// which is not allowed.
Bram Moolenaar7591bb32019-03-30 13:53:47 +010023static int compl_busy = FALSE;
Bram Moolenaar7591bb32019-03-30 13:53:47 +010024
25
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010026static void ins_ctrl_v(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010027static void insert_special(int, int, int);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010028static void redo_literal(int c);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010029static void start_arrow_common(pos_T *end_insert_pos, int change);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +000030#ifdef FEAT_SPELL
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010031static void check_spell_redraw(void);
Bram Moolenaar217ad922005-03-20 22:37:15 +000032#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010033static void stop_insert(pos_T *end_insert_pos, int esc, int nomove);
34static int echeck_abbr(int);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010035static void mb_replace_pop_ins(int cc);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010036static void replace_flush(void);
37static void replace_do_bs(int limit_col);
38static int del_char_after_col(int limit_col);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static void ins_reg(void);
40static void ins_ctrl_g(void);
41static void ins_ctrl_hat(void);
42static int ins_esc(long *count, int cmdchar, int nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#ifdef FEAT_RIGHTLEFT
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010044static void ins_ctrl_(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010046static int ins_start_select(int c);
47static void ins_insert(int replaceState);
48static void ins_ctrl_o(void);
49static void ins_shift(int c, int lastc);
50static void ins_del(void);
51static int ins_bs(int c, int mode, int *inserted_space_p);
Bram Moolenaara23ccb82006-02-27 00:08:02 +000052#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010053static void ins_tabline(int c);
Bram Moolenaara23ccb82006-02-27 00:08:02 +000054#endif
Bram Moolenaar75bf3d22019-03-26 22:46:05 +010055static void ins_left(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010056static void ins_home(int c);
57static void ins_end(int c);
58static void ins_s_left(void);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +010059static void ins_right(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010060static void ins_s_right(void);
61static void ins_up(int startcol);
62static void ins_pageup(void);
63static void ins_down(int startcol);
64static void ins_pagedown(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000065#ifdef FEAT_DND
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010066static void ins_drop(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010068static int ins_tab(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000069#ifdef FEAT_DIGRAPHS
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010070static int ins_digraph(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000071#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010072static int ins_ctrl_ey(int tc);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +010073#if defined(FEAT_EVAL)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010074static char_u *do_insert_char_pre(int c);
Bram Moolenaarf5876f12012-02-29 18:22:08 +010075#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000076
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010077static colnr_T Insstart_textlen; // length of line when insert started
78static colnr_T Insstart_blank_vcol; // vcol for first inserted blank
79static int update_Insstart_orig = TRUE; // set Insstart_orig to Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +000080
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010081static char_u *last_insert = NULL; // the text of the previous insert,
82 // K_SPECIAL and CSI are escaped
83static int last_insert_skip; // nr of chars in front of previous insert
84static int new_insert_skip; // nr of chars in front of current insert
85static int did_restart_edit; // "restart_edit" when calling edit()
Bram Moolenaar071d4272004-06-13 20:20:40 +000086
87#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010088static int can_cindent; // may do cindenting on this line
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010092static int revins_on; // reverse insert mode on
93static int revins_chars; // how much to skip after edit
94static int revins_legal; // was the last char 'legal'?
95static int revins_scol; // start column of revins session
Bram Moolenaar071d4272004-06-13 20:20:40 +000096#endif
97
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010098static int ins_need_undo; // call u_save() before inserting a
99 // char. Set when edit() is called.
100 // after that arrow_used is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101
Bram Moolenaar75bf3d22019-03-26 22:46:05 +0100102static int dont_sync_undo = FALSE; // CTRL-G U prevents syncing undo for
103 // the next left/right cursor key
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104
105/*
106 * edit(): Start inserting text.
107 *
108 * "cmdchar" can be:
109 * 'i' normal insert command
110 * 'a' normal append command
Bram Moolenaarec2da362017-01-21 20:04:22 +0100111 * K_PS bracketed paste
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112 * 'R' replace command
113 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo,
114 * but still only one <CR> is inserted. The <Esc> is not used for redo.
115 * 'g' "gI" command.
116 * 'V' "gR" command for Virtual Replace mode.
117 * 'v' "gr" command for single character Virtual Replace mode.
118 *
119 * This function is not called recursively. For CTRL-O commands, it returns
120 * and lets the caller handle the Normal-mode command.
121 *
122 * Return TRUE if a CTRL-O command caused the return (insert mode pending).
123 */
124 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100125edit(
126 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100127 int startln, // if set, insert at start of line
Bram Moolenaar7454a062016-01-30 15:14:10 +0100128 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129{
130 int c = 0;
131 char_u *ptr;
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100132 int lastc = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000133 int mincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 static linenr_T o_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 int i;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100136 int did_backspace = TRUE; // previous char was backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100138 int line_is_white = FALSE; // line is empty before insert
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100140 linenr_T old_topline = 0; // topline before insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141#ifdef FEAT_DIFF
142 int old_topfill = -1;
143#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100144 int inserted_space = FALSE; // just inserted a space
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 int replaceState = REPLACE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100146 int nomove = FALSE; // don't move cursor on return
Bram Moolenaarf2732452018-06-03 14:47:35 +0200147#ifdef FEAT_JOB_CHANNEL
148 int cmdchar_todo = cmdchar;
149#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100151 // Remember whether editing was restarted after CTRL-O.
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000152 did_restart_edit = restart_edit;
153
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100154 // sleep before redrawing, needed for "CTRL-O :" that results in an
155 // error message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 check_for_delay(TRUE);
157
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100158 // set Insstart_orig to Insstart
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100159 update_Insstart_orig = TRUE;
160
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161#ifdef HAVE_SANDBOX
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100162 // Don't allow inserting in the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 if (sandbox != 0)
164 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100165 emsg(_(e_sandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 return FALSE;
167 }
168#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100169 // Don't allow changes in the buffer while editing the cmdline. The
170 // caller of getcmdline() may get confused.
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100171 // Don't allow recursive insert mode when busy with completion.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +0200172 if (textwinlock != 0 || textlock != 0
173 || ins_compl_active() || compl_busy || pum_visible())
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000174 {
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +0200175 emsg(_(e_textwinlock));
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000176 return FALSE;
177 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100178 ins_compl_clear(); // clear stuff for CTRL-X mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179
Bram Moolenaar843ee412004-06-30 16:16:41 +0000180 /*
181 * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx".
182 */
183 if (cmdchar != 'r' && cmdchar != 'v')
184 {
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100185 pos_T save_cursor = curwin->w_cursor;
186
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100187#ifdef FEAT_EVAL
Bram Moolenaar843ee412004-06-30 16:16:41 +0000188 if (cmdchar == 'R')
189 ptr = (char_u *)"r";
190 else if (cmdchar == 'V')
191 ptr = (char_u *)"v";
192 else
193 ptr = (char_u *)"i";
194 set_vim_var_string(VV_INSERTMODE, ptr, 1);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100195 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100196#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +0200197 ins_apply_autocmds(EVENT_INSERTENTER);
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100198
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100199 // Make sure the cursor didn't move. Do call check_cursor_col() in
200 // case the text was modified. Since Insert mode was not started yet
201 // a call to check_cursor_col() may move the cursor, especially with
202 // the "A" command, thus set State to avoid that. Also check that the
203 // line number is still valid (lines may have been deleted).
204 // Do not restore if v:char was set to a non-empty string.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100205 if (!EQUAL_POS(curwin->w_cursor, save_cursor)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100206#ifdef FEAT_EVAL
Bram Moolenaar097c9922013-05-19 21:15:15 +0200207 && *get_vim_var_str(VV_CHAR) == NUL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100208#endif
Bram Moolenaar097c9922013-05-19 21:15:15 +0200209 && save_cursor.lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100210 {
211 int save_state = State;
212
213 curwin->w_cursor = save_cursor;
214 State = INSERT;
215 check_cursor_col();
216 State = save_state;
217 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000218 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000219
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200220#ifdef FEAT_CONCEAL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100221 // Check if the cursor line needs redrawing before changing State. If
222 // 'concealcursor' is "n" it needs to be redrawn without concealing.
Bram Moolenaarb9464822018-05-10 15:09:49 +0200223 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200224#endif
225
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 /*
227 * When doing a paste with the middle mouse button, Insstart is set to
228 * where the paste started.
229 */
230 if (where_paste_started.lnum != 0)
231 Insstart = where_paste_started;
232 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 {
234 Insstart = curwin->w_cursor;
235 if (startln)
236 Insstart.col = 0;
237 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000238 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 Insstart_blank_vcol = MAXCOL;
240 if (!did_ai)
241 ai_col = 0;
242
243 if (cmdchar != NUL && restart_edit == 0)
244 {
245 ResetRedobuff();
246 AppendNumberToRedobuff(count);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 if (cmdchar == 'V' || cmdchar == 'v')
248 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100249 // "gR" or "gr" command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250 AppendCharToRedobuff('g');
251 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
252 }
253 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 {
Bram Moolenaar076e5022017-01-24 18:58:30 +0100255 if (cmdchar == K_PS)
256 AppendCharToRedobuff('a');
257 else
258 AppendCharToRedobuff(cmdchar);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100259 if (cmdchar == 'g') // "gI" command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 AppendCharToRedobuff('I');
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100261 else if (cmdchar == 'r') // "r<CR>" command
262 count = 1; // insert only one <CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 }
264 }
265
266 if (cmdchar == 'R')
267 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 State = REPLACE;
269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 else if (cmdchar == 'V' || cmdchar == 'v')
271 {
272 State = VREPLACE;
273 replaceState = VREPLACE;
274 orig_line_count = curbuf->b_ml.ml_line_count;
275 vr_lines_changed = 1;
276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 else
278 State = INSERT;
279
280 stop_insert_mode = FALSE;
281
282 /*
283 * Need to recompute the cursor position, it might move when the cursor is
284 * on a TAB or special character.
285 */
286 curs_columns(TRUE);
287
288 /*
289 * Enable langmap or IME, indicated by 'iminsert'.
290 * Note that IME may enabled/disabled without us noticing here, thus the
291 * 'iminsert' value may not reflect what is actually used. It is updated
292 * when hitting <Esc>.
293 */
294 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
295 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100296#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
298#endif
299
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301#ifdef FEAT_CMDL_INFO
302 clear_showcmd();
303#endif
304#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100305 // there is no reverse replace mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 revins_on = (State == INSERT && p_ri);
307 if (revins_on)
308 undisplay_dollar();
309 revins_chars = 0;
310 revins_legal = 0;
311 revins_scol = -1;
312#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100313 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100314 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +0200315#ifdef FEAT_JOB_CHANNEL
316 ch_log_output = TRUE;
317#endif
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100318 // 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.
Bram Moolenaard0e1b712020-09-27 20:13:03 +0200590 if (c != K_IGNORE && c != K_NOP)
591 vungetc(c);
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200592 count = 0;
593 nomove = TRUE;
Bram Moolenaard0e1b712020-09-27 20:13:03 +0200594 ins_compl_prep(ESC);
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200595 goto doESCkey;
596 }
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100597 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100599 // Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V.
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000600 did_cursorhold = TRUE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000601
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602#ifdef FEAT_RIGHTLEFT
603 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100604 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000607 /*
608 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000609 * and the cursor is still in the completed word. Only when there is
610 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000611 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100612 if (ins_compl_active()
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000613 && pum_wanted()
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100614 && curwin->w_cursor.col >= ins_compl_col()
615 && ins_compl_has_shown_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000616 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100617 // BS: Delete one character from "compl_leader".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000618 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100619 && curwin->w_cursor.col > ins_compl_col()
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000620 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000621 continue;
622
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100623 // When no match was selected or it was edited.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100624 if (!ins_compl_used_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000625 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100626 // CTRL-L: Add one character from the current match to
627 // "compl_leader". Except when at the original match and
628 // there is nothing to add, CTRL-L works like CTRL-P then.
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000629 if (c == Ctrl_L
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100630 && (!ctrl_x_mode_line_or_eval()
631 || ins_compl_long_shown_match()))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000632 {
633 ins_compl_addfrommatch();
634 continue;
635 }
636
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100637 // A non-white character that fits in with the current
638 // completion: Add to "compl_leader".
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000639 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000640 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100641#if defined(FEAT_EVAL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100642 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100643 char_u *str = do_insert_char_pre(c);
644 char_u *p;
645
646 if (str != NULL)
647 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100648 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100649 ins_compl_addleader(PTR2CHAR(p));
650 vim_free(str);
651 }
652 else
653#endif
654 ins_compl_addleader(c);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000655 continue;
656 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000657
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100658 // Pressing CTRL-Y selects the current match. When
659 // ins_compl_enter_selects() is set the Enter key does the
660 // same.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100661 if ((c == Ctrl_Y || (ins_compl_enter_selects()
Bram Moolenaarcbd3bd62016-10-17 20:47:02 +0200662 && (c == CAR || c == K_KENTER || c == NL)))
663 && stop_arrow() == OK)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000664 {
665 ins_compl_delete();
Bram Moolenaar472e8592016-10-15 17:06:47 +0200666 ins_compl_insert(FALSE);
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000667 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000668 }
669 }
670
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100671 // Prepare for or stop CTRL-X mode. This doesn't do completion, but
672 // it does fix up the text when finishing completion.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100673 ins_compl_init_get_longest();
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000674 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000675 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100677 // CTRL-\ CTRL-N goes to Normal mode,
678 // CTRL-\ CTRL-G goes to mode selected with 'insertmode',
679 // CTRL-\ CTRL-O is like CTRL-O but without moving the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 if (c == Ctrl_BSL)
681 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100682 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +0000683 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 ++no_mapping;
685 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000686 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 --no_mapping;
688 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000689 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100691 // it's something else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 vungetc(c);
693 c = Ctrl_BSL;
694 }
695 else if (c == Ctrl_G && p_im)
696 continue;
697 else
698 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000699 if (c == Ctrl_O)
700 {
701 ins_ctrl_o();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100702 ins_at_eol = FALSE; // cursor keeps its column
Bram Moolenaar488c6512005-08-11 20:09:58 +0000703 nomove = TRUE;
704 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 count = 0;
706 goto doESCkey;
707 }
708 }
709
710#ifdef FEAT_DIGRAPHS
711 c = do_digraph(c);
712#endif
713
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100714 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode_cmdline())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 if (c == Ctrl_V || c == Ctrl_Q)
717 {
718 ins_ctrl_v();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100719 c = Ctrl_V; // pretend CTRL-V is last typed character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720 continue;
721 }
722
723#ifdef FEAT_CINDENT
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200724 if (cindent_on() && ctrl_x_mode_none())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100726 // A key name preceded by a bang means this key is not to be
727 // inserted. Skip ahead to the re-indenting below.
728 // A key name preceded by a star means that indenting has to be
729 // done before inserting the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 line_is_white = inindent(0);
731 if (in_cinkeys(c, '!', line_is_white))
732 goto force_cindent;
733 if (can_cindent && in_cinkeys(c, '*', line_is_white)
734 && stop_arrow() == OK)
735 do_c_expr_indent();
736 }
737#endif
738
739#ifdef FEAT_RIGHTLEFT
740 if (curwin->w_p_rl)
741 switch (c)
742 {
743 case K_LEFT: c = K_RIGHT; break;
744 case K_S_LEFT: c = K_S_RIGHT; break;
745 case K_C_LEFT: c = K_C_RIGHT; break;
746 case K_RIGHT: c = K_LEFT; break;
747 case K_S_RIGHT: c = K_S_LEFT; break;
748 case K_C_RIGHT: c = K_C_LEFT; break;
749 }
750#endif
751
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 /*
753 * If 'keymodel' contains "startsel", may start selection. If it
754 * does, a CTRL-O and c will be stuffed, we need to get these
755 * characters.
756 */
757 if (ins_start_select(c))
758 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759
760 /*
761 * The big switch to handle a character in insert mode.
762 */
763 switch (c)
764 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100765 case ESC: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 if (echeck_abbr(ESC + ABBR_OFF))
767 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100768 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100770 case Ctrl_C: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771#ifdef FEAT_CMDWIN
772 if (c == Ctrl_C && cmdwin_type != 0)
773 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100774 // Close the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 cmdwin_result = K_IGNORE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100776 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000777 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 goto doESCkey;
779 }
780#endif
Bram Moolenaar0e5979a2018-06-17 19:36:33 +0200781#ifdef FEAT_JOB_CHANNEL
782 if (c == Ctrl_C && bt_prompt(curbuf))
783 {
784 if (invoke_prompt_interrupt())
785 {
786 if (!bt_prompt(curbuf))
787 // buffer changed to a non-prompt buffer, get out of
788 // Insert mode
789 goto doESCkey;
790 break;
791 }
792 }
793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794
795#ifdef UNIX
796do_intr:
797#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100798 // when 'insertmode' set, and not halfway a mapping, don't leave
799 // Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 if (goto_im())
801 {
802 if (got_int)
803 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100804 (void)vgetc(); // flush all buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 got_int = FALSE;
806 }
807 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200808 vim_beep(BO_IM);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 break;
810 }
811doESCkey:
812 /*
813 * This is the ONLY return from edit()!
814 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100815 // Always update o_lnum, so that a "CTRL-O ." that adds a line
816 // still puts the cursor back after the inserted text.
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000817 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 o_lnum = curwin->w_cursor.lnum;
819
Bram Moolenaar488c6512005-08-11 20:09:58 +0000820 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +0000821 {
Bram Moolenaar4dbc2622018-11-02 11:59:15 +0100822 // When CTRL-C was typed got_int will be set, with the result
823 // that the autocommands won't be executed. When mapped got_int
824 // is not set, but let's keep the behavior the same.
825 if (cmdchar != 'r' && cmdchar != 'v' && c != Ctrl_C)
Bram Moolenaar9fa95062018-08-08 22:08:32 +0200826 ins_apply_autocmds(EVENT_INSERTLEAVE);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +0000827 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000829 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 continue;
831
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100832 case Ctrl_Z: // suspend when 'insertmode' set
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000833 if (!p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100834 goto normalchar; // insert CTRL-Z as normal char
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +0100835 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar74a47162017-02-26 19:09:05 +0100836#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100837 ui_cursor_shape(); // may need to update cursor shape
Bram Moolenaar74a47162017-02-26 19:09:05 +0100838#endif
839 continue;
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000840
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100841 case Ctrl_O: // execute one command
Bram Moolenaare344bea2005-09-01 20:46:49 +0000842#ifdef FEAT_COMPL_FUNC
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100843 if (ctrl_x_mode_omni())
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000844 goto docomplete;
845#endif
846 if (echeck_abbr(Ctrl_O + ABBR_OFF))
847 break;
848 ins_ctrl_o();
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000849
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100850 // don't move the cursor left when 'virtualedit' has "onemore".
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000851 if (ve_flags & VE_ONEMORE)
852 {
853 ins_at_eol = FALSE;
854 nomove = TRUE;
855 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000856 count = 0;
857 goto doESCkey;
858
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100859 case K_INS: // toggle insert/replace mode
Bram Moolenaar572cb562005-08-05 21:35:02 +0000860 case K_KINS:
861 ins_insert(replaceState);
862 break;
863
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100864 case K_SELECT: // end of Select mode mapping - ignore
Bram Moolenaar572cb562005-08-05 21:35:02 +0000865 break;
866
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100867 case K_HELP: // Help key works like <ESC> <Help>
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000868 case K_F1:
869 case K_XF1:
870 stuffcharReadbuff(K_HELP);
871 if (p_im)
872 need_start_insertmode = TRUE;
873 goto doESCkey;
874
875#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100876 case K_F21: // NetBeans command
877 ++no_mapping; // don't map the next key hits
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000878 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000879 --no_mapping;
880 netbeans_keycommand(i);
881 break;
882#endif
883
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100884 case K_ZERO: // Insert the previously inserted text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 case NUL:
886 case Ctrl_A:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100887 // For ^@ the trailing ESC will end the insert, unless there is an
888 // error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
890 && c != Ctrl_A && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100891 goto doESCkey; // quit insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 inserted_space = FALSE;
893 break;
894
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100895 case Ctrl_R: // insert the contents of a register
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 ins_reg();
897 auto_format(FALSE, TRUE);
898 inserted_space = FALSE;
899 break;
900
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100901 case Ctrl_G: // commands starting with CTRL-G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 ins_ctrl_g();
903 break;
904
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100905 case Ctrl_HAT: // switch input mode and/or langmap
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000906 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 break;
908
909#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100910 case Ctrl__: // switch between languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 if (!p_ari)
912 goto normalchar;
913 ins_ctrl_();
914 break;
915#endif
916
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100917 case Ctrl_D: // Make indent one shiftwidth smaller.
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200918#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100919 if (ctrl_x_mode_path_defines())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 goto docomplete;
921#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100922 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100924 case Ctrl_T: // Make indent one shiftwidth greater.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100925 if (c == Ctrl_T && ctrl_x_mode_thesaurus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000927 if (has_compl_option(FALSE))
928 goto docomplete;
929 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200931
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 ins_shift(c, lastc);
933 auto_format(FALSE, TRUE);
934 inserted_space = FALSE;
935 break;
936
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100937 case K_DEL: // delete character under the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 case K_KDEL:
939 ins_del();
940 auto_format(FALSE, TRUE);
941 break;
942
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100943 case K_BS: // delete character before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 case Ctrl_H:
945 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
946 auto_format(FALSE, TRUE);
947 break;
948
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100949 case Ctrl_W: // delete word before the cursor
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200950#ifdef FEAT_JOB_CHANNEL
951 if (bt_prompt(curbuf) && (mod_mask & MOD_MASK_SHIFT) == 0)
952 {
953 // In a prompt window CTRL-W is used for window commands.
954 // Use Shift-CTRL-W to delete a word.
955 stuffcharReadbuff(Ctrl_W);
Bram Moolenaar942b4542018-06-17 16:23:34 +0200956 restart_edit = 'A';
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200957 nomove = TRUE;
958 count = 0;
959 goto doESCkey;
960 }
961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
963 auto_format(FALSE, TRUE);
964 break;
965
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100966 case Ctrl_U: // delete all inserted text in current line
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000967# ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100968 // CTRL-X CTRL-U completes with 'completefunc'.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100969 if (ctrl_x_mode_function())
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000970 goto docomplete;
971# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
973 auto_format(FALSE, TRUE);
974 inserted_space = FALSE;
975 break;
976
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100977 case K_LEFTMOUSE: // mouse keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 case K_LEFTMOUSE_NM:
979 case K_LEFTDRAG:
980 case K_LEFTRELEASE:
981 case K_LEFTRELEASE_NM:
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100982 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 case K_MIDDLEMOUSE:
984 case K_MIDDLEDRAG:
985 case K_MIDDLERELEASE:
986 case K_RIGHTMOUSE:
987 case K_RIGHTDRAG:
988 case K_RIGHTRELEASE:
989 case K_X1MOUSE:
990 case K_X1DRAG:
991 case K_X1RELEASE:
992 case K_X2MOUSE:
993 case K_X2DRAG:
994 case K_X2RELEASE:
995 ins_mouse(c);
996 break;
997
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100998 case K_MOUSEDOWN: // Default action for scroll wheel up: scroll up
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200999 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 break;
1001
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001002 case K_MOUSEUP: // Default action for scroll wheel down: scroll down
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001003 ins_mousescroll(MSCR_UP);
1004 break;
1005
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001006 case K_MOUSELEFT: // Scroll wheel left
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001007 ins_mousescroll(MSCR_LEFT);
1008 break;
1009
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001010 case K_MOUSERIGHT: // Scroll wheel right
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001011 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001013
Bram Moolenaarec2da362017-01-21 20:04:22 +01001014 case K_PS:
1015 bracketed_paste(PASTE_INSERT, FALSE, NULL);
1016 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001017 // invoked from normal mode, bail out
Bram Moolenaarec2da362017-01-21 20:04:22 +01001018 goto doESCkey;
1019 break;
1020 case K_PE:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001021 // Got K_PE without K_PS, ignore.
Bram Moolenaarec2da362017-01-21 20:04:22 +01001022 break;
1023
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001024#ifdef FEAT_GUI_TABLINE
1025 case K_TABLINE:
1026 case K_TABMENU:
1027 ins_tabline(c);
1028 break;
1029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001031 case K_IGNORE: // Something mapped to nothing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 break;
1033
Bram Moolenaar957cf672020-11-12 14:21:06 +01001034 case K_COMMAND: // <Cmd>command<CR>
1035 do_cmdline(NULL, getcmdkeycmd, NULL, 0);
Bram Moolenaare41decc2020-11-14 21:34:59 +01001036#ifdef FEAT_TERMINAL
1037 if (term_use_loop())
1038 // Started a terminal that gets the input, exit Insert mode.
1039 goto doESCkey;
1040#endif
Bram Moolenaar957cf672020-11-12 14:21:06 +01001041 break;
1042
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001043 case K_CURSORHOLD: // Didn't type something for a while.
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001044 ins_apply_autocmds(EVENT_CURSORHOLDI);
Bram Moolenaar754b5602006-02-09 23:53:20 +00001045 did_cursorhold = TRUE;
1046 break;
Bram Moolenaar754b5602006-02-09 23:53:20 +00001047
Bram Moolenaar4f974752019-02-17 17:44:42 +01001048#ifdef FEAT_GUI_MSWIN
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001049 // On MS-Windows ignore <M-F4>, we get it when closing the window
1050 // was cancelled.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001051 case K_F4:
1052 if (mod_mask != MOD_MASK_ALT)
1053 goto normalchar;
1054 break;
1055#endif
1056
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057#ifdef FEAT_GUI
1058 case K_VER_SCROLLBAR:
1059 ins_scroll();
1060 break;
1061
1062 case K_HOR_SCROLLBAR:
1063 ins_horscroll();
1064 break;
1065#endif
1066
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001067 case K_HOME: // <Home>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069 case K_S_HOME:
1070 case K_C_HOME:
1071 ins_home(c);
1072 break;
1073
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001074 case K_END: // <End>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 case K_S_END:
1077 case K_C_END:
1078 ins_end(c);
1079 break;
1080
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001081 case K_LEFT: // <Left>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001082 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1083 ins_s_left();
1084 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001085 ins_left();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 break;
1087
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001088 case K_S_LEFT: // <S-Left>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 case K_C_LEFT:
1090 ins_s_left();
1091 break;
1092
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001093 case K_RIGHT: // <Right>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001094 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1095 ins_s_right();
1096 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001097 ins_right();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 break;
1099
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001100 case K_S_RIGHT: // <S-Right>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 case K_C_RIGHT:
1102 ins_s_right();
1103 break;
1104
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001105 case K_UP: // <Up>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001106 if (pum_visible())
1107 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001108 if (mod_mask & MOD_MASK_SHIFT)
1109 ins_pageup();
1110 else
1111 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 break;
1113
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001114 case K_S_UP: // <S-Up>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 case K_PAGEUP:
1116 case K_KPAGEUP:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001117 if (pum_visible())
1118 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 ins_pageup();
1120 break;
1121
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001122 case K_DOWN: // <Down>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001123 if (pum_visible())
1124 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001125 if (mod_mask & MOD_MASK_SHIFT)
1126 ins_pagedown();
1127 else
1128 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 break;
1130
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001131 case K_S_DOWN: // <S-Down>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 case K_PAGEDOWN:
1133 case K_KPAGEDOWN:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001134 if (pum_visible())
1135 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 ins_pagedown();
1137 break;
1138
1139#ifdef FEAT_DND
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001140 case K_DROP: // drag-n-drop event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 ins_drop();
1142 break;
1143#endif
1144
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001145 case K_S_TAB: // When not mapped, use like a normal TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 c = TAB;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001147 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001149 case TAB: // TAB or Complete patterns along path
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001150#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001151 if (ctrl_x_mode_path_patterns())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 goto docomplete;
1153#endif
1154 inserted_space = FALSE;
1155 if (ins_tab())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001156 goto normalchar; // insert TAB as a normal char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 auto_format(FALSE, TRUE);
1158 break;
1159
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001160 case K_KENTER: // <Enter>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 c = CAR;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001162 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 case CAR:
1164 case NL:
Bram Moolenaar4033c552017-09-16 20:54:51 +02001165#if defined(FEAT_QUICKFIX)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001166 // In a quickfix window a <CR> jumps to the error under the
1167 // cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 if (bt_quickfix(curbuf) && c == CAR)
1169 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001170 if (curwin->w_llist_ref == NULL) // quickfix window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001171 do_cmdline_cmd((char_u *)".cc");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001172 else // location list window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001173 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 break;
1175 }
1176#endif
1177#ifdef FEAT_CMDWIN
1178 if (cmdwin_type != 0)
1179 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001180 // Execute the command in the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 cmdwin_result = CAR;
1182 goto doESCkey;
1183 }
1184#endif
Bram Moolenaarf2732452018-06-03 14:47:35 +02001185#ifdef FEAT_JOB_CHANNEL
1186 if (bt_prompt(curbuf))
1187 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02001188 invoke_prompt_callback();
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02001189 if (!bt_prompt(curbuf))
1190 // buffer changed to a non-prompt buffer, get out of
1191 // Insert mode
Bram Moolenaarf2732452018-06-03 14:47:35 +02001192 goto doESCkey;
1193 break;
1194 }
1195#endif
Bram Moolenaar24a2d722018-04-24 19:36:43 +02001196 if (ins_eol(c) == FAIL && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001197 goto doESCkey; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 auto_format(FALSE, FALSE);
1199 inserted_space = FALSE;
1200 break;
1201
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001202 case Ctrl_K: // digraph or keyword completion
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001203 if (ctrl_x_mode_dictionary())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001205 if (has_compl_option(TRUE))
1206 goto docomplete;
1207 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001209#ifdef FEAT_DIGRAPHS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 c = ins_digraph();
1211 if (c == NUL)
1212 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001213#endif
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001214 goto normalchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001216 case Ctrl_X: // Enter CTRL-X mode
Bram Moolenaar572cb562005-08-05 21:35:02 +00001217 ins_ctrl_x();
1218 break;
1219
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001220 case Ctrl_RSB: // Tag name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001221 if (!ctrl_x_mode_tags())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 goto normalchar;
1223 goto docomplete;
1224
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001225 case Ctrl_F: // File name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001226 if (!ctrl_x_mode_files())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 goto normalchar;
1228 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001229
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001230 case 's': // Spelling completion after ^X
Bram Moolenaar488c6512005-08-11 20:09:58 +00001231 case Ctrl_S:
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001232 if (!ctrl_x_mode_spell())
Bram Moolenaar488c6512005-08-11 20:09:58 +00001233 goto normalchar;
1234 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001236 case Ctrl_L: // Whole line completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001237 if (!ctrl_x_mode_whole_line())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001239 // CTRL-L with 'insertmode' set: Leave Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 if (p_im)
1241 {
1242 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1243 break;
1244 goto doESCkey;
1245 }
1246 goto normalchar;
1247 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001248 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001250 case Ctrl_P: // Do previous/next pattern completion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 case Ctrl_N:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001252 // if 'complete' is empty then plain ^P is no longer special,
1253 // but it is under other ^X modes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 if (*curbuf->b_p_cpt == NUL
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001255 && (ctrl_x_mode_normal() || ctrl_x_mode_whole_line())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001256 && !(compl_cont_status & CONT_LOCAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 goto normalchar;
1258
1259docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001260 compl_busy = TRUE;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001261#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001262 disable_fold_update++; // don't redraw folds here
Bram Moolenaara6c07602017-03-05 21:18:27 +01001263#endif
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01001264 if (ins_complete(c, TRUE) == FAIL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001265 compl_cont_status = 0;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001266#ifdef FEAT_FOLDING
Bram Moolenaar429fcfb2016-04-14 16:22:04 +02001267 disable_fold_update--;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001268#endif
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001269 compl_busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001272 case Ctrl_Y: // copy from previous line or scroll down
1273 case Ctrl_E: // copy from next line or scroll up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001274 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 break;
1276
1277 default:
1278#ifdef UNIX
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001279 if (c == intr_char) // special interrupt char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 goto do_intr;
1281#endif
1282
Bram Moolenaare659c952011-05-19 17:25:41 +02001283normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001285 * Insert a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001287#if defined(FEAT_EVAL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001288 if (!p_paste)
1289 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001290 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001291 char_u *str = do_insert_char_pre(c);
1292 char_u *p;
1293
1294 if (str != NULL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001295 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001296 if (*str != NUL && stop_arrow() != FAIL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001297 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001298 // Insert the new value of v:char literally.
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001299 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaare659c952011-05-19 17:25:41 +02001300 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001301 c = PTR2CHAR(p);
1302 if (c == CAR || c == K_KENTER || c == NL)
1303 ins_eol(c);
1304 else
1305 ins_char(c);
Bram Moolenaare659c952011-05-19 17:25:41 +02001306 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001307 AppendToRedobuffLit(str, -1);
Bram Moolenaare659c952011-05-19 17:25:41 +02001308 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001309 vim_free(str);
1310 c = NUL;
Bram Moolenaare659c952011-05-19 17:25:41 +02001311 }
1312
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001313 // If the new value is already inserted or an empty string
1314 // then don't insert any character.
Bram Moolenaare659c952011-05-19 17:25:41 +02001315 if (c == NUL)
1316 break;
1317 }
1318#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319#ifdef FEAT_SMARTINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001320 // Try to perform smart-indenting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 ins_try_si(c);
1322#endif
1323
1324 if (c == ' ')
1325 {
1326 inserted_space = TRUE;
1327#ifdef FEAT_CINDENT
1328 if (inindent(0))
1329 can_cindent = FALSE;
1330#endif
1331 if (Insstart_blank_vcol == MAXCOL
1332 && curwin->w_cursor.lnum == Insstart.lnum)
1333 Insstart_blank_vcol = get_nolist_virtcol();
1334 }
1335
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001336 // Insert a normal character and check for abbreviations on a
1337 // special character. Let CTRL-] expand abbreviations without
1338 // inserting it.
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02001339 if (vim_iswordc(c) || (!echeck_abbr(
Bram Moolenaar13505972019-01-24 15:04:48 +01001340 // Add ABBR_OFF for characters above 0x100, this is
1341 // what check_abbr() expects.
1342 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
1343 && c != Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 {
1345 insert_special(c, FALSE, FALSE);
1346#ifdef FEAT_RIGHTLEFT
1347 revins_legal++;
1348 revins_chars++;
1349#endif
1350 }
1351
1352 auto_format(FALSE, TRUE);
1353
1354#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001355 // When inserting a character the cursor line must never be in a
1356 // closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 foldOpenCursor();
1358#endif
1359 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001360 } // end of switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001362 // If typed something may trigger CursorHoldI again.
Bram Moolenaar245c4102016-04-20 17:37:41 +02001363 if (c != K_CURSORHOLD
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001364#ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001365 // but not in CTRL-X mode, a script can't restore the state
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001366 && ctrl_x_mode_normal()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001367#endif
Bram Moolenaar245c4102016-04-20 17:37:41 +02001368 )
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001369 did_cursorhold = FALSE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001370
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001371 // If the cursor was moved we didn't just insert a space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 if (arrow_used)
1373 inserted_space = FALSE;
1374
1375#ifdef FEAT_CINDENT
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001376 if (can_cindent && cindent_on() && ctrl_x_mode_normal())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 {
1378force_cindent:
1379 /*
1380 * Indent now if a key was typed that is in 'cinkeys'.
1381 */
1382 if (in_cinkeys(c, ' ', line_is_white))
1383 {
1384 if (stop_arrow() == OK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001385 // re-indent the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 do_c_expr_indent();
1387 }
1388 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001389#endif // FEAT_CINDENT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001391 } // for (;;)
1392 // NOTREACHED
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393}
1394
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001395 int
1396ins_need_undo_get(void)
1397{
1398 return ins_need_undo;
1399}
1400
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401/*
1402 * Redraw for Insert mode.
1403 * This is postponed until getting the next character to make '$' in the 'cpo'
1404 * option work correctly.
1405 * Only redraw when there are no characters available. This speeds up
1406 * inserting sequences of characters (e.g., for CTRL-R).
1407 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001408 void
Bram Moolenaar3397f742019-06-02 18:40:06 +02001409ins_redraw(int ready) // not busy with something
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001411#ifdef FEAT_CONCEAL
1412 linenr_T conceal_old_cursor_line = 0;
1413 linenr_T conceal_new_cursor_line = 0;
1414 int conceal_update_lines = FALSE;
1415#endif
1416
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001417 if (char_avail())
1418 return;
1419
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001420 // Trigger CursorMoved if the cursor moved. Not when the popup menu is
1421 // visible, the command might delete it.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001422 if (ready && (has_cursormovedI()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001423# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001424 || popup_visible
1425# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001426# if defined(FEAT_CONCEAL)
1427 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001428# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001429 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001430 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001431 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001432 {
1433# ifdef FEAT_SYN_HL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001434 // Need to update the screen first, to make sure syntax
1435 // highlighting is correct after making a change (e.g., inserting
1436 // a "(". The autocommand may also require a redraw, so it's done
1437 // again below, unfortunately.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001438 if (syntax_present(curwin) && must_redraw)
1439 update_screen(0);
1440# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001441 if (has_cursormovedI())
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001442 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001443 // Make sure curswant is correct, an autocommand may call
1444 // getcurpos().
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001445 update_curswant();
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001446 ins_apply_autocmds(EVENT_CURSORMOVEDI);
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001447 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001448#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001449 if (popup_visible)
1450 popup_check_cursor_pos();
1451#endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001452# ifdef FEAT_CONCEAL
1453 if (curwin->w_p_cole > 0)
1454 {
1455 conceal_old_cursor_line = last_cursormoved.lnum;
1456 conceal_new_cursor_line = curwin->w_cursor.lnum;
1457 conceal_update_lines = TRUE;
1458 }
1459# endif
1460 last_cursormoved = curwin->w_cursor;
1461 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001462
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001463 // Trigger TextChangedI if b_changedtick differs.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001464 if (ready && has_textchangedI()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001465 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001466 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001467 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001468 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001469 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar91d2e782018-08-07 19:05:01 +02001470
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001471 // save and restore curwin and curbuf, in case the autocmd changes them
1472 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001473 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001474 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001475 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001476 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1477 u_save(curwin->w_cursor.lnum,
1478 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 }
Bram Moolenaar5a093432018-02-10 18:15:19 +01001480
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001481 // Trigger TextChangedP if b_changedtick differs. When the popupmenu closes
1482 // TextChangedI will need to trigger for backwards compatibility, thus use
1483 // different b_last_changedtick* variables.
Bram Moolenaar5a093432018-02-10 18:15:19 +01001484 if (ready && has_textchangedP()
1485 && curbuf->b_last_changedtick_pum != CHANGEDTICK(curbuf)
1486 && pum_visible())
1487 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001488 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001489 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001490
1491 // save and restore curwin and curbuf, in case the autocmd changes them
1492 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001493 apply_autocmds(EVENT_TEXTCHANGEDP, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001494 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001495 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001496 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1497 u_save(curwin->w_cursor.lnum,
1498 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar5a093432018-02-10 18:15:19 +01001499 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001500
Bram Moolenaar8aeec402019-09-15 23:02:04 +02001501 // Trigger SafeState if nothing is pending.
1502 may_trigger_safestate(ready
1503 && !ins_compl_active()
1504 && !pum_visible());
1505
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001506#if defined(FEAT_CONCEAL)
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001507 if ((conceal_update_lines
1508 && (conceal_old_cursor_line != conceal_new_cursor_line
1509 || conceal_cursor_line(curwin)))
1510 || need_cursor_line_redraw)
1511 {
1512 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001513 redrawWinline(curwin, conceal_old_cursor_line);
1514 redrawWinline(curwin, conceal_new_cursor_line == 0
1515 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001516 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001517 need_cursor_line_redraw = FALSE;
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001518 }
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001519#endif
1520 if (must_redraw)
1521 update_screen(0);
1522 else if (clear_cmdline || redraw_cmdline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001523 showmode(); // clear cmdline and show mode
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001524 showruler(FALSE);
1525 setcursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001526 emsg_on_display = FALSE; // may remove error message now
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527}
1528
1529/*
1530 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1531 */
1532 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001533ins_ctrl_v(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534{
1535 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001536 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001538 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00001539 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540
1541 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001542 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001544 did_putchar = TRUE;
1545 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001546 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547
1548#ifdef FEAT_CMDL_INFO
1549 add_to_showcmd_c(Ctrl_V);
1550#endif
1551
Bram Moolenaar0684e362020-12-03 19:54:42 +01001552 // Do not change any modifyOtherKeys ESC sequence to a normal key for
1553 // CTRL-SHIFT-V.
1554 c = get_literal(mod_mask & MOD_MASK_SHIFT);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001555 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001556 // when the line fits in 'columns' the '^' is at the start of the next
1557 // line and will not removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001558 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559#ifdef FEAT_CMDL_INFO
1560 clear_showcmd();
1561#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001562
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 insert_special(c, FALSE, TRUE);
1564#ifdef FEAT_RIGHTLEFT
1565 revins_chars++;
1566 revins_legal++;
1567#endif
1568}
1569
1570/*
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001571 * After getting an ESC or CSI for a literal key: If the typeahead buffer
1572 * contains a modifyOtherKeys sequence then decode it and return the result.
1573 * Otherwise return "c".
1574 * Note that this doesn't wait for characters, they must be in the typeahead
1575 * buffer already.
1576 */
1577 int
1578decodeModifyOtherKeys(int c)
1579{
1580 char_u *p = typebuf.tb_buf + typebuf.tb_off;
1581 int idx;
1582 int form = 0;
1583 int argidx = 0;
1584 int arg[2] = {0, 0};
1585
1586 // Recognize:
1587 // form 0: {lead}{key};{modifier}u
1588 // form 1: {lead}27;{modifier};{key}~
1589 if ((c == CSI || (c == ESC && *p == '[')) && typebuf.tb_len >= 4)
1590 {
1591 idx = (*p == '[');
1592 if (p[idx] == '2' && p[idx + 1] == '7' && p[idx + 2] == ';')
1593 {
1594 form = 1;
1595 idx += 3;
1596 }
1597 while (idx < typebuf.tb_len && argidx < 2)
1598 {
1599 if (p[idx] == ';')
1600 ++argidx;
1601 else if (VIM_ISDIGIT(p[idx]))
1602 arg[argidx] = arg[argidx] * 10 + (p[idx] - '0');
1603 else
1604 break;
1605 ++idx;
1606 }
1607 if (idx < typebuf.tb_len
1608 && p[idx] == (form == 1 ? '~' : 'u')
1609 && argidx == 1)
1610 {
1611 // Match, consume the code.
1612 typebuf.tb_off += idx + 1;
1613 typebuf.tb_len -= idx + 1;
Bram Moolenaare49b4bb2020-03-11 13:01:40 +01001614#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
1615 if (typebuf.tb_len == 0)
1616 typebuf_was_filled = FALSE;
1617#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001618
1619 mod_mask = decode_modifiers(arg[!form]);
Bram Moolenaar975a8802020-06-06 22:36:24 +02001620 c = merge_modifyOtherKeys(arg[form], &mod_mask);
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001621 }
1622 }
1623
1624 return c;
1625}
1626
1627/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 * Put a character directly onto the screen. It's not stored in a buffer.
1629 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1630 */
1631static int pc_status;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001632#define PC_STATUS_UNSET 0 // pc_bytes was not set
1633#define PC_STATUS_RIGHT 1 // right halve of double-wide char
1634#define PC_STATUS_LEFT 2 // left halve of double-wide char
1635#define PC_STATUS_SET 3 // pc_bytes was filled
1636static char_u pc_bytes[MB_MAXBYTES + 1]; // saved bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637static int pc_attr;
1638static int pc_row;
1639static int pc_col;
1640
1641 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001642edit_putchar(int c, int highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643{
1644 int attr;
1645
1646 if (ScreenLines != NULL)
1647 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001648 update_topline(); // just in case w_topline isn't valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 validate_cursor();
1650 if (highlight)
Bram Moolenaar8820b482017-03-16 17:23:31 +01001651 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 else
1653 attr = 0;
1654 pc_row = W_WINROW(curwin) + curwin->w_wrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02001655 pc_col = curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 pc_status = PC_STATUS_UNSET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657#ifdef FEAT_RIGHTLEFT
1658 if (curwin->w_p_rl)
1659 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001660 pc_col += curwin->w_width - 1 - curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 if (has_mbyte)
1662 {
1663 int fix_col = mb_fix_col(pc_col, pc_row);
1664
1665 if (fix_col != pc_col)
1666 {
1667 screen_putchar(' ', pc_row, fix_col, attr);
1668 --curwin->w_wcol;
1669 pc_status = PC_STATUS_RIGHT;
1670 }
1671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 }
1673 else
1674#endif
1675 {
1676 pc_col += curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 if (mb_lefthalve(pc_row, pc_col))
1678 pc_status = PC_STATUS_LEFT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 }
1680
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001681 // save the character to be able to put it back
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 if (pc_status == PC_STATUS_UNSET)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 {
1684 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1685 pc_status = PC_STATUS_SET;
1686 }
1687 screen_putchar(c, pc_row, pc_col, attr);
1688 }
1689}
1690
Bram Moolenaarf2732452018-06-03 14:47:35 +02001691/*
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001692 * Set the insert start position for when using a prompt buffer.
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001693 */
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001694 void
1695set_insstart(linenr_T lnum, int col)
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001696{
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001697 Insstart.lnum = lnum;
1698 Insstart.col = col;
1699 Insstart_orig = Insstart;
1700 Insstart_textlen = Insstart.col;
1701 Insstart_blank_vcol = MAXCOL;
1702 arrow_used = FALSE;
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001703}
1704
1705/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 * Undo the previous edit_putchar().
1707 */
1708 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001709edit_unputchar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710{
1711 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1712 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 if (pc_status == PC_STATUS_RIGHT)
1714 ++curwin->w_wcol;
1715 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001716 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1719 }
1720}
1721
1722/*
1723 * Called when p_dollar is set: display a '$' at the end of the changed text
1724 * Only works when cursor is in the line that changes.
1725 */
1726 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001727display_dollar(colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728{
1729 colnr_T save_col;
1730
1731 if (!redrawing())
1732 return;
1733
1734 cursor_off();
1735 save_col = curwin->w_cursor.col;
1736 curwin->w_cursor.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 if (has_mbyte)
1738 {
1739 char_u *p;
1740
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001741 // If on the last byte of a multi-byte move to the first byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 p = ml_get_curline();
1743 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1744 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001745 curs_columns(FALSE); // recompute w_wrow and w_wcol
Bram Moolenaar02631462017-09-22 15:20:32 +02001746 if (curwin->w_wcol < curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 {
1748 edit_putchar('$', FALSE);
1749 dollar_vcol = curwin->w_virtcol;
1750 }
1751 curwin->w_cursor.col = save_col;
1752}
1753
1754/*
1755 * Call this function before moving the cursor from the normal insert position
1756 * in insert mode.
1757 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001758 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001759undisplay_dollar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001761 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001763 dollar_vcol = -1;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001764 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 }
1766}
1767
1768/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 * Truncate the space at the end of a line. This is to be used only in an
1770 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
1771 * modes.
1772 */
1773 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001774truncate_spaces(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775{
1776 int i;
1777
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001778 // find start of trailing white space
Bram Moolenaar1c465442017-03-12 20:10:05 +01001779 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 {
1781 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001782 replace_join(0); // remove a NUL from the replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 }
1784 line[i + 1] = NUL;
1785}
1786
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787/*
1788 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
1789 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001790 * Will attempt not to go before "col" even when there is a composing
1791 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 */
1793 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001794backspace_until_column(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795{
1796 while ((int)curwin->w_cursor.col > col)
1797 {
1798 curwin->w_cursor.col--;
1799 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001800 replace_do_bs(col);
1801 else if (!del_char_after_col(col))
1802 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 }
1804}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001806/*
1807 * Like del_char(), but make sure not to go before column "limit_col".
1808 * Only matters when there are composing characters.
1809 * Return TRUE when something was deleted.
1810 */
1811 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001812del_char_after_col(int limit_col UNUSED)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001813{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001814 if (enc_utf8 && limit_col >= 0)
1815 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001816 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001817
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001818 // Make sure the cursor is at the start of a character, but
1819 // skip forward again when going too far back because of a
1820 // composing character.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001821 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00001822 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001823 {
1824 int l = utf_ptr2len(ml_get_cursor());
1825
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001826 if (l == 0) // end of line
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001827 break;
1828 curwin->w_cursor.col += l;
1829 }
1830 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
1831 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001832 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001833 }
1834 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001835 (void)del_char(FALSE);
1836 return TRUE;
1837}
1838
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839/*
1840 * Next character is interpreted literally.
1841 * A one, two or three digit decimal number is interpreted as its byte value.
1842 * If one or two digits are entered, the next character is given to vungetc().
1843 * For Unicode a character > 255 may be returned.
Bram Moolenaar0684e362020-12-03 19:54:42 +01001844 * If "noReduceKeys" is TRUE do not change any modifyOtherKeys ESC sequence
1845 * into a normal key, return ESC.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 */
1847 int
Bram Moolenaar0684e362020-12-03 19:54:42 +01001848get_literal(int noReduceKeys)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849{
1850 int cc;
1851 int nc;
1852 int i;
1853 int hex = FALSE;
1854 int octal = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 int unicode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856
1857 if (got_int)
1858 return Ctrl_C;
1859
1860#ifdef FEAT_GUI
1861 /*
1862 * In GUI there is no point inserting the internal code for a special key.
1863 * It is more useful to insert the string "<KEY>" instead. This would
1864 * probably be useful in a text window too, but it would not be
1865 * vi-compatible (maybe there should be an option for it?) -- webb
1866 */
1867 if (gui.in_use)
1868 ++allow_keys;
1869#endif
1870#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001871 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001873 ++no_mapping; // don't map the next key hits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 cc = 0;
1875 i = 0;
1876 for (;;)
1877 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001878 nc = plain_vgetc();
Bram Moolenaar0684e362020-12-03 19:54:42 +01001879 if ((nc == ESC || nc == CSI) && !noReduceKeys)
1880 nc = decodeModifyOtherKeys(nc);
1881
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882#ifdef FEAT_CMDL_INFO
Bram Moolenaar13505972019-01-24 15:04:48 +01001883 if (!(State & CMDLINE) && MB_BYTE2LEN_CHECK(nc) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 add_to_showcmd(nc);
1885#endif
1886 if (nc == 'x' || nc == 'X')
1887 hex = TRUE;
1888 else if (nc == 'o' || nc == 'O')
1889 octal = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 else if (nc == 'u' || nc == 'U')
1891 unicode = nc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 else
1893 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001894 if (hex || unicode != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 {
1896 if (!vim_isxdigit(nc))
1897 break;
1898 cc = cc * 16 + hex2nr(nc);
1899 }
1900 else if (octal)
1901 {
1902 if (nc < '0' || nc > '7')
1903 break;
1904 cc = cc * 8 + nc - '0';
1905 }
1906 else
1907 {
1908 if (!VIM_ISDIGIT(nc))
1909 break;
1910 cc = cc * 10 + nc - '0';
1911 }
1912
1913 ++i;
1914 }
1915
Bram Moolenaar13505972019-01-24 15:04:48 +01001916 if (cc > 255 && unicode == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001917 cc = 255; // limit range to 0-255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 nc = 0;
1919
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001920 if (hex) // hex: up to two chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 {
1922 if (i >= 2)
1923 break;
1924 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001925 else if (unicode) // Unicode: up to four or eight chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 {
1927 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
1928 break;
1929 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001930 else if (i >= 3) // decimal or octal: up to three chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 break;
1932 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001933 if (i == 0) // no number entered
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001935 if (nc == K_ZERO) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 {
1937 cc = '\n';
1938 nc = 0;
1939 }
1940 else
1941 {
1942 cc = nc;
1943 nc = 0;
1944 }
1945 }
1946
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001947 if (cc == 0) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00001949 if (enc_dbcs && (cc & 0xff) == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001950 cc = '?'; // don't accept an illegal DBCS char, the NUL in the
1951 // second byte will cause trouble!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952
1953 --no_mapping;
1954#ifdef FEAT_GUI
1955 if (gui.in_use)
1956 --allow_keys;
1957#endif
1958 if (nc)
1959 vungetc(nc);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001960 got_int = FALSE; // CTRL-C typed after CTRL-V is not an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 return cc;
1962}
1963
1964/*
1965 * Insert character, taking care of special keys and mod_mask
1966 */
1967 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001968insert_special(
1969 int c,
1970 int allow_modmask,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001971 int ctrlv) // c was typed after CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972{
1973 char_u *p;
1974 int len;
1975
1976 /*
1977 * Special function key, translate into "<Key>". Up to the last '>' is
1978 * inserted with ins_str(), so as not to replace characters in replace
1979 * mode.
1980 * Only use mod_mask for special keys, to avoid things like <S-Space>,
1981 * unless 'allow_modmask' is TRUE.
1982 */
Bram Moolenaard0573012017-10-28 21:11:06 +02001983#ifdef MACOS_X
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001984 // Command-key never produces a normal key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 if (mod_mask & MOD_MASK_CMD)
1986 allow_modmask = TRUE;
1987#endif
1988 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
1989 {
1990 p = get_special_key_name(c, mod_mask);
1991 len = (int)STRLEN(p);
1992 c = p[len - 1];
1993 if (len > 2)
1994 {
1995 if (stop_arrow() == FAIL)
1996 return;
1997 p[len - 1] = NUL;
1998 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00001999 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 ctrlv = FALSE;
2001 }
2002 }
2003 if (stop_arrow() == OK)
2004 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
2005}
2006
2007/*
2008 * Special characters in this context are those that need processing other
2009 * than the simple insertion that can be performed here. This includes ESC
2010 * which terminates the insert, and CR/NL which need special processing to
2011 * open up a new line. This routine tries to optimize insertions performed by
2012 * the "redo", "undo" or "put" commands, so it needs to know when it should
2013 * stop and defer processing to the "normal" mechanism.
2014 * '0' and '^' are special, because they can be followed by CTRL-D.
2015 */
2016#ifdef EBCDIC
2017# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
2018#else
2019# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
2020#endif
2021
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02002022/*
2023 * "flags": INSCHAR_FORMAT - force formatting
2024 * INSCHAR_CTRLV - char typed just after CTRL-V
2025 * INSCHAR_NO_FEX - don't use 'formatexpr'
2026 *
2027 * NOTE: passes the flags value straight through to internal_format() which,
2028 * beside INSCHAR_FORMAT (above), is also looking for these:
2029 * INSCHAR_DO_COM - format comments
2030 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
2031 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002033insertchar(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002034 int c, // character to insert or NUL
2035 int flags, // INSCHAR_FORMAT, etc.
2036 int second_indent) // indent for second line if >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 int textwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 int fo_ins_blank;
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002041 int force_format = flags & INSCHAR_FORMAT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002043 textwidth = comp_textwidth(force_format);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045
2046 /*
2047 * Try to break the line in two or more pieces when:
2048 * - Always do this if we have been called to do formatting only.
2049 * - Always do this when 'formatoptions' has the 'a' flag and the line
2050 * ends in white space.
2051 * - Otherwise:
2052 * - Don't do this if inserting a blank
2053 * - Don't do this if an existing character is being replaced, unless
2054 * we're in VREPLACE mode.
2055 * - Do this if the cursor is not on the line where insert started
2056 * or - 'formatoptions' doesn't have 'l' or the line was not too long
2057 * before the insert.
2058 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
2059 * before 'textwidth'
2060 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002061 if (textwidth > 0
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002062 && (force_format
Bram Moolenaar1c465442017-03-12 20:10:05 +01002063 || (!VIM_ISWHITE(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 && !((State & REPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 && !(State & VREPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 && *ml_get_cursor() != NUL)
2067 && (curwin->w_cursor.lnum != Insstart.lnum
2068 || ((!has_format_option(FO_INS_LONG)
2069 || Insstart_textlen <= (colnr_T)textwidth)
2070 && (!fo_ins_blank
2071 || Insstart_blank_vcol <= (colnr_T)textwidth
2072 ))))))
2073 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002074 // Format with 'formatexpr' when it's set. Use internal formatting
2075 // when 'formatexpr' isn't set or it returns non-zero.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002076#if defined(FEAT_EVAL)
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002077 int do_internal = TRUE;
2078 colnr_T virtcol = get_nolist_virtcol()
2079 + char2cells(c != NUL ? c : gchar_cursor());
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002080
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002081 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0
2082 && (force_format || virtcol > (colnr_T)textwidth))
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002083 {
2084 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002085 // It may be required to save for undo again, e.g. when setline()
2086 // was called.
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002087 ins_need_undo = TRUE;
2088 }
2089 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00002091 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002093
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002094 if (c == NUL) // only formatting was wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 return;
2096
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002097 // Check whether this character should end a comment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (did_ai && (int)c == end_comment_pending)
2099 {
2100 char_u *line;
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002101 char_u lead_end[COM_MAX_LEN]; // end-comment string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 int middle_len, end_len;
2103 int i;
2104
2105 /*
2106 * Need to remove existing (middle) comment leader and insert end
2107 * comment leader. First, check what comment leader we can find.
2108 */
Bram Moolenaar81340392012-06-06 16:12:59 +02002109 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002110 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) // Just checking
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002112 // Skip middle-comment string
2113 while (*p && p[-1] != ':') // find end of middle flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 ++p;
2115 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002116 // Don't count trailing white space for middle_len
Bram Moolenaar1c465442017-03-12 20:10:05 +01002117 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 --middle_len;
2119
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002120 // Find the end-comment string
2121 while (*p && p[-1] != ':') // find end of end flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 ++p;
2123 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
2124
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002125 // Skip white space before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 i = curwin->w_cursor.col;
Bram Moolenaar1c465442017-03-12 20:10:05 +01002127 while (--i >= 0 && VIM_ISWHITE(line[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 ;
2129 i++;
2130
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002131 // Skip to before the middle leader
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 i -= middle_len;
2133
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002134 // Check some expected things before we go on
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
2136 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002137 // Backspace over all the stuff we want to replace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 backspace_until_column(i);
2139
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002140 // Insert the end-comment string, except for the last
2141 // character, which will get inserted as normal later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 ins_bytes_len(lead_end, end_len - 1);
2143 }
2144 }
2145 }
2146 end_comment_pending = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147
2148 did_ai = FALSE;
2149#ifdef FEAT_SMARTINDENT
2150 did_si = FALSE;
2151 can_si = FALSE;
2152 can_si_back = FALSE;
2153#endif
2154
2155 /*
2156 * If there's any pending input, grab up to INPUT_BUFLEN at once.
2157 * This speeds up normal text input considerably.
2158 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
2159 * need to re-indent at a ':', or any other character (but not what
2160 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01002161 * Don't do this when there an InsertCharPre autocommand is defined,
2162 * because we need to fire the event for every character.
Bram Moolenaar39de9522018-05-08 22:48:00 +02002163 * Do the check for InsertCharPre before the call to vpeekc() because the
2164 * InsertCharPre autocommand could change the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 */
2166#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002167 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168#endif
2169
2170 if ( !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 && (!has_mbyte || (*mb_char2len)(c) == 1)
Bram Moolenaar39de9522018-05-08 22:48:00 +02002172 && !has_insertcharpre()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 && vpeekc() != NUL
2174 && !(State & REPLACE_FLAG)
2175#ifdef FEAT_CINDENT
2176 && !cindent_on()
2177#endif
2178#ifdef FEAT_RIGHTLEFT
2179 && !p_ri
2180#endif
Bram Moolenaar39de9522018-05-08 22:48:00 +02002181 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 {
2183#define INPUT_BUFLEN 100
2184 char_u buf[INPUT_BUFLEN + 1];
2185 int i;
2186 colnr_T virtcol = 0;
2187
2188 buf[0] = c;
2189 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002190 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 virtcol = get_nolist_virtcol();
2192 /*
2193 * Stop the string when:
2194 * - no more chars available
2195 * - finding a special character (command key)
2196 * - buffer is full
2197 * - running into the 'textwidth' boundary
2198 * - need to check for abbreviation: A non-word char after a word-char
2199 */
2200 while ( (c = vpeekc()) != NUL
2201 && !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 && i < INPUT_BUFLEN
2204 && (textwidth == 0
2205 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
2206 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
2207 {
2208#ifdef FEAT_RIGHTLEFT
2209 c = vgetc();
2210 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002211 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 buf[i++] = c;
2213#else
2214 buf[i++] = vgetc();
2215#endif
2216 }
2217
2218#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002219 do_digraph(-1); // clear digraphs
2220 do_digraph(buf[i-1]); // may be the start of a digraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221#endif
2222 buf[i] = NUL;
2223 ins_str(buf);
2224 if (flags & INSCHAR_CTRLV)
2225 {
2226 redo_literal(*buf);
2227 i = 1;
2228 }
2229 else
2230 i = 0;
2231 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002232 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 }
2234 else
2235 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002236 int cc;
2237
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
2239 {
2240 char_u buf[MB_MAXBYTES + 1];
2241
2242 (*mb_char2bytes)(c, buf);
2243 buf[cc] = NUL;
2244 ins_char_bytes(buf, cc);
2245 AppendCharToRedobuff(c);
2246 }
2247 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 {
2249 ins_char(c);
2250 if (flags & INSCHAR_CTRLV)
2251 redo_literal(c);
2252 else
2253 AppendCharToRedobuff(c);
2254 }
2255 }
2256}
2257
2258/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 * Put a character in the redo buffer, for when just after a CTRL-V.
2260 */
2261 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002262redo_literal(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263{
2264 char_u buf[10];
2265
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002266 // Only digits need special treatment. Translate them into a string of
2267 // three digits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 if (VIM_ISDIGIT(c))
2269 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002270 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 AppendToRedobuff(buf);
2272 }
2273 else
2274 AppendCharToRedobuff(c);
2275}
2276
2277/*
2278 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002279 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01002281 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002282start_arrow(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002283 pos_T *end_insert_pos) // can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284{
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002285 start_arrow_common(end_insert_pos, TRUE);
2286}
2287
2288/*
2289 * Like start_arrow() but with end_change argument.
2290 * Will prepare for redo of CTRL-G U if "end_change" is FALSE.
2291 */
2292 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002293start_arrow_with_change(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002294 pos_T *end_insert_pos, // can be NULL
2295 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002296{
2297 start_arrow_common(end_insert_pos, end_change);
2298 if (!end_change)
2299 {
2300 AppendCharToRedobuff(Ctrl_G);
2301 AppendCharToRedobuff('U');
2302 }
2303}
2304
2305 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002306start_arrow_common(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002307 pos_T *end_insert_pos, // can be NULL
2308 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002309{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002310 if (!arrow_used && end_change) // something has been inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 {
2312 AppendToRedobuff(ESC_STR);
Bram Moolenaarf332a652013-11-04 04:20:33 +01002313 stop_insert(end_insert_pos, FALSE, FALSE);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002314 arrow_used = TRUE; // this means we stopped the current insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002316#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002317 check_spell_redraw();
2318#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319}
2320
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002321#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002322/*
2323 * If we skipped highlighting word at cursor, do it now.
2324 * It may be skipped again, thus reset spell_redraw_lnum first.
2325 */
2326 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002327check_spell_redraw(void)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002328{
2329 if (spell_redraw_lnum != 0)
2330 {
2331 linenr_T lnum = spell_redraw_lnum;
2332
2333 spell_redraw_lnum = 0;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01002334 redrawWinline(curwin, lnum);
Bram Moolenaar217ad922005-03-20 22:37:15 +00002335 }
2336}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002337
Bram Moolenaar217ad922005-03-20 22:37:15 +00002338#endif
2339
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340/*
2341 * stop_arrow() is called before a change is made in insert mode.
2342 * If an arrow key has been used, start a new insertion.
2343 * Returns FAIL if undo is impossible, shouldn't insert then.
2344 */
2345 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002346stop_arrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347{
2348 if (arrow_used)
2349 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002350 Insstart = curwin->w_cursor; // new insertion starts here
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002351 if (Insstart.col > Insstart_orig.col && !ins_need_undo)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002352 // Don't update the original insert position when moved to the
2353 // right, except when nothing was inserted yet.
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002354 update_Insstart_orig = FALSE;
2355 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
2356
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 if (u_save_cursor() == OK)
2358 {
2359 arrow_used = FALSE;
2360 ins_need_undo = FALSE;
2361 }
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002362
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 ai_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 if (State & VREPLACE_FLAG)
2365 {
2366 orig_line_count = curbuf->b_ml.ml_line_count;
2367 vr_lines_changed = 1;
2368 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 ResetRedobuff();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002370 AppendToRedobuff((char_u *)"1i"); // pretend we start an insertion
Bram Moolenaara9b1e742005-12-19 22:14:58 +00002371 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 }
2373 else if (ins_need_undo)
2374 {
2375 if (u_save_cursor() == OK)
2376 ins_need_undo = FALSE;
2377 }
2378
2379#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002380 // Always open fold at the cursor line when inserting something.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 foldOpenCursor();
2382#endif
2383
2384 return (arrow_used || ins_need_undo ? FAIL : OK);
2385}
2386
2387/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002388 * Do a few things to stop inserting.
2389 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
2390 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 */
2392 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002393stop_insert(
2394 pos_T *end_insert_pos,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002395 int esc, // called by ins_esc()
2396 int nomove) // <c-\><c-o>, don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002398 int cc;
2399 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400
2401 stop_redo_ins();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002402 replace_flush(); // abandon replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403
2404 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002405 * Save the inserted text for later redo with ^@ and CTRL-A.
2406 * Don't do it when "restart_edit" was set and nothing was inserted,
2407 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002409 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002410 if (did_restart_edit == 0 || (ptr != NULL
2411 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002412 {
2413 vim_free(last_insert);
2414 last_insert = ptr;
2415 last_insert_skip = new_insert_skip;
2416 }
2417 else
2418 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002420 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002422 // Auto-format now. It may seem strange to do this when stopping an
2423 // insertion (or moving the cursor), but it's required when appending
2424 // a line and having it end in a space. But only do it when something
2425 // was actually inserted, otherwise undo won't work.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002426 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002428 pos_T tpos = curwin->w_cursor;
2429
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002430 // When the cursor is at the end of the line after a space the
2431 // formatting will move it to the following word. Avoid that by
2432 // moving the cursor onto the space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 cc = 'x';
2434 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
2435 {
2436 dec_cursor();
2437 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002438 if (!VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002439 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 }
2441
2442 auto_format(TRUE, FALSE);
2443
Bram Moolenaar1c465442017-03-12 20:10:05 +01002444 if (VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002445 {
2446 if (gchar_cursor() != NUL)
2447 inc_cursor();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002448 // If the cursor is still at the same character, also keep
2449 // the "coladd".
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002450 if (gchar_cursor() == NUL
2451 && curwin->w_cursor.lnum == tpos.lnum
2452 && curwin->w_cursor.col == tpos.col)
2453 curwin->w_cursor.coladd = tpos.coladd;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002454 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 }
2456
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002457 // If a space was inserted for auto-formatting, remove it now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 check_auto_format(TRUE);
2459
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002460 // If we just did an auto-indent, remove the white space from the end
2461 // of the line, and put the cursor back.
2462 // Do this when ESC was used or moving the cursor up/down.
2463 // Check for the old position still being valid, just in case the text
2464 // got changed unexpectedly.
Bram Moolenaarf332a652013-11-04 04:20:33 +01002465 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00002466 && curwin->w_cursor.lnum != end_insert_pos->lnum))
2467 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002469 pos_T tpos = curwin->w_cursor;
2470
2471 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002472 check_cursor_col(); // make sure it is not past the line
Bram Moolenaar39f05632006-03-19 22:15:26 +00002473 for (;;)
2474 {
2475 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
2476 --curwin->w_cursor.col;
2477 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002478 if (!VIM_ISWHITE(cc))
Bram Moolenaar39f05632006-03-19 22:15:26 +00002479 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00002480 if (del_char(TRUE) == FAIL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002481 break; // should not happen
Bram Moolenaar39f05632006-03-19 22:15:26 +00002482 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002483 if (curwin->w_cursor.lnum != tpos.lnum)
2484 curwin->w_cursor = tpos;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002485 else
2486 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002487 // reset tpos, could have been invalidated in the loop above
Bram Moolenaaref6875b2014-11-12 18:59:25 +01002488 tpos = curwin->w_cursor;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002489 tpos.col++;
2490 if (cc != NUL && gchar_pos(&tpos) == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002491 ++curwin->w_cursor.col; // put cursor back on the NUL
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002492 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002494 // <C-S-Right> may have started Visual mode, adjust the position for
2495 // deleted characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
2497 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002498 int len = (int)STRLEN(ml_get_curline());
2499
2500 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002502 VIsual.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 VIsual.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 }
2505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 }
2507 }
2508 did_ai = FALSE;
2509#ifdef FEAT_SMARTINDENT
2510 did_si = FALSE;
2511 can_si = FALSE;
2512 can_si_back = FALSE;
2513#endif
2514
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002515 // Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
2516 // now in a different buffer.
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002517 if (end_insert_pos != NULL)
2518 {
2519 curbuf->b_op_start = Insstart;
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002520 curbuf->b_op_start_orig = Insstart_orig;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002521 curbuf->b_op_end = *end_insert_pos;
2522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523}
2524
2525/*
2526 * Set the last inserted text to a single character.
2527 * Used for the replace command.
2528 */
2529 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002530set_last_insert(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531{
2532 char_u *s;
2533
2534 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 if (last_insert != NULL)
2537 {
2538 s = last_insert;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002539 // Use the CTRL-V only when entering a special char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 if (c < ' ' || c == DEL)
2541 *s++ = Ctrl_V;
2542 s = add_char2buf(c, s);
2543 *s++ = ESC;
2544 *s++ = NUL;
2545 last_insert_skip = 0;
2546 }
2547}
2548
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002549#if defined(EXITFREE) || defined(PROTO)
2550 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002551free_last_insert(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002552{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002553 VIM_CLEAR(last_insert);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002554}
2555#endif
2556
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557/*
2558 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
2559 * and CSI. Handle multi-byte characters.
2560 * Returns a pointer to after the added bytes.
2561 */
2562 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002563add_char2buf(int c, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564{
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002565 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 int i;
2567 int len;
2568
2569 len = (*mb_char2bytes)(c, temp);
2570 for (i = 0; i < len; ++i)
2571 {
2572 c = temp[i];
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002573 // Need to escape K_SPECIAL and CSI like in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 if (c == K_SPECIAL)
2575 {
2576 *s++ = K_SPECIAL;
2577 *s++ = KS_SPECIAL;
2578 *s++ = KE_FILLER;
2579 }
2580#ifdef FEAT_GUI
2581 else if (c == CSI)
2582 {
2583 *s++ = CSI;
2584 *s++ = KS_EXTRA;
2585 *s++ = (int)KE_CSI;
2586 }
2587#endif
2588 else
2589 *s++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 return s;
2592}
2593
2594/*
2595 * move cursor to start of line
2596 * if flags & BL_WHITE move to first non-white
2597 * if flags & BL_SOL move to first non-white if startofline is set,
2598 * otherwise keep "curswant" column
2599 * if flags & BL_FIX don't leave the cursor on a NUL.
2600 */
2601 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002602beginline(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603{
2604 if ((flags & BL_SOL) && !p_sol)
2605 coladvance(curwin->w_curswant);
2606 else
2607 {
2608 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610
2611 if (flags & (BL_WHITE | BL_SOL))
2612 {
2613 char_u *ptr;
2614
Bram Moolenaar1c465442017-03-12 20:10:05 +01002615 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
2617 ++curwin->w_cursor.col;
2618 }
2619 curwin->w_set_curswant = TRUE;
2620 }
2621}
2622
2623/*
2624 * oneright oneleft cursor_down cursor_up
2625 *
2626 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002627 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 * Return OK when successful, FAIL when we hit a line of file boundary.
2629 */
2630
2631 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002632oneright(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633{
2634 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 if (virtual_active())
2638 {
2639 pos_T prevpos = curwin->w_cursor;
2640
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002641 // Adjust for multi-wide char (excluding TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002643 coladvance(getviscol() + ((*ptr != TAB
2644 && vim_isprintc((*mb_ptr2char)(ptr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 ? ptr2cells(ptr) : 1));
2646 curwin->w_set_curswant = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002647 // Return OK if the cursor moved, FAIL otherwise (at window edge).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 return (prevpos.col != curwin->w_cursor.col
2649 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
2650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651
2652 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002653 if (*ptr == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002654 return FAIL; // already at the very end
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002655
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002656 if (has_mbyte)
2657 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 else
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002659 l = 1;
2660
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002661 // move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
2662 // contains "onemore".
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002663 if (ptr[l] == NUL && (ve_flags & VE_ONEMORE) == 0)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002664 return FAIL;
2665 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666
2667 curwin->w_set_curswant = TRUE;
2668 return OK;
2669}
2670
2671 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002672oneleft(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 if (virtual_active())
2675 {
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002676#ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 int width;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002678#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 int v = getviscol();
2680
2681 if (v == 0)
2682 return FAIL;
2683
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002684#ifdef FEAT_LINEBREAK
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002685 // We might get stuck on 'showbreak', skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 width = 1;
2687 for (;;)
2688 {
2689 coladvance(v - width);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002690 // getviscol() is slow, skip it when 'showbreak' is empty,
2691 // 'breakindent' is not set and there are no multi-byte
2692 // characters
Bram Moolenaaree857022019-11-09 23:26:40 +01002693 if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri
Bram Moolenaar13505972019-01-24 15:04:48 +01002694 && !has_mbyte) || getviscol() < v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 break;
2696 ++width;
2697 }
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002698#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 coladvance(v - 1);
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701
2702 if (curwin->w_cursor.coladd == 1)
2703 {
2704 char_u *ptr;
2705
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002706 // Adjust for multi-wide char (not a TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002708 if (*ptr != TAB && vim_isprintc((*mb_ptr2char)(ptr))
2709 && ptr2cells(ptr) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 curwin->w_cursor.coladd = 0;
2711 }
2712
2713 curwin->w_set_curswant = TRUE;
2714 return OK;
2715 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716
2717 if (curwin->w_cursor.col == 0)
2718 return FAIL;
2719
2720 curwin->w_set_curswant = TRUE;
2721 --curwin->w_cursor.col;
2722
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002723 // if the character on the left of the current cursor is a multi-byte
2724 // character, move to its first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 if (has_mbyte)
2726 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 return OK;
2728}
2729
2730 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002731cursor_up(
2732 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002733 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734{
2735 linenr_T lnum;
2736
2737 if (n > 0)
2738 {
2739 lnum = curwin->w_cursor.lnum;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002740 // This fails if the cursor is already in the first line or the count
2741 // is larger than the line number and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002742 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 return FAIL;
2744 if (n >= lnum)
2745 lnum = 1;
2746 else
2747#ifdef FEAT_FOLDING
2748 if (hasAnyFolding(curwin))
2749 {
2750 /*
2751 * Count each sequence of folded lines as one logical line.
2752 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002753 // go to the start of the current fold
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 (void)hasFolding(lnum, &lnum, NULL);
2755
2756 while (n--)
2757 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002758 // move up one line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 --lnum;
2760 if (lnum <= 1)
2761 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002762 // If we entered a fold, move to the beginning, unless in
2763 // Insert mode or when 'foldopen' contains "all": it will open
2764 // in a moment.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
2766 (void)hasFolding(lnum, &lnum, NULL);
2767 }
2768 if (lnum < 1)
2769 lnum = 1;
2770 }
2771 else
2772#endif
2773 lnum -= n;
2774 curwin->w_cursor.lnum = lnum;
2775 }
2776
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002777 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 coladvance(curwin->w_curswant);
2779
2780 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002781 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782
2783 return OK;
2784}
2785
2786/*
2787 * Cursor down a number of logical lines.
2788 */
2789 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002790cursor_down(
2791 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002792 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793{
2794 linenr_T lnum;
2795
2796 if (n > 0)
2797 {
2798 lnum = curwin->w_cursor.lnum;
2799#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002800 // Move to last line of fold, will fail if it's the end-of-file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 (void)hasFolding(lnum, NULL, &lnum);
2802#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002803 // This fails if the cursor is already in the last line or would move
2804 // beyond the last line and '-' is in 'cpoptions'
Bram Moolenaar7c626922005-02-07 22:01:03 +00002805 if (lnum >= curbuf->b_ml.ml_line_count
2806 || (lnum + n > curbuf->b_ml.ml_line_count
2807 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 return FAIL;
2809 if (lnum + n >= curbuf->b_ml.ml_line_count)
2810 lnum = curbuf->b_ml.ml_line_count;
2811 else
2812#ifdef FEAT_FOLDING
2813 if (hasAnyFolding(curwin))
2814 {
2815 linenr_T last;
2816
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002817 // count each sequence of folded lines as one logical line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 while (n--)
2819 {
2820 if (hasFolding(lnum, NULL, &last))
2821 lnum = last + 1;
2822 else
2823 ++lnum;
2824 if (lnum >= curbuf->b_ml.ml_line_count)
2825 break;
2826 }
2827 if (lnum > curbuf->b_ml.ml_line_count)
2828 lnum = curbuf->b_ml.ml_line_count;
2829 }
2830 else
2831#endif
2832 lnum += n;
2833 curwin->w_cursor.lnum = lnum;
2834 }
2835
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002836 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 coladvance(curwin->w_curswant);
2838
2839 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002840 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841
2842 return OK;
2843}
2844
2845/*
2846 * Stuff the last inserted text in the read buffer.
2847 * Last_insert actually is a copy of the redo buffer, so we
2848 * first have to remove the command.
2849 */
2850 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002851stuff_inserted(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002852 int c, // Command character to be inserted
2853 long count, // Repeat this many times
2854 int no_esc) // Don't add an ESC at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855{
2856 char_u *esc_ptr;
2857 char_u *ptr;
2858 char_u *last_ptr;
2859 char_u last = NUL;
2860
2861 ptr = get_last_insert();
2862 if (ptr == NULL)
2863 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002864 emsg(_(e_noinstext));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 return FAIL;
2866 }
2867
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002868 // may want to stuff the command character, to start Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 if (c != NUL)
2870 stuffcharReadbuff(c);
2871 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002872 *esc_ptr = NUL; // remove the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002874 // when the last char is either "0" or "^" it will be quoted if no ESC
2875 // comes after it OR if it will inserted more than once and "ptr"
2876 // starts with ^D. -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
2878 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
2879 && (no_esc || (*ptr == Ctrl_D && count > 1)))
2880 {
2881 last = *last_ptr;
2882 *last_ptr = NUL;
2883 }
2884
2885 do
2886 {
2887 stuffReadbuff(ptr);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002888 // a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 if (last)
2890 stuffReadbuff((char_u *)(last == '0'
2891 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
2892 : IF_EB("\026^", CTRL_V_STR "^")));
2893 }
2894 while (--count > 0);
2895
2896 if (last)
2897 *last_ptr = last;
2898
2899 if (esc_ptr != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002900 *esc_ptr = ESC; // put the ESC back
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002902 // may want to stuff a trailing ESC, to get out of Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 if (!no_esc)
2904 stuffcharReadbuff(ESC);
2905
2906 return OK;
2907}
2908
2909 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002910get_last_insert(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911{
2912 if (last_insert == NULL)
2913 return NULL;
2914 return last_insert + last_insert_skip;
2915}
2916
2917/*
2918 * Get last inserted string, and remove trailing <Esc>.
2919 * Returns pointer to allocated memory (must be freed) or NULL.
2920 */
2921 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002922get_last_insert_save(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923{
2924 char_u *s;
2925 int len;
2926
2927 if (last_insert == NULL)
2928 return NULL;
2929 s = vim_strsave(last_insert + last_insert_skip);
2930 if (s != NULL)
2931 {
2932 len = (int)STRLEN(s);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002933 if (len > 0 && s[len - 1] == ESC) // remove trailing ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 s[len - 1] = NUL;
2935 }
2936 return s;
2937}
2938
2939/*
2940 * Check the word in front of the cursor for an abbreviation.
2941 * Called when the non-id character "c" has been entered.
2942 * When an abbreviation is recognized it is removed from the text and
2943 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
2944 */
2945 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002946echeck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002948 // Don't check for abbreviation in paste mode, when disabled and just
2949 // after moving around with cursor keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 if (p_paste || no_abbr || arrow_used)
2951 return FALSE;
2952
2953 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
2954 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
2955}
2956
2957/*
2958 * replace-stack functions
2959 *
2960 * When replacing characters, the replaced characters are remembered for each
2961 * new character. This is used to re-insert the old text when backspacing.
2962 *
2963 * There is a NUL headed list of characters for each character that is
2964 * currently in the file after the insertion point. When BS is used, one NUL
2965 * headed list is put back for the deleted character.
2966 *
2967 * For a newline, there are two NUL headed lists. One contains the characters
2968 * that the NL replaced. The extra one stores the characters after the cursor
2969 * that were deleted (always white space).
2970 *
2971 * Replace_offset is normally 0, in which case replace_push will add a new
2972 * character at the end of the stack. If replace_offset is not 0, that many
2973 * characters will be left on the stack above the newly inserted character.
2974 */
2975
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00002976static char_u *replace_stack = NULL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002977static long replace_stack_nr = 0; // next entry in replace stack
2978static long replace_stack_len = 0; // max. number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979
2980 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002981replace_push(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002982 int c) // character that is replaced (NUL is none)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 char_u *p;
2985
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002986 if (replace_stack_nr < replace_offset) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 return;
2988 if (replace_stack_len <= replace_stack_nr)
2989 {
2990 replace_stack_len += 50;
Bram Moolenaar3397f742019-06-02 18:40:06 +02002991 p = ALLOC_MULT(char_u, replace_stack_len);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002992 if (p == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 {
2994 replace_stack_len -= 50;
2995 return;
2996 }
2997 if (replace_stack != NULL)
2998 {
2999 mch_memmove(p, replace_stack,
3000 (size_t)(replace_stack_nr * sizeof(char_u)));
3001 vim_free(replace_stack);
3002 }
3003 replace_stack = p;
3004 }
3005 p = replace_stack + replace_stack_nr - replace_offset;
3006 if (replace_offset)
3007 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
3008 *p = c;
3009 ++replace_stack_nr;
3010}
3011
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003012/*
3013 * Push a character onto the replace stack. Handles a multi-byte character in
3014 * reverse byte order, so that the first byte is popped off first.
3015 * Return the number of bytes done (includes composing characters).
3016 */
3017 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003018replace_push_mb(char_u *p)
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003019{
3020 int l = (*mb_ptr2len)(p);
3021 int j;
3022
3023 for (j = l - 1; j >= 0; --j)
3024 replace_push(p[j]);
3025 return l;
3026}
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003027
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028/*
3029 * Pop one item from the replace stack.
3030 * return -1 if stack empty
3031 * return replaced character or NUL otherwise
3032 */
3033 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003034replace_pop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035{
3036 if (replace_stack_nr == 0)
3037 return -1;
3038 return (int)replace_stack[--replace_stack_nr];
3039}
3040
3041/*
3042 * Join the top two items on the replace stack. This removes to "off"'th NUL
3043 * encountered.
3044 */
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003045 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003046replace_join(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003047 int off) // offset for which NUL to remove
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048{
3049 int i;
3050
3051 for (i = replace_stack_nr; --i >= 0; )
3052 if (replace_stack[i] == NUL && off-- <= 0)
3053 {
3054 --replace_stack_nr;
3055 mch_memmove(replace_stack + i, replace_stack + i + 1,
3056 (size_t)(replace_stack_nr - i));
3057 return;
3058 }
3059}
3060
3061/*
3062 * Pop bytes from the replace stack until a NUL is found, and insert them
3063 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
3064 */
3065 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003066replace_pop_ins(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067{
3068 int cc;
3069 int oldState = State;
3070
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003071 State = NORMAL; // don't want REPLACE here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 while ((cc = replace_pop()) > 0)
3073 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 mb_replace_pop_ins(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 dec_cursor();
3076 }
3077 State = oldState;
3078}
3079
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080/*
3081 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
3082 * indicates a multi-byte char, pop the other bytes too.
3083 */
3084 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003085mb_replace_pop_ins(int cc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086{
3087 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02003088 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 int i;
3090 int c;
3091
3092 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
3093 {
3094 buf[0] = cc;
3095 for (i = 1; i < n; ++i)
3096 buf[i] = replace_pop();
3097 ins_bytes_len(buf, n);
3098 }
3099 else
3100 ins_char(cc);
3101
3102 if (enc_utf8)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003103 // Handle composing chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 for (;;)
3105 {
3106 c = replace_pop();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003107 if (c == -1) // stack empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 break;
3109 if ((n = MB_BYTE2LEN(c)) == 1)
3110 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003111 // Not a multi-byte char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 replace_push(c);
3113 break;
3114 }
3115 else
3116 {
3117 buf[0] = c;
3118 for (i = 1; i < n; ++i)
3119 buf[i] = replace_pop();
3120 if (utf_iscomposing(utf_ptr2char(buf)))
3121 ins_bytes_len(buf, n);
3122 else
3123 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003124 // Not a composing char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 for (i = n - 1; i >= 0; --i)
3126 replace_push(buf[i]);
3127 break;
3128 }
3129 }
3130 }
3131}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132
3133/*
3134 * make the replace stack empty
3135 * (called when exiting replace mode)
3136 */
3137 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003138replace_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139{
Bram Moolenaard23a8232018-02-10 18:45:26 +01003140 VIM_CLEAR(replace_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 replace_stack_len = 0;
3142 replace_stack_nr = 0;
3143}
3144
3145/*
3146 * Handle doing a BS for one character.
3147 * cc < 0: replace stack empty, just move cursor
3148 * cc == 0: character was inserted, delete it
3149 * cc > 0: character was replaced, put cc (first byte of original char) back
3150 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003151 * When "limit_col" is >= 0, don't delete before this column. Matters when
3152 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 */
3154 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003155replace_do_bs(int limit_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156{
3157 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 int orig_len = 0;
3159 int ins_len;
3160 int orig_vcols = 0;
3161 colnr_T start_vcol;
3162 char_u *p;
3163 int i;
3164 int vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165
3166 cc = replace_pop();
3167 if (cc > 0)
3168 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003169#ifdef FEAT_PROP_POPUP
Bram Moolenaar6d11f3b2019-01-06 17:44:38 +01003170 size_t len_before = 0; // init to shut up GCC
Bram Moolenaar196d1572019-01-02 23:47:18 +01003171
3172 if (curbuf->b_has_textprop)
3173 {
3174 // Do not adjust text properties for individual delete and insert
3175 // operations, do it afterwards on the resulting text.
3176 len_before = STRLEN(ml_get_curline());
3177 ++text_prop_frozen;
3178 }
3179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 if (State & VREPLACE_FLAG)
3181 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003182 // Get the number of screen cells used by the character we are
3183 // going to delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
3185 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
3186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 if (has_mbyte)
3188 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003189 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003191 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 replace_push(cc);
3193 }
3194 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 {
3196 pchar_cursor(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003198 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 }
3200 replace_pop_ins();
3201
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 if (State & VREPLACE_FLAG)
3203 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003204 // Get the number of screen cells used by the inserted characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003206 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207 vcol = start_vcol;
3208 for (i = 0; i < ins_len; ++i)
3209 {
3210 vcol += chartabsize(p + i, vcol);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003211 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 }
3213 vcol -= start_vcol;
3214
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003215 // Delete spaces that were inserted after the cursor to keep the
3216 // text aligned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 curwin->w_cursor.col += ins_len;
3218 while (vcol > orig_vcols && gchar_cursor() == ' ')
3219 {
3220 del_char(FALSE);
3221 ++orig_vcols;
3222 }
3223 curwin->w_cursor.col -= ins_len;
3224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225
Bram Moolenaar196d1572019-01-02 23:47:18 +01003226 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003228
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003229#ifdef FEAT_PROP_POPUP
Bram Moolenaar196d1572019-01-02 23:47:18 +01003230 if (curbuf->b_has_textprop)
3231 {
3232 size_t len_now = STRLEN(ml_get_curline());
3233
3234 --text_prop_frozen;
3235 adjust_prop_columns(curwin->w_cursor.lnum, curwin->w_cursor.col,
Bram Moolenaarf3333b02019-05-19 22:53:40 +02003236 (int)(len_now - len_before), 0);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003237 }
3238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 }
3240 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003241 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242}
3243
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
3245/*
3246 * Map Hebrew keyboard when in hkmap mode.
3247 */
3248 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003249hkmap(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003251 if (p_hkmapp) // phonetic mapping, by Ilya Dogolazky
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 {
3253 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
3254 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
3255 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
3256 static char_u map[26] =
3257 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
3258 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
3259 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
3260 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
3261 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
3262 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
3263 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
3264 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
3265 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
3266
3267 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
3268 return (int)(map[CharOrd(c)] - 1 + p_aleph);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003269 // '-1'='sofit'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 else if (c == 'x')
3271 return 'X';
3272 else if (c == 'q')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003273 return '\''; // {geresh}={'}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 else if (c == 246)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003275 return ' '; // \"o --> ' ' for a german keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 else if (c == 228)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003277 return ' '; // \"a --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 else if (c == 252)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003279 return ' '; // \"u --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280#ifdef EBCDIC
3281 else if (islower(c))
3282#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003283 // NOTE: islower() does not do the right thing for us on Linux so we
3284 // do this the same was as 5.7 and previous, so it works correctly on
3285 // all systems. Specifically, the e.g. Delete and Arrow keys are
3286 // munged and won't work if e.g. searching for Hebrew text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 else if (c >= 'a' && c <= 'z')
3288#endif
3289 return (int)(map[CharOrdLow(c)] + p_aleph);
3290 else
3291 return c;
3292 }
3293 else
3294 {
3295 switch (c)
3296 {
3297 case '`': return ';';
3298 case '/': return '.';
3299 case '\'': return ',';
3300 case 'q': return '/';
3301 case 'w': return '\'';
3302
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003303 // Hebrew letters - set offset from 'a'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 case ',': c = '{'; break;
3305 case '.': c = 'v'; break;
3306 case ';': c = 't'; break;
3307 default: {
3308 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
3309
3310#ifdef EBCDIC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003311 // see note about islower() above
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 if (!islower(c))
3313#else
3314 if (c < 'a' || c > 'z')
3315#endif
3316 return c;
3317 c = str[CharOrdLow(c)];
3318 break;
3319 }
3320 }
3321
3322 return (int)(CharOrdLow(c) + p_aleph);
3323 }
3324}
3325#endif
3326
3327 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003328ins_reg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329{
3330 int need_redraw = FALSE;
3331 int regname;
3332 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003333 int vis_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334
3335 /*
3336 * If we are going to wait for a character, show a '"'.
3337 */
3338 pc_status = PC_STATUS_UNSET;
3339 if (redrawing() && !char_avail())
3340 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003341 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00003342 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343
3344 edit_putchar('"', TRUE);
3345#ifdef FEAT_CMDL_INFO
3346 add_to_showcmd_c(Ctrl_R);
3347#endif
3348 }
3349
3350#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003351 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352#endif
3353
3354 /*
3355 * Don't map the register name. This also prevents the mode message to be
3356 * deleted when ESC is hit.
3357 */
3358 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003359 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003360 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
3363 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003364 // Get a third key for literal register insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 literally = regname;
3366#ifdef FEAT_CMDL_INFO
3367 add_to_showcmd_c(literally);
3368#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003369 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 }
3372 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003373 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374
3375#ifdef FEAT_EVAL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003376 // Don't call u_sync() while typing the expression or giving an error
3377 // message for it. Only call it explicitly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 ++no_u_sync;
3379 if (regname == '=')
3380 {
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003381 pos_T curpos = curwin->w_cursor;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003382# ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003384# endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003385 // Sync undo when evaluating the expression calls setline() or
3386 // append(), so that it can be undone separately.
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003387 u_sync_once = 2;
Bram Moolenaar5737ca22013-06-27 22:21:24 +02003388
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 regname = get_expr_register();
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003390
3391 // Cursor may be moved back a column.
3392 curwin->w_cursor = curpos;
3393 check_cursor();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003394# ifdef HAVE_INPUT_METHOD
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003395 // Restore the Input Method.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 if (im_on)
3397 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003398# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00003400 if (regname == NUL || !valid_yank_reg(regname, FALSE))
3401 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003402 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003403 need_redraw = TRUE; // remove the '"'
Bram Moolenaar677ee682005-01-27 14:41:15 +00003404 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 else
3406 {
3407#endif
3408 if (literally == Ctrl_O || literally == Ctrl_P)
3409 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003410 // Append the command to the redo buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 AppendCharToRedobuff(Ctrl_R);
3412 AppendCharToRedobuff(literally);
3413 AppendCharToRedobuff(regname);
3414
Bram Moolenaarc3516f72020-09-08 22:45:35 +02003415 do_put(regname, NULL, BACKWARD, 1L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
3417 }
3418 else if (insert_reg(regname, literally) == FAIL)
3419 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003420 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003421 need_redraw = TRUE; // remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003423 else if (stop_insert_mode)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003424 // When the '=' register was used and a function was invoked that
3425 // did ":stopinsert" then stuff_empty() returns FALSE but we won't
3426 // insert anything, need to remove the '"'
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003427 need_redraw = TRUE;
3428
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429#ifdef FEAT_EVAL
3430 }
3431 --no_u_sync;
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003432 if (u_sync_once == 1)
3433 ins_need_undo = TRUE;
3434 u_sync_once = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435#endif
3436#ifdef FEAT_CMDL_INFO
3437 clear_showcmd();
3438#endif
3439
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003440 // If the inserted register is empty, we need to remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 if (need_redraw || stuff_empty())
3442 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003443
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003444 // Disallow starting Visual mode here, would get a weird mode.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003445 if (!vis_active && VIsual_active)
3446 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447}
3448
3449/*
3450 * CTRL-G commands in Insert mode.
3451 */
3452 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003453ins_ctrl_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454{
3455 int c;
3456
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003457 // Right after CTRL-X the cursor will be after the ruler.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459
3460 /*
3461 * Don't map the second key. This also prevents the mode message to be
3462 * deleted when ESC is hit.
3463 */
3464 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003465 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003466 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003468 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 switch (c)
3470 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003471 // CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 case K_UP:
3473 case Ctrl_K:
3474 case 'k': ins_up(TRUE);
3475 break;
3476
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003477 // CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 case K_DOWN:
3479 case Ctrl_J:
3480 case 'j': ins_down(TRUE);
3481 break;
3482
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003483 // CTRL-G u: start new undoable edit
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003484 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003486
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003487 // Need to reset Insstart, esp. because a BS that joins
3488 // a line to the previous one must save for undo.
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01003489 update_Insstart_orig = FALSE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003490 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 break;
3492
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003493 // CTRL-G U: do not break undo with the next char
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003494 case 'U':
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003495 // Allow one left/right cursor movement with the next char,
3496 // without breaking undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003497 dont_sync_undo = MAYBE;
3498 break;
3499
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003500 // Unknown CTRL-G command, reserved for future expansion.
Bram Moolenaar165bc692015-07-21 17:53:25 +02003501 default: vim_beep(BO_CTRLG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 }
3503}
3504
3505/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003506 * CTRL-^ in Insert mode.
3507 */
3508 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003509ins_ctrl_hat(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003510{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003511 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003512 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003513 // ":lmap" mappings exists, Toggle use of ":lmap" mappings.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003514 if (State & LANGMAP)
3515 {
3516 curbuf->b_p_iminsert = B_IMODE_NONE;
3517 State &= ~LANGMAP;
3518 }
3519 else
3520 {
3521 curbuf->b_p_iminsert = B_IMODE_LMAP;
3522 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003523#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003524 im_set_active(FALSE);
3525#endif
3526 }
3527 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003528#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003529 else
3530 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003531 // There are no ":lmap" mappings, toggle IM
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003532 if (im_get_status())
3533 {
3534 curbuf->b_p_iminsert = B_IMODE_NONE;
3535 im_set_active(FALSE);
3536 }
3537 else
3538 {
3539 curbuf->b_p_iminsert = B_IMODE_IM;
3540 State &= ~LANGMAP;
3541 im_set_active(TRUE);
3542 }
3543 }
3544#endif
3545 set_iminsert_global();
3546 showmode();
3547#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003548 // may show different cursor shape or color
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003549 if (gui.in_use)
3550 gui_update_cursor(TRUE, FALSE);
3551#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003552#if defined(FEAT_KEYMAP)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003553 // Show/unshow value of 'keymap' in status lines.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003554 status_redraw_curbuf();
3555#endif
3556}
3557
3558/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 * Handle ESC in insert mode.
3560 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
3561 * insert.
3562 */
3563 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003564ins_esc(
3565 long *count,
3566 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003567 int nomove) // don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568{
3569 int temp;
3570 static int disabled_redraw = FALSE;
3571
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003572#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003573 check_spell_redraw();
3574#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575
3576 temp = curwin->w_cursor.col;
3577 if (disabled_redraw)
3578 {
3579 --RedrawingDisabled;
3580 disabled_redraw = FALSE;
3581 }
3582 if (!arrow_used)
3583 {
3584 /*
3585 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00003586 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
3587 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 */
3589 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00003590 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591
3592 /*
3593 * Repeating insert may take a long time. Check for
3594 * interrupt now and then.
3595 */
3596 if (*count > 0)
3597 {
3598 line_breakcheck();
3599 if (got_int)
3600 *count = 0;
3601 }
3602
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003603 if (--*count > 0) // repeat what was typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003605 // Vi repeats the insert without replacing characters.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003606 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
3607 State &= ~REPLACE_FLAG;
3608
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 (void)start_redo_ins();
3610 if (cmdchar == 'r' || cmdchar == 'v')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003611 stuffRedoReadbuff(ESC_STR); // no ESC in redo buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 ++RedrawingDisabled;
3613 disabled_redraw = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003614 return FALSE; // repeat the insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 }
Bram Moolenaarf332a652013-11-04 04:20:33 +01003616 stop_insert(&curwin->w_cursor, TRUE, nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 undisplay_dollar();
3618 }
3619
Bram Moolenaarb53e13a2020-10-21 12:19:53 +02003620 if (cmdchar != 'r' && cmdchar != 'v')
3621 ins_apply_autocmds(EVENT_INSERTLEAVEPRE);
3622
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003623 // When an autoindent was removed, curswant stays after the
3624 // indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
3626 curwin->w_set_curswant = TRUE;
3627
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003628 // Remember the last Insert position in the '^ mark.
Bram Moolenaare1004402020-10-24 20:49:43 +02003629 if ((cmdmod.cmod_flags & CMOD_KEEPJUMPS) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 curbuf->b_last_insert = curwin->w_cursor;
3631
3632 /*
3633 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00003634 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00003636 if (!nomove
3637 && (curwin->w_cursor.col != 0
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003638 || curwin->w_cursor.coladd > 0)
Bram Moolenaar488c6512005-08-11 20:09:58 +00003639 && (restart_edit == NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003640 || (gchar_cursor() == NUL && !VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641#ifdef FEAT_RIGHTLEFT
3642 && !revins_on
3643#endif
3644 )
3645 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 if (curwin->w_cursor.coladd > 0 || ve_flags == VE_ALL)
3647 {
3648 oneleft();
3649 if (restart_edit != NUL)
3650 ++curwin->w_cursor.coladd;
3651 }
3652 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 {
3654 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003655 // Correct cursor for multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 if (has_mbyte)
3657 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 }
3659 }
3660
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003661#ifdef HAVE_INPUT_METHOD
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003662 // Disable IM to allow typing English directly for Normal mode commands.
3663 // When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
3664 // well).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 if (!(State & LANGMAP))
3666 im_save_status(&curbuf->b_p_iminsert);
3667 im_set_active(FALSE);
3668#endif
3669
3670 State = NORMAL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003671 // need to position cursor again (e.g. when on a TAB )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 changed_cline_bef_curs();
3673
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675#ifdef CURSOR_SHAPE
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003676 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003678 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003679 {
Bram Moolenaar86394aa2020-09-05 14:27:24 +02003680#ifdef FEAT_JOB_CHANNEL
3681 ch_log_output = TRUE;
3682#endif
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003683 // Re-enable bracketed paste mode.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003684 out_str(T_BE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003686 // Re-enable modifyOtherKeys.
3687 out_str(T_CTI);
3688 }
3689
Bram Moolenaarad3ec762019-04-21 00:00:13 +02003690 // When recording or for CTRL-O, need to display the new mode.
3691 // Otherwise remove the mode message.
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02003692 if (reg_recording != 0 || restart_edit != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 showmode();
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +02003694 else if (p_smd && (got_int || !skip_showmode()))
Bram Moolenaar32526b32019-01-19 17:43:09 +01003695 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003697 return TRUE; // exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698}
3699
3700#ifdef FEAT_RIGHTLEFT
3701/*
3702 * Toggle language: hkmap and revins_on.
3703 * Move to end of reverse inserted text.
3704 */
3705 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003706ins_ctrl_(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707{
3708 if (revins_on && revins_chars && revins_scol >= 0)
3709 {
3710 while (gchar_cursor() != NUL && revins_chars--)
3711 ++curwin->w_cursor.col;
3712 }
3713 p_ri = !p_ri;
3714 revins_on = (State == INSERT && p_ri);
3715 if (revins_on)
3716 {
3717 revins_scol = curwin->w_cursor.col;
3718 revins_legal++;
3719 revins_chars = 0;
3720 undisplay_dollar();
3721 }
3722 else
3723 revins_scol = -1;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003724 p_hkmap = curwin->w_p_rl ^ p_ri; // be consistent!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 showmode();
3726}
3727#endif
3728
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729/*
3730 * If 'keymodel' contains "startsel", may start selection.
3731 * Returns TRUE when a CTRL-O and other keys stuffed.
3732 */
3733 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003734ins_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735{
3736 if (km_startsel)
3737 switch (c)
3738 {
3739 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 case K_PAGEUP:
3742 case K_KPAGEUP:
3743 case K_PAGEDOWN:
3744 case K_KPAGEDOWN:
Bram Moolenaard0573012017-10-28 21:11:06 +02003745# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 case K_LEFT:
3747 case K_RIGHT:
3748 case K_UP:
3749 case K_DOWN:
3750 case K_END:
3751 case K_HOME:
3752# endif
3753 if (!(mod_mask & MOD_MASK_SHIFT))
3754 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003755 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 case K_S_LEFT:
3757 case K_S_RIGHT:
3758 case K_S_UP:
3759 case K_S_DOWN:
3760 case K_S_END:
3761 case K_S_HOME:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003762 // Start selection right away, the cursor can move with
3763 // CTRL-O when beyond the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 start_selection();
3765
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003766 // Execute the key in (insert) Select mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 stuffcharReadbuff(Ctrl_O);
3768 if (mod_mask)
3769 {
3770 char_u buf[4];
3771
3772 buf[0] = K_SPECIAL;
3773 buf[1] = KS_MODIFIER;
3774 buf[2] = mod_mask;
3775 buf[3] = NUL;
3776 stuffReadbuff(buf);
3777 }
3778 stuffcharReadbuff(c);
3779 return TRUE;
3780 }
3781 return FALSE;
3782}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783
3784/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003785 * <Insert> key in Insert mode: toggle insert/replace mode.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003786 */
3787 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003788ins_insert(int replaceState)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003789{
Bram Moolenaar14184a32019-02-16 15:10:30 +01003790#ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003791 set_vim_var_string(VV_INSERTMODE,
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02003792 (char_u *)((State & REPLACE_FLAG) ? "i"
3793 : replaceState == VREPLACE ? "v"
3794 : "r"), 1);
Bram Moolenaar14184a32019-02-16 15:10:30 +01003795#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02003796 ins_apply_autocmds(EVENT_INSERTCHANGE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003797 if (State & REPLACE_FLAG)
3798 State = INSERT | (State & LANGMAP);
3799 else
3800 State = replaceState | (State & LANGMAP);
3801 AppendCharToRedobuff(K_INS);
3802 showmode();
3803#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003804 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003805#endif
3806}
3807
3808/*
3809 * Pressed CTRL-O in Insert mode.
3810 */
3811 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003812ins_ctrl_o(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003813{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003814 if (State & VREPLACE_FLAG)
3815 restart_edit = 'V';
Bram Moolenaar0684e362020-12-03 19:54:42 +01003816 else if (State & REPLACE_FLAG)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003817 restart_edit = 'R';
3818 else
3819 restart_edit = 'I';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003820 if (virtual_active())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003821 ins_at_eol = FALSE; // cursor always keeps its column
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003822 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003823 ins_at_eol = (gchar_cursor() == NUL);
3824}
3825
3826/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 * If the cursor is on an indent, ^T/^D insert/delete one
3828 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00003829 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 * with vi. But vi only supports ^T and ^D after an
3831 * autoindent, we support it everywhere.
3832 */
3833 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003834ins_shift(int c, int lastc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835{
3836 if (stop_arrow() == FAIL)
3837 return;
3838 AppendCharToRedobuff(c);
3839
3840 /*
3841 * 0^D and ^^D: remove all indent.
3842 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00003843 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
3844 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 {
3846 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003847 (void)del_char(FALSE); // delete the '^' or '0'
3848 // In Replace mode, restore the characters that '^' or '0' replaced.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 if (State & REPLACE_FLAG)
3850 replace_pop_ins();
3851 if (lastc == '^')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003852 old_indent = get_indent(); // remember curr. indent
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003853 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 }
3855 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003856 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857
3858 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
3859 did_ai = FALSE;
3860#ifdef FEAT_SMARTINDENT
3861 did_si = FALSE;
3862 can_si = FALSE;
3863 can_si_back = FALSE;
3864#endif
3865#ifdef FEAT_CINDENT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003866 can_cindent = FALSE; // no cindenting after ^D or ^T
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867#endif
3868}
3869
3870 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003871ins_del(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872{
3873 int temp;
3874
3875 if (stop_arrow() == FAIL)
3876 return;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003877 if (gchar_cursor() == NUL) // delete newline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 {
3879 temp = curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003880 if (!can_bs(BS_EOL) // only if "eol" included
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02003881 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003882 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 else
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003884 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 curwin->w_cursor.col = temp;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003886 // Adjust orig_line_count in case more lines have been deleted than
3887 // have been added. That makes sure, that open_line() later
3888 // can access all buffer lines correctly
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003889 if (State & VREPLACE_FLAG &&
3890 orig_line_count > curbuf->b_ml.ml_line_count)
3891 orig_line_count = curbuf->b_ml.ml_line_count;
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003894 else if (del_char(FALSE) == FAIL) // delete char under cursor
Bram Moolenaar165bc692015-07-21 17:53:25 +02003895 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 did_ai = FALSE;
3897#ifdef FEAT_SMARTINDENT
3898 did_si = FALSE;
3899 can_si = FALSE;
3900 can_si_back = FALSE;
3901#endif
3902 AppendCharToRedobuff(K_DEL);
3903}
3904
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003905/*
3906 * Delete one character for ins_bs().
3907 */
3908 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003909ins_bs_one(colnr_T *vcolp)
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003910{
3911 dec_cursor();
3912 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
3913 if (State & REPLACE_FLAG)
3914 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003915 // Don't delete characters before the insert point when in
3916 // Replace mode
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003917 if (curwin->w_cursor.lnum != Insstart.lnum
3918 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003919 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003920 }
3921 else
3922 (void)del_char(FALSE);
3923}
3924
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925/*
3926 * Handle Backspace, delete-word and delete-line in Insert mode.
3927 * Return TRUE when backspace was actually used.
3928 */
3929 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003930ins_bs(
3931 int c,
3932 int mode,
3933 int *inserted_space_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934{
3935 linenr_T lnum;
3936 int cc;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003937 int temp = 0; // init for GCC
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003938 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 colnr_T mincol;
3940 int did_backspace = FALSE;
3941 int in_indent;
3942 int oldState;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003943 int cpc[MAX_MCO]; // composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944
3945 /*
3946 * can't delete anything in an empty file
3947 * can't backup past first character in buffer
3948 * can't backup past starting point unless 'backspace' > 1
3949 * can backup to a previous line if 'backspace' == 0
3950 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003951 if ( BUFEMPTY()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 || (
3953#ifdef FEAT_RIGHTLEFT
3954 !revins_on &&
3955#endif
3956 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
3957 || (!can_bs(BS_START)
Bram Moolenaar6f624482020-11-11 20:52:40 +01003958 && ((arrow_used
3959#ifdef FEAT_JOB_CHANNEL
3960 && !bt_prompt(curbuf)
3961#endif
3962 ) || (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02003963 && curwin->w_cursor.col <= Insstart_orig.col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
3965 && curwin->w_cursor.col <= ai_col)
3966 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
3967 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003968 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 return FALSE;
3970 }
3971
3972 if (stop_arrow() == FAIL)
3973 return FALSE;
3974 in_indent = inindent(0);
3975#ifdef FEAT_CINDENT
3976 if (in_indent)
3977 can_cindent = FALSE;
3978#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003979 end_comment_pending = NUL; // After BS, don't auto-end comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003981 if (revins_on) // put cursor after last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 inc_cursor();
3983#endif
3984
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003985 // Virtualedit:
3986 // BACKSPACE_CHAR eats a virtual space
3987 // BACKSPACE_WORD eats all coladd
3988 // BACKSPACE_LINE eats all coladd and keeps going
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 if (curwin->w_cursor.coladd > 0)
3990 {
3991 if (mode == BACKSPACE_CHAR)
3992 {
3993 --curwin->w_cursor.coladd;
3994 return TRUE;
3995 }
3996 if (mode == BACKSPACE_WORD)
3997 {
3998 curwin->w_cursor.coladd = 0;
3999 return TRUE;
4000 }
4001 curwin->w_cursor.coladd = 0;
4002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003
4004 /*
Bram Moolenaar878c2632017-04-01 15:15:52 +02004005 * Delete newline!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 */
4007 if (curwin->w_cursor.col == 0)
4008 {
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004009 lnum = Insstart.lnum;
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004010 if (curwin->w_cursor.lnum == lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011#ifdef FEAT_RIGHTLEFT
4012 || revins_on
4013#endif
4014 )
4015 {
4016 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
4017 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
4018 return FALSE;
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004019 --Insstart.lnum;
Bram Moolenaar04000562017-04-03 21:35:42 +02004020 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 }
4022 /*
4023 * In replace mode:
4024 * cc < 0: NL was inserted, delete it
4025 * cc >= 0: NL was replaced, put original characters back
4026 */
4027 cc = -1;
4028 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004029 cc = replace_pop(); // returns -1 if NL was inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 /*
4031 * In replace mode, in the line we started replacing, we only move the
4032 * cursor.
4033 */
4034 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
4035 {
4036 dec_cursor();
4037 }
4038 else
4039 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 if (!(State & VREPLACE_FLAG)
4041 || curwin->w_cursor.lnum > orig_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004043 temp = gchar_cursor(); // remember current char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004045
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004046 // When "aw" is in 'formatoptions' we must delete the space at
4047 // the end of the line, otherwise the line will be broken
4048 // again when auto-formatting.
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004049 if (has_format_option(FO_AUTO)
4050 && has_format_option(FO_WHITE_PAR))
4051 {
4052 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
4053 TRUE);
4054 int len;
4055
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004056 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004057 if (len > 0 && ptr[len - 1] == ' ')
4058 ptr[len - 1] = NUL;
4059 }
4060
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004061 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 if (temp == NUL && gchar_cursor() != NUL)
4063 inc_cursor();
4064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065 else
4066 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067
4068 /*
4069 * In REPLACE mode we have to put back the text that was replaced
4070 * by the NL. On the replace stack is first a NUL-terminated
4071 * sequence of characters that were deleted and then the
4072 * characters that NL replaced.
4073 */
4074 if (State & REPLACE_FLAG)
4075 {
4076 /*
4077 * Do the next ins_char() in NORMAL state, to
4078 * prevent ins_char() from replacing characters and
4079 * avoiding showmatch().
4080 */
4081 oldState = State;
4082 State = NORMAL;
4083 /*
4084 * restore characters (blanks) deleted after cursor
4085 */
4086 while (cc > 0)
4087 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004088 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 mb_replace_pop_ins(cc);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004090 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 cc = replace_pop();
4092 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004093 // restore the characters that NL replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 replace_pop_ins();
4095 State = oldState;
4096 }
4097 }
4098 did_ai = FALSE;
4099 }
4100 else
4101 {
4102 /*
4103 * Delete character(s) before the cursor.
4104 */
4105#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004106 if (revins_on) // put cursor on last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 dec_cursor();
4108#endif
4109 mincol = 0;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004110 // keep indent
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004111 if (mode == BACKSPACE_LINE
4112 && (curbuf->b_p_ai
4113#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00004114 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004115#endif
4116 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117#ifdef FEAT_RIGHTLEFT
4118 && !revins_on
4119#endif
4120 )
4121 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004122 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00004124 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004126 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 }
4128
4129 /*
4130 * Handle deleting one 'shiftwidth' or 'softtabstop'.
4131 */
4132 if ( mode == BACKSPACE_CHAR
4133 && ((p_sta && in_indent)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004134 || ((get_sts_value() != 0
4135#ifdef FEAT_VARTABS
4136 || tabstop_count(curbuf->b_p_vsts_array)
4137#endif
4138 )
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00004139 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 && (*(ml_get_cursor() - 1) == TAB
4141 || (*(ml_get_cursor() - 1) == ' '
4142 && (!*inserted_space_p
4143 || arrow_used))))))
4144 {
4145 int ts;
4146 colnr_T vcol;
4147 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004148 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149
4150 *inserted_space_p = FALSE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004151 // Compute the virtual column where we want to be. Since
4152 // 'showbreak' may get in the way, need to get the last column of
4153 // the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004155 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 dec_cursor();
4157 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
4158 inc_cursor();
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004159#ifdef FEAT_VARTABS
4160 if (p_sta && in_indent)
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004161 {
4162 ts = (int)get_sw_value(curbuf);
4163 want_vcol = (want_vcol / ts) * ts;
4164 }
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004165 else
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004166 want_vcol = tabstop_start(want_vcol, get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004167 curbuf->b_p_vsts_array);
4168#else
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004169 if (p_sta && in_indent)
4170 ts = (int)get_sw_value(curbuf);
4171 else
4172 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 want_vcol = (want_vcol / ts) * ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004176 // delete characters until we are at or before want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 while (vcol > want_vcol
Bram Moolenaar1c465442017-03-12 20:10:05 +01004178 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004179 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004181 // insert extra spaces until we are at want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 while (vcol < want_vcol)
4183 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004184 // Remember the first char we inserted
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004185 if (curwin->w_cursor.lnum == Insstart_orig.lnum
4186 && curwin->w_cursor.col < Insstart_orig.col)
4187 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 if (State & VREPLACE_FLAG)
4190 ins_char(' ');
4191 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 {
4193 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004194 if ((State & REPLACE_FLAG))
4195 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 }
4197 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
4198 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004199
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004200 // If we are now back where we started delete one character. Can
4201 // happen when using 'sts' and 'linebreak'.
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004202 if (vcol >= start_vcol)
4203 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 }
4205
4206 /*
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004207 * Delete up to starting point, start of line or previous word.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 */
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004209 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004211 int cclass = 0, prev_cclass = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004213 if (has_mbyte)
4214 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004215 do
4216 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004218 if (!revins_on) // put cursor on char to be deleted
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004219#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 dec_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004221
4222 cc = gchar_cursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004223 // look multi-byte character class
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004224 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004226 prev_cclass = cclass;
4227 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 }
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004229
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004230 // start of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004231 if (mode == BACKSPACE_WORD && !vim_isspace(cc))
4232 {
4233 mode = BACKSPACE_WORD_NOT_SPACE;
4234 temp = vim_iswordc(cc);
4235 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004236 // end of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004237 else if (mode == BACKSPACE_WORD_NOT_SPACE
4238 && ((vim_isspace(cc) || vim_iswordc(cc) != temp)
Bram Moolenaar13505972019-01-24 15:04:48 +01004239 || prev_cclass != cclass))
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004240 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241#ifdef FEAT_RIGHTLEFT
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004242 if (!revins_on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004244 inc_cursor();
4245#ifdef FEAT_RIGHTLEFT
4246 else if (State & REPLACE_FLAG)
4247 dec_cursor();
4248#endif
4249 break;
4250 }
4251 if (State & REPLACE_FLAG)
4252 replace_do_bs(-1);
4253 else
4254 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004255 if (enc_utf8 && p_deco)
4256 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004257 (void)del_char(FALSE);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004258 /*
4259 * If there are combining characters and 'delcombine' is set
4260 * move the cursor back. Don't back up before the base
4261 * character.
4262 */
4263 if (enc_utf8 && p_deco && cpc[0] != NUL)
4264 inc_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004265#ifdef FEAT_RIGHTLEFT
4266 if (revins_chars)
4267 {
4268 revins_chars--;
4269 revins_legal++;
4270 }
4271 if (revins_on && gchar_cursor() == NUL)
4272 break;
4273#endif
4274 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004275 // Just a single backspace?:
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004276 if (mode == BACKSPACE_CHAR)
4277 break;
4278 } while (
4279#ifdef FEAT_RIGHTLEFT
4280 revins_on ||
4281#endif
4282 (curwin->w_cursor.col > mincol
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02004283 && (can_bs(BS_NOSTOP)
4284 || (curwin->w_cursor.lnum != Insstart_orig.lnum
4285 || curwin->w_cursor.col != Insstart_orig.col)
4286 )));
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004287 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 did_backspace = TRUE;
4289 }
4290#ifdef FEAT_SMARTINDENT
4291 did_si = FALSE;
4292 can_si = FALSE;
4293 can_si_back = FALSE;
4294#endif
4295 if (curwin->w_cursor.col <= 1)
4296 did_ai = FALSE;
4297 /*
4298 * It's a little strange to put backspaces into the redo
4299 * buffer, but it makes auto-indent a lot easier to deal
4300 * with.
4301 */
4302 AppendCharToRedobuff(c);
4303
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004304 // If deleted before the insertion point, adjust it
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004305 if (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02004306 && curwin->w_cursor.col < Insstart_orig.col)
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004307 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004309 // vi behaviour: the cursor moves backward but the character that
4310 // was there remains visible
4311 // Vim behaviour: the cursor moves backward and the character that
4312 // was there is erased from the screen.
4313 // We can emulate the vi behaviour by pretending there is a dollar
4314 // displayed even when there isn't.
4315 // --pkv Sun Jan 19 01:56:40 EST 2003
Bram Moolenaar76b9b362012-02-04 23:35:00 +01004316 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 dollar_vcol = curwin->w_virtcol;
4318
Bram Moolenaarce3be472008-01-14 19:12:28 +00004319#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004320 // When deleting a char the cursor line must never be in a closed fold.
4321 // E.g., when 'foldmethod' is indent and deleting the first non-white
4322 // char before a Tab.
Bram Moolenaarce3be472008-01-14 19:12:28 +00004323 if (did_backspace)
4324 foldOpenCursor();
4325#endif
4326
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 return did_backspace;
4328}
4329
Bram Moolenaarec2da362017-01-21 20:04:22 +01004330/*
4331 * Handle receiving P_PS: start paste mode. Inserts the following text up to
4332 * P_PE literally.
4333 * When "drop" is TRUE then consume the text and drop it.
4334 */
4335 int
4336bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
4337{
4338 int c;
4339 char_u buf[NUMBUFLEN + MB_MAXBYTES];
4340 int idx = 0;
4341 char_u *end = find_termcode((char_u *)"PE");
4342 int ret_char = -1;
4343 int save_allow_keys = allow_keys;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004344 int save_paste = p_paste;
Bram Moolenaarec2da362017-01-21 20:04:22 +01004345
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004346 // If the end code is too long we can't detect it, read everything.
Bram Moolenaarfe4bbac2020-01-20 21:12:20 +01004347 if (end != NULL && STRLEN(end) >= NUMBUFLEN)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004348 end = NULL;
4349 ++no_mapping;
4350 allow_keys = 0;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004351 if (!p_paste)
4352 // Also have the side effects of setting 'paste' to make it work much
4353 // faster.
4354 set_option_value((char_u *)"paste", TRUE, NULL, 0);
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004355
Bram Moolenaarec2da362017-01-21 20:04:22 +01004356 for (;;)
4357 {
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004358 // When the end is not defined read everything there is.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004359 if (end == NULL && vpeekc() == NUL)
4360 break;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004361 do
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004362 c = vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +01004363 while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004364 if (c == NUL || got_int || (ex_normal_busy > 0 && c == Ctrl_C))
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004365 // When CTRL-C was encountered the typeahead will be flushed and we
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004366 // won't get the end sequence. Except when using ":normal".
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004367 break;
4368
Bram Moolenaarec2da362017-01-21 20:04:22 +01004369 if (has_mbyte)
4370 idx += (*mb_char2bytes)(c, buf + idx);
4371 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004372 buf[idx++] = c;
4373 buf[idx] = NUL;
Bram Moolenaar866c6882017-04-07 14:02:01 +02004374 if (end != NULL && STRNCMP(buf, end, idx) == 0)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004375 {
4376 if (end[idx] == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004377 break; // Found the end of paste code.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004378 continue;
4379 }
4380 if (!drop)
4381 {
4382 switch (mode)
4383 {
4384 case PASTE_CMDLINE:
4385 put_on_cmdline(buf, idx, TRUE);
4386 break;
4387
4388 case PASTE_EX:
4389 if (gap != NULL && ga_grow(gap, idx) == OK)
4390 {
4391 mch_memmove((char *)gap->ga_data + gap->ga_len,
4392 buf, (size_t)idx);
4393 gap->ga_len += idx;
4394 }
4395 break;
4396
4397 case PASTE_INSERT:
4398 if (stop_arrow() == OK)
4399 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004400 c = buf[0];
4401 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL))
4402 ins_eol(c);
4403 else
Bram Moolenaar076e5022017-01-24 18:58:30 +01004404 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004405 ins_char_bytes(buf, idx);
Bram Moolenaar076e5022017-01-24 18:58:30 +01004406 AppendToRedobuffLit(buf, idx);
4407 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01004408 }
4409 break;
4410
4411 case PASTE_ONE_CHAR:
4412 if (ret_char == -1)
4413 {
Bram Moolenaarec2da362017-01-21 20:04:22 +01004414 if (has_mbyte)
4415 ret_char = (*mb_ptr2char)(buf);
4416 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004417 ret_char = buf[0];
4418 }
4419 break;
4420 }
4421 }
4422 idx = 0;
4423 }
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004424
Bram Moolenaarec2da362017-01-21 20:04:22 +01004425 --no_mapping;
4426 allow_keys = save_allow_keys;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004427 if (!save_paste)
4428 set_option_value((char_u *)"paste", FALSE, NULL, 0);
Bram Moolenaarec2da362017-01-21 20:04:22 +01004429
4430 return ret_char;
4431}
4432
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004433#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004434 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004435ins_tabline(int c)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004436{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004437 // We will be leaving the current window, unless closing another tab.
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004438 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
4439 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
4440 {
4441 undisplay_dollar();
4442 start_arrow(&curwin->w_cursor);
4443# ifdef FEAT_CINDENT
4444 can_cindent = TRUE;
4445# endif
4446 }
4447
4448 if (c == K_TABLINE)
4449 goto_tabpage(current_tab);
4450 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004451 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004452 handle_tabmenu();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004453 redraw_statuslines(); // will redraw the tabline when needed
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004454 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004455}
4456#endif
4457
4458#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004460ins_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461{
4462 pos_T tpos;
4463
4464 undisplay_dollar();
4465 tpos = curwin->w_cursor;
4466 if (gui_do_scroll())
4467 {
4468 start_arrow(&tpos);
4469# ifdef FEAT_CINDENT
4470 can_cindent = TRUE;
4471# endif
4472 }
4473}
4474
4475 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004476ins_horscroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477{
4478 pos_T tpos;
4479
4480 undisplay_dollar();
4481 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004482 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 {
4484 start_arrow(&tpos);
4485# ifdef FEAT_CINDENT
4486 can_cindent = TRUE;
4487# endif
4488 }
4489}
4490#endif
4491
4492 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004493ins_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494{
4495 pos_T tpos;
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004496 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497
4498#ifdef FEAT_FOLDING
4499 if ((fdo_flags & FDO_HOR) && KeyTyped)
4500 foldOpenCursor();
4501#endif
4502 undisplay_dollar();
4503 tpos = curwin->w_cursor;
4504 if (oneleft() == OK)
4505 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004506#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004507 // Only call start_arrow() when not busy with preediting, it will
4508 // break undo. K_LEFT is inserted in im_correct_cursor().
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02004509 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting())
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004510#endif
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004511 {
4512 start_arrow_with_change(&tpos, end_change);
4513 if (!end_change)
4514 AppendCharToRedobuff(K_LEFT);
4515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004517 // If exit reversed string, position is fixed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
4519 revins_legal++;
4520 revins_chars++;
4521#endif
4522 }
4523
4524 /*
4525 * if 'whichwrap' set for cursor in insert mode may go to
4526 * previous line
4527 */
4528 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
4529 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004530 // always break undo when moving upwards/downwards, else undo may break
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 start_arrow(&tpos);
4532 --(curwin->w_cursor.lnum);
4533 coladvance((colnr_T)MAXCOL);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004534 curwin->w_set_curswant = TRUE; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 }
4536 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004537 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004538 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539}
4540
4541 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004542ins_home(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543{
4544 pos_T tpos;
4545
4546#ifdef FEAT_FOLDING
4547 if ((fdo_flags & FDO_HOR) && KeyTyped)
4548 foldOpenCursor();
4549#endif
4550 undisplay_dollar();
4551 tpos = curwin->w_cursor;
4552 if (c == K_C_HOME)
4553 curwin->w_cursor.lnum = 1;
4554 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 curwin->w_curswant = 0;
4557 start_arrow(&tpos);
4558}
4559
4560 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004561ins_end(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562{
4563 pos_T tpos;
4564
4565#ifdef FEAT_FOLDING
4566 if ((fdo_flags & FDO_HOR) && KeyTyped)
4567 foldOpenCursor();
4568#endif
4569 undisplay_dollar();
4570 tpos = curwin->w_cursor;
4571 if (c == K_C_END)
4572 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4573 coladvance((colnr_T)MAXCOL);
4574 curwin->w_curswant = MAXCOL;
4575
4576 start_arrow(&tpos);
4577}
4578
4579 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004580ins_s_left()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004582 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583#ifdef FEAT_FOLDING
4584 if ((fdo_flags & FDO_HOR) && KeyTyped)
4585 foldOpenCursor();
4586#endif
4587 undisplay_dollar();
4588 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
4589 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004590 start_arrow_with_change(&curwin->w_cursor, end_change);
4591 if (!end_change)
4592 AppendCharToRedobuff(K_S_LEFT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 (void)bck_word(1L, FALSE, FALSE);
4594 curwin->w_set_curswant = TRUE;
4595 }
4596 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004597 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004598 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599}
4600
4601 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004602ins_right(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004604 int end_change = dont_sync_undo == FALSE; // end undoable change
4605
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606#ifdef FEAT_FOLDING
4607 if ((fdo_flags & FDO_HOR) && KeyTyped)
4608 foldOpenCursor();
4609#endif
4610 undisplay_dollar();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004611 if (gchar_cursor() != NUL || virtual_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612 {
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004613 start_arrow_with_change(&curwin->w_cursor, end_change);
4614 if (!end_change)
4615 AppendCharToRedobuff(K_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 if (virtual_active())
4618 oneright();
4619 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004622 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 ++curwin->w_cursor.col;
4625 }
4626
4627#ifdef FEAT_RIGHTLEFT
4628 revins_legal++;
4629 if (revins_chars)
4630 revins_chars--;
4631#endif
4632 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004633 // if 'whichwrap' set for cursor in insert mode, may move the
4634 // cursor to the next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 else if (vim_strchr(p_ww, ']') != NULL
4636 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4637 {
4638 start_arrow(&curwin->w_cursor);
4639 curwin->w_set_curswant = TRUE;
4640 ++curwin->w_cursor.lnum;
4641 curwin->w_cursor.col = 0;
4642 }
4643 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004644 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004645 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646}
4647
4648 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004649ins_s_right()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004651 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652#ifdef FEAT_FOLDING
4653 if ((fdo_flags & FDO_HOR) && KeyTyped)
4654 foldOpenCursor();
4655#endif
4656 undisplay_dollar();
4657 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4658 || gchar_cursor() != NUL)
4659 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004660 start_arrow_with_change(&curwin->w_cursor, end_change);
4661 if (!end_change)
4662 AppendCharToRedobuff(K_S_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 (void)fwd_word(1L, FALSE, 0);
4664 curwin->w_set_curswant = TRUE;
4665 }
4666 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004667 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004668 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669}
4670
4671 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004672ins_up(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004673 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674{
4675 pos_T tpos;
4676 linenr_T old_topline = curwin->w_topline;
4677#ifdef FEAT_DIFF
4678 int old_topfill = curwin->w_topfill;
4679#endif
4680
4681 undisplay_dollar();
4682 tpos = curwin->w_cursor;
4683 if (cursor_up(1L, TRUE) == OK)
4684 {
4685 if (startcol)
4686 coladvance(getvcol_nolist(&Insstart));
4687 if (old_topline != curwin->w_topline
4688#ifdef FEAT_DIFF
4689 || old_topfill != curwin->w_topfill
4690#endif
4691 )
4692 redraw_later(VALID);
4693 start_arrow(&tpos);
4694#ifdef FEAT_CINDENT
4695 can_cindent = TRUE;
4696#endif
4697 }
4698 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004699 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700}
4701
4702 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004703ins_pageup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704{
4705 pos_T tpos;
4706
4707 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004708
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004709 if (mod_mask & MOD_MASK_CTRL)
4710 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004711 // <C-PageUp>: tab page back
Bram Moolenaarbc444822006-10-17 11:37:50 +00004712 if (first_tabpage->tp_next != NULL)
4713 {
4714 start_arrow(&curwin->w_cursor);
4715 goto_tabpage(-1);
4716 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004717 return;
4718 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004719
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 tpos = curwin->w_cursor;
4721 if (onepage(BACKWARD, 1L) == OK)
4722 {
4723 start_arrow(&tpos);
4724#ifdef FEAT_CINDENT
4725 can_cindent = TRUE;
4726#endif
4727 }
4728 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004729 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730}
4731
4732 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004733ins_down(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004734 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735{
4736 pos_T tpos;
4737 linenr_T old_topline = curwin->w_topline;
4738#ifdef FEAT_DIFF
4739 int old_topfill = curwin->w_topfill;
4740#endif
4741
4742 undisplay_dollar();
4743 tpos = curwin->w_cursor;
4744 if (cursor_down(1L, TRUE) == OK)
4745 {
4746 if (startcol)
4747 coladvance(getvcol_nolist(&Insstart));
4748 if (old_topline != curwin->w_topline
4749#ifdef FEAT_DIFF
4750 || old_topfill != curwin->w_topfill
4751#endif
4752 )
4753 redraw_later(VALID);
4754 start_arrow(&tpos);
4755#ifdef FEAT_CINDENT
4756 can_cindent = TRUE;
4757#endif
4758 }
4759 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004760 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761}
4762
4763 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004764ins_pagedown(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765{
4766 pos_T tpos;
4767
4768 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004769
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004770 if (mod_mask & MOD_MASK_CTRL)
4771 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004772 // <C-PageDown>: tab page forward
Bram Moolenaarbc444822006-10-17 11:37:50 +00004773 if (first_tabpage->tp_next != NULL)
4774 {
4775 start_arrow(&curwin->w_cursor);
4776 goto_tabpage(0);
4777 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004778 return;
4779 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004780
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 tpos = curwin->w_cursor;
4782 if (onepage(FORWARD, 1L) == OK)
4783 {
4784 start_arrow(&tpos);
4785#ifdef FEAT_CINDENT
4786 can_cindent = TRUE;
4787#endif
4788 }
4789 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004790 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791}
4792
4793#ifdef FEAT_DND
4794 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004795ins_drop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796{
Bram Moolenaarc3516f72020-09-08 22:45:35 +02004797 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798}
4799#endif
4800
4801/*
4802 * Handle TAB in Insert or Replace mode.
4803 * Return TRUE when the TAB needs to be inserted like a normal character.
4804 */
4805 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004806ins_tab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807{
4808 int ind;
4809 int i;
4810 int temp;
4811
4812 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
4813 Insstart_blank_vcol = get_nolist_virtcol();
4814 if (echeck_abbr(TAB + ABBR_OFF))
4815 return FALSE;
4816
4817 ind = inindent(0);
4818#ifdef FEAT_CINDENT
4819 if (ind)
4820 can_cindent = FALSE;
4821#endif
4822
4823 /*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004824 * When nothing special, insert TAB like a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 */
4826 if (!curbuf->b_p_et
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004827#ifdef FEAT_VARTABS
4828 && !(p_sta && ind
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004829 // These five lines mean 'tabstop' != 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004830 && ((tabstop_count(curbuf->b_p_vts_array) > 1)
4831 || (tabstop_count(curbuf->b_p_vts_array) == 1
4832 && tabstop_first(curbuf->b_p_vts_array)
4833 != get_sw_value(curbuf))
4834 || (tabstop_count(curbuf->b_p_vts_array) == 0
4835 && curbuf->b_p_ts != get_sw_value(curbuf))))
4836 && tabstop_count(curbuf->b_p_vsts_array) == 0
4837#else
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004838 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004839#endif
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004840 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 return TRUE;
4842
4843 if (stop_arrow() == FAIL)
4844 return TRUE;
4845
4846 did_ai = FALSE;
4847#ifdef FEAT_SMARTINDENT
4848 did_si = FALSE;
4849 can_si = FALSE;
4850 can_si_back = FALSE;
4851#endif
4852 AppendToRedobuff((char_u *)"\t");
4853
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004854#ifdef FEAT_VARTABS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004855 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004856 {
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004857 temp = (int)get_sw_value(curbuf);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004858 temp -= get_nolist_virtcol() % temp;
4859 }
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004860 else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts != 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004861 // use 'softtabstop' when set
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004862 temp = tabstop_padding(get_nolist_virtcol(), get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004863 curbuf->b_p_vsts_array);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004864 else // otherwise use 'tabstop'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004865 temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts,
4866 curbuf->b_p_vts_array);
4867#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004868 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004869 temp = (int)get_sw_value(curbuf);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004870 else if (curbuf->b_p_sts != 0) // use 'softtabstop' when set
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004871 temp = (int)get_sts_value();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004872 else // otherwise use 'tabstop'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 temp = (int)curbuf->b_p_ts;
4874 temp -= get_nolist_virtcol() % temp;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876
4877 /*
4878 * Insert the first space with ins_char(). It will delete one char in
4879 * replace mode. Insert the rest with ins_str(); it will not delete any
4880 * chars. For VREPLACE mode, we use ins_char() for all characters.
4881 */
4882 ins_char(' ');
4883 while (--temp > 0)
4884 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 if (State & VREPLACE_FLAG)
4886 ins_char(' ');
4887 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 {
4889 ins_str((char_u *)" ");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004890 if (State & REPLACE_FLAG) // no char replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 replace_push(NUL);
4892 }
4893 }
4894
4895 /*
4896 * When 'expandtab' not set: Replace spaces by TABs where possible.
4897 */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004898#ifdef FEAT_VARTABS
4899 if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0
4900 || get_sts_value() > 0
4901 || (p_sta && ind)))
4902#else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004903 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004904#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 {
4906 char_u *ptr;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004907 char_u *saved_line = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 pos_T fpos;
4910 pos_T *cursor;
4911 colnr_T want_vcol, vcol;
4912 int change_col = -1;
4913 int save_list = curwin->w_p_list;
4914
4915 /*
4916 * Get the current line. For VREPLACE mode, don't make real changes
4917 * yet, just work on a copy of the line.
4918 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 if (State & VREPLACE_FLAG)
4920 {
4921 pos = curwin->w_cursor;
4922 cursor = &pos;
4923 saved_line = vim_strsave(ml_get_curline());
4924 if (saved_line == NULL)
4925 return FALSE;
4926 ptr = saved_line + pos.col;
4927 }
4928 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 {
4930 ptr = ml_get_cursor();
4931 cursor = &curwin->w_cursor;
4932 }
4933
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004934 // When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
4936 curwin->w_p_list = FALSE;
4937
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004938 // Find first white before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 fpos = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +01004940 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
4942 --fpos.col;
4943 --ptr;
4944 }
4945
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004946 // In Replace mode, don't change characters before the insert point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 if ((State & REPLACE_FLAG)
4948 && fpos.lnum == Insstart.lnum
4949 && fpos.col < Insstart.col)
4950 {
4951 ptr += Insstart.col - fpos.col;
4952 fpos.col = Insstart.col;
4953 }
4954
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004955 // compute virtual column numbers of first white and cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 getvcol(curwin, &fpos, &vcol, NULL, NULL);
4957 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
4958
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004959 // Use as many TABs as possible. Beware of 'breakindent', 'showbreak'
4960 // and 'linebreak' adding extra virtual columns.
Bram Moolenaar1c465442017-03-12 20:10:05 +01004961 while (VIM_ISWHITE(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02004963 i = lbr_chartabsize(NULL, (char_u *)"\t", vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 if (vcol + i > want_vcol)
4965 break;
4966 if (*ptr != TAB)
4967 {
4968 *ptr = TAB;
4969 if (change_col < 0)
4970 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004971 change_col = fpos.col; // Column of first change
4972 // May have to adjust Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
4974 Insstart.col = fpos.col;
4975 }
4976 }
4977 ++fpos.col;
4978 ++ptr;
4979 vcol += i;
4980 }
4981
4982 if (change_col >= 0)
4983 {
4984 int repl_off = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02004985 char_u *line = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004987 // Skip over the spaces we need.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 while (vcol < want_vcol && *ptr == ' ')
4989 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02004990 vcol += lbr_chartabsize(line, ptr, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 ++ptr;
4992 ++repl_off;
4993 }
4994 if (vcol > want_vcol)
4995 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004996 // Must have a char with 'showbreak' just before it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 --ptr;
4998 --repl_off;
4999 }
5000 fpos.col += repl_off;
5001
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005002 // Delete following spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 i = cursor->col - fpos.col;
5004 if (i > 0)
5005 {
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005006#ifdef FEAT_PROP_POPUP
5007 if (!(State & VREPLACE_FLAG))
5008 {
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005009 char_u *newp;
5010 int col;
5011
5012 newp = alloc(curbuf->b_ml.ml_line_len - i);
5013 if (newp == NULL)
5014 return FALSE;
5015
5016 col = ptr - curbuf->b_ml.ml_line_ptr;
5017 if (col > 0)
5018 mch_memmove(newp, ptr - col, col);
5019 mch_memmove(newp + col, ptr + i,
5020 curbuf->b_ml.ml_line_len - col - i);
5021
5022 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY)
5023 vim_free(curbuf->b_ml.ml_line_ptr);
5024 curbuf->b_ml.ml_line_ptr = newp;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005025 curbuf->b_ml.ml_line_len -= i;
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005026 curbuf->b_ml.ml_flags =
5027 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005028 }
5029 else
5030#endif
5031 STRMOVE(ptr, ptr + i);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005032 // correct replace stack.
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005033 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 for (temp = i; --temp >= 0; )
5035 replace_join(repl_off);
5036 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00005037#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005038 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00005039 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02005040 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00005041 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
5042 (char_u *)"\t", 1);
5043 }
5044#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 cursor->col -= i;
5046
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 /*
5048 * In VREPLACE mode, we haven't changed anything yet. Do it now by
5049 * backspacing over the changed spacing and then inserting the new
5050 * spacing.
5051 */
5052 if (State & VREPLACE_FLAG)
5053 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005054 // Backspace from real cursor to change_col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 backspace_until_column(change_col);
5056
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005057 // Insert each char in saved_line from changed_col to
5058 // ptr-cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 ins_bytes_len(saved_line + change_col,
5060 cursor->col - change_col);
5061 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 }
5063
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 if (State & VREPLACE_FLAG)
5065 vim_free(saved_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 curwin->w_p_list = save_list;
5067 }
5068
5069 return FALSE;
5070}
5071
5072/*
5073 * Handle CR or NL in insert mode.
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005074 * Return FAIL when out of memory or can't undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005076 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005077ins_eol(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078{
5079 int i;
5080
5081 if (echeck_abbr(c + ABBR_OFF))
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005082 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 if (stop_arrow() == FAIL)
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005084 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 undisplay_dollar();
5086
5087 /*
5088 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
5089 * character under the cursor. Only push a NUL on the replace stack,
5090 * nothing to put back when the NL is deleted.
5091 */
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005092 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 replace_push(NUL);
5094
5095 /*
5096 * In VREPLACE mode, a NL replaces the rest of the line, and starts
5097 * replacing the next line, so we push all of the characters left on the
5098 * line onto the replace stack. This is not done here though, it is done
5099 * in open_line().
5100 */
5101
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005102 // Put cursor on NUL if on the last char and coladd is 1 (happens after
5103 // CTRL-O).
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005104 if (virtual_active() && curwin->w_cursor.coladd > 0)
5105 coladvance(getviscol());
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005106
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005108 // NL in reverse insert will always start in the end of
5109 // current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 if (revins_on)
5111 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
5112#endif
5113
5114 AppendToRedobuff(NL_STR);
5115 i = open_line(FORWARD,
Bram Moolenaar8c96af92019-09-28 19:05:57 +02005116 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM : 0, old_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 old_indent = 0;
5118#ifdef FEAT_CINDENT
5119 can_cindent = TRUE;
5120#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005121#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005122 // When inserting a line the cursor line must never be in a closed fold.
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005123 foldOpenCursor();
5124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005126 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127}
5128
5129#ifdef FEAT_DIGRAPHS
5130/*
5131 * Handle digraph in insert mode.
5132 * Returns character still to be inserted, or NUL when nothing remaining to be
5133 * done.
5134 */
5135 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005136ins_digraph(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137{
5138 int c;
5139 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005140 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141
5142 pc_status = PC_STATUS_UNSET;
5143 if (redrawing() && !char_avail())
5144 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005145 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005146 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147
5148 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005149 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150#ifdef FEAT_CMDL_INFO
5151 add_to_showcmd_c(Ctrl_K);
5152#endif
5153 }
5154
5155#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005156 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157#endif
5158
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005159 // don't map the digraph chars. This also prevents the
5160 // mode message to be deleted when ESC is hit
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 ++no_mapping;
5162 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005163 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 --no_mapping;
5165 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005166 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005167 // when the line fits in 'columns' the '?' is at the start of the next
5168 // line and will not be removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005169 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02005170
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005171 if (IS_SPECIAL(c) || mod_mask) // special key
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 {
5173#ifdef FEAT_CMDL_INFO
5174 clear_showcmd();
5175#endif
5176 insert_special(c, TRUE, FALSE);
5177 return NUL;
5178 }
5179 if (c != ESC)
5180 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005181 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182 if (redrawing() && !char_avail())
5183 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005184 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005185 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186
5187 if (char2cells(c) == 1)
5188 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00005189 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005191 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 }
5193#ifdef FEAT_CMDL_INFO
5194 add_to_showcmd_c(c);
5195#endif
5196 }
5197 ++no_mapping;
5198 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005199 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200 --no_mapping;
5201 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005202 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005203 // when the line fits in 'columns' the '?' is at the start of the
5204 // next line and will not be removed by a redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005205 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 if (cc != ESC)
5207 {
5208 AppendToRedobuff((char_u *)CTRL_V_STR);
5209 c = getdigraph(c, cc, TRUE);
5210#ifdef FEAT_CMDL_INFO
5211 clear_showcmd();
5212#endif
5213 return c;
5214 }
5215 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216#ifdef FEAT_CMDL_INFO
5217 clear_showcmd();
5218#endif
5219 return NUL;
5220}
5221#endif
5222
5223/*
5224 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
5225 * Returns the char to be inserted, or NUL if none found.
5226 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005227 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005228ins_copychar(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229{
5230 int c;
5231 int temp;
5232 char_u *ptr, *prev_ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005233 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234
5235 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
5236 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02005237 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 return NUL;
5239 }
5240
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005241 // try to advance to the cursor column
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 temp = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005243 line = ptr = ml_get(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 prev_ptr = ptr;
5245 validate_virtcol();
5246 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
5247 {
5248 prev_ptr = ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02005249 temp += lbr_chartabsize_adv(line, &ptr, (colnr_T)temp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 }
5251 if ((colnr_T)temp > curwin->w_virtcol)
5252 ptr = prev_ptr;
5253
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 c = (*mb_ptr2char)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 if (c == NUL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005256 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 return c;
5258}
5259
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005260/*
5261 * CTRL-Y or CTRL-E typed in Insert mode.
5262 */
5263 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005264ins_ctrl_ey(int tc)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005265{
5266 int c = tc;
5267
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005268 if (ctrl_x_mode_scroll())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005269 {
5270 if (c == Ctrl_Y)
5271 scrolldown_clamp();
5272 else
5273 scrollup_clamp();
5274 redraw_later(VALID);
5275 }
5276 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005277 {
5278 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
5279 if (c != NUL)
5280 {
5281 long tw_save;
5282
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005283 // The character must be taken literally, insert like it
5284 // was typed after a CTRL-V, and pretend 'textwidth'
5285 // wasn't set. Digits, 'o' and 'x' are special after a
5286 // CTRL-V, don't use it for these.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005287 if (c < 256 && !isalnum(c))
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005288 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005289 tw_save = curbuf->b_p_tw;
5290 curbuf->b_p_tw = -1;
5291 insert_special(c, TRUE, FALSE);
5292 curbuf->b_p_tw = tw_save;
5293#ifdef FEAT_RIGHTLEFT
5294 revins_chars++;
5295 revins_legal++;
5296#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005297 c = Ctrl_V; // pretend CTRL-V is last character
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005298 auto_format(FALSE, TRUE);
5299 }
5300 }
5301 return c;
5302}
5303
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304/*
5305 * Get the value that w_virtcol would have when 'list' is off.
5306 * Unless 'cpo' contains the 'L' flag.
5307 */
Bram Moolenaarf9514162018-11-22 03:08:29 +01005308 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005309get_nolist_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310{
Bram Moolenaarf9514162018-11-22 03:08:29 +01005311 // check validity of cursor in current buffer
5312 if (curwin->w_buffer == NULL
5313 || curwin->w_buffer->b_ml.ml_mfp == NULL
5314 || curwin->w_cursor.lnum > curwin->w_buffer->b_ml.ml_line_count)
5315 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
5317 return getvcol_nolist(&curwin->w_cursor);
5318 validate_virtcol();
5319 return curwin->w_virtcol;
5320}
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005321
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005322#if defined(FEAT_EVAL)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005323/*
5324 * Handle the InsertCharPre autocommand.
5325 * "c" is the character that was typed.
5326 * Return a pointer to allocated memory with the replacement string.
5327 * Return NULL to continue inserting "c".
5328 */
5329 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005330do_insert_char_pre(int c)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005331{
Bram Moolenaar704984a2012-06-01 14:57:51 +02005332 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +02005333 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005334 int save_State = State;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005335
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005336 // Return quickly when there is nothing to do.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005337 if (!has_insertcharpre())
5338 return NULL;
5339
Bram Moolenaar704984a2012-06-01 14:57:51 +02005340 if (has_mbyte)
5341 buf[(*mb_char2bytes)(c, buf)] = NUL;
5342 else
Bram Moolenaar704984a2012-06-01 14:57:51 +02005343 {
5344 buf[0] = c;
5345 buf[1] = NUL;
5346 }
5347
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005348 // Lock the text to avoid weird things from happening.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005349 ++textwinlock;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005350 set_vim_var_string(VV_CHAR, buf, -1); // set v:char
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005351
Bram Moolenaar704984a2012-06-01 14:57:51 +02005352 res = NULL;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005353 if (ins_apply_autocmds(EVENT_INSERTCHARPRE))
Bram Moolenaar704984a2012-06-01 14:57:51 +02005354 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005355 // Get the value of v:char. It may be empty or more than one
5356 // character. Only use it when changed, otherwise continue with the
5357 // original character to avoid breaking autoindent.
Bram Moolenaar704984a2012-06-01 14:57:51 +02005358 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
5359 res = vim_strsave(get_vim_var_str(VV_CHAR));
5360 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005361
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005362 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02005363 --textwinlock;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005364
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005365 // Restore the State, it may have been changed.
5366 State = save_State;
5367
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005368 return res;
5369}
5370#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005371
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005372#if defined(FEAT_CINDENT) || defined(PROTO)
5373 int
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005374get_can_cindent(void)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005375{
5376 return can_cindent;
5377}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005378
5379 void
5380set_can_cindent(int val)
5381{
5382 can_cindent = val;
5383}
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005384#endif
5385
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005386/*
5387 * Trigger "event" and take care of fixing undo.
5388 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005389 int
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005390ins_apply_autocmds(event_T event)
5391{
5392 varnumber_T tick = CHANGEDTICK(curbuf);
5393 int r;
5394
5395 r = apply_autocmds(event, NULL, NULL, FALSE, curbuf);
5396
5397 // If u_savesub() was called then we are not prepared to start
5398 // a new line. Call u_save() with no contents to fix that.
Bram Moolenaardb934952020-04-27 20:18:31 +02005399 // Except when leaving Insert mode.
5400 if (event != EVENT_INSERTLEAVE && tick != CHANGEDTICK(curbuf))
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005401 u_save(curwin->w_cursor.lnum, (linenr_T)(curwin->w_cursor.lnum + 1));
5402
5403 return r;
5404}