blob: ff9fc0ed0fb93490a15ee1de1cfb3eaff742f66c [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);
Bram Moolenaar2824d1e2023-02-23 20:13:04 +000048static void ins_ctrl_o(int cmdchar);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010049static 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
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010087static int can_cindent; // may do cindenting on this line
Bram Moolenaar071d4272004-06-13 20:20:40 +000088
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010090static int revins_on; // reverse insert mode on
91static int revins_chars; // how much to skip after edit
92static int revins_legal; // was the last char 'legal'?
93static int revins_scol; // start column of revins session
Bram Moolenaar071d4272004-06-13 20:20:40 +000094#endif
95
Bram Moolenaar5d18efe2019-12-01 21:11:22 +010096static int ins_need_undo; // call u_save() before inserting a
97 // char. Set when edit() is called.
98 // after that arrow_used is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000099
Bram Moolenaar75bf3d22019-03-26 22:46:05 +0100100static int dont_sync_undo = FALSE; // CTRL-G U prevents syncing undo for
101 // the next left/right cursor key
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102
103/*
104 * edit(): Start inserting text.
105 *
106 * "cmdchar" can be:
107 * 'i' normal insert command
108 * 'a' normal append command
Bram Moolenaarec2da362017-01-21 20:04:22 +0100109 * K_PS bracketed paste
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110 * 'R' replace command
111 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo,
112 * but still only one <CR> is inserted. The <Esc> is not used for redo.
113 * 'g' "gI" command.
114 * 'V' "gR" command for Virtual Replace mode.
115 * 'v' "gr" command for single character Virtual Replace mode.
116 *
117 * This function is not called recursively. For CTRL-O commands, it returns
118 * and lets the caller handle the Normal-mode command.
119 *
120 * Return TRUE if a CTRL-O command caused the return (insert mode pending).
121 */
122 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100123edit(
124 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100125 int startln, // if set, insert at start of line
Bram Moolenaar7454a062016-01-30 15:14:10 +0100126 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127{
128 int c = 0;
129 char_u *ptr;
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100130 int lastc = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000131 int mincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 static linenr_T o_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 int i;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100134 int did_backspace = TRUE; // previous char was backspace
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100135 int line_is_white = FALSE; // line is empty before insert
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100136 linenr_T old_topline = 0; // topline before insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#ifdef FEAT_DIFF
138 int old_topfill = -1;
139#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100140 int inserted_space = FALSE; // just inserted a space
Bram Moolenaar24959102022-05-07 20:01:16 +0100141 int replaceState = MODE_REPLACE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100142 int nomove = FALSE; // don't move cursor on return
Bram Moolenaarf2732452018-06-03 14:47:35 +0200143#ifdef FEAT_JOB_CHANNEL
144 int cmdchar_todo = cmdchar;
145#endif
Bram Moolenaarea042672021-06-29 20:22:32 +0200146#ifdef FEAT_CONCEAL
147 int cursor_line_was_concealed;
148#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100150 // Remember whether editing was restarted after CTRL-O.
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000151 did_restart_edit = restart_edit;
152
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100153 // sleep before redrawing, needed for "CTRL-O :" that results in an
154 // error message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155 check_for_delay(TRUE);
156
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100157 // set Insstart_orig to Insstart
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100158 update_Insstart_orig = TRUE;
159
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160#ifdef HAVE_SANDBOX
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100161 // Don't allow inserting in the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 if (sandbox != 0)
163 {
Bram Moolenaard8e44472021-07-21 22:20:33 +0200164 emsg(_(e_not_allowed_in_sandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165 return FALSE;
166 }
167#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100168 // Don't allow changes in the buffer while editing the cmdline. The
169 // caller of getcmdline() may get confused.
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100170 // Don't allow recursive insert mode when busy with completion.
zeertzjqcfe45652022-05-27 17:26:55 +0100171 if (textlock != 0 || ins_compl_active() || compl_busy || pum_visible())
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000172 {
Bram Moolenaar74409f62022-01-01 15:58:22 +0000173 emsg(_(e_not_allowed_to_change_text_or_change_window));
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000174 return FALSE;
175 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100176 ins_compl_clear(); // clear stuff for CTRL-X mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
Bram Moolenaar843ee412004-06-30 16:16:41 +0000178 /*
179 * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx".
180 */
181 if (cmdchar != 'r' && cmdchar != 'v')
182 {
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100183 pos_T save_cursor = curwin->w_cursor;
184
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100185#ifdef FEAT_EVAL
Bram Moolenaar843ee412004-06-30 16:16:41 +0000186 if (cmdchar == 'R')
187 ptr = (char_u *)"r";
188 else if (cmdchar == 'V')
189 ptr = (char_u *)"v";
190 else
191 ptr = (char_u *)"i";
192 set_vim_var_string(VV_INSERTMODE, ptr, 1);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100193 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100194#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +0200195 ins_apply_autocmds(EVENT_INSERTENTER);
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100196
Bram Moolenaar2e6cdb92021-01-28 11:07:44 +0100197 // Check for changed highlighting, e.g. for ModeMsg.
198 if (need_highlight_changed)
199 highlight_changed();
200
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100201 // Make sure the cursor didn't move. Do call check_cursor_col() in
202 // case the text was modified. Since Insert mode was not started yet
203 // a call to check_cursor_col() may move the cursor, especially with
204 // the "A" command, thus set State to avoid that. Also check that the
205 // line number is still valid (lines may have been deleted).
206 // Do not restore if v:char was set to a non-empty string.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100207 if (!EQUAL_POS(curwin->w_cursor, save_cursor)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100208#ifdef FEAT_EVAL
Bram Moolenaar097c9922013-05-19 21:15:15 +0200209 && *get_vim_var_str(VV_CHAR) == NUL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100210#endif
Bram Moolenaar097c9922013-05-19 21:15:15 +0200211 && save_cursor.lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100212 {
213 int save_state = State;
214
215 curwin->w_cursor = save_cursor;
Bram Moolenaar24959102022-05-07 20:01:16 +0100216 State = MODE_INSERT;
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100217 check_cursor_col();
218 State = save_state;
219 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000220 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000221
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200222#ifdef FEAT_CONCEAL
Bram Moolenaarea042672021-06-29 20:22:32 +0200223 // Check if the cursor line was concealed before changing State.
224 cursor_line_was_concealed = curwin->w_p_cole > 0
225 && conceal_cursor_line(curwin);
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200226#endif
227
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 /*
229 * When doing a paste with the middle mouse button, Insstart is set to
230 * where the paste started.
231 */
232 if (where_paste_started.lnum != 0)
233 Insstart = where_paste_started;
234 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 {
236 Insstart = curwin->w_cursor;
237 if (startln)
238 Insstart.col = 0;
239 }
Bram Moolenaarc9121f72022-10-14 20:09:04 +0100240 Insstart_textlen = (colnr_T)linetabsize_str(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 Insstart_blank_vcol = MAXCOL;
242 if (!did_ai)
243 ai_col = 0;
244
245 if (cmdchar != NUL && restart_edit == 0)
246 {
247 ResetRedobuff();
248 AppendNumberToRedobuff(count);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249 if (cmdchar == 'V' || cmdchar == 'v')
250 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100251 // "gR" or "gr" command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 AppendCharToRedobuff('g');
253 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
254 }
255 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 {
Bram Moolenaar076e5022017-01-24 18:58:30 +0100257 if (cmdchar == K_PS)
258 AppendCharToRedobuff('a');
259 else
260 AppendCharToRedobuff(cmdchar);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100261 if (cmdchar == 'g') // "gI" command
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 AppendCharToRedobuff('I');
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100263 else if (cmdchar == 'r') // "r<CR>" command
264 count = 1; // insert only one <CR>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 }
266 }
267
268 if (cmdchar == 'R')
269 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100270 State = MODE_REPLACE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 else if (cmdchar == 'V' || cmdchar == 'v')
273 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100274 State = MODE_VREPLACE;
275 replaceState = MODE_VREPLACE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 orig_line_count = curbuf->b_ml.ml_line_count;
277 vr_lines_changed = 1;
278 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 else
Bram Moolenaar24959102022-05-07 20:01:16 +0100280 State = MODE_INSERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281
LemonBoy2bf52dd2022-04-09 18:17:34 +0100282 may_trigger_modechanged();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 stop_insert_mode = FALSE;
284
Bram Moolenaarea042672021-06-29 20:22:32 +0200285#ifdef FEAT_CONCEAL
286 // Check if the cursor line needs redrawing after changing State. If
287 // 'concealcursor' is "n" it needs to be redrawn without concealing.
288 conceal_check_cursor_line(cursor_line_was_concealed);
289#endif
290
Bram Moolenaar1f4ee192022-08-01 15:52:55 +0100291 // Need to position cursor again when on a TAB and when on a char with
292 // virtual text.
293 if (gchar_cursor() == TAB
294#ifdef FEAT_PROP_POPUP
295 || curbuf->b_has_textprop
296#endif
297 )
zeertzjq8c979602022-04-07 15:08:01 +0100298 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299
300 /*
301 * Enable langmap or IME, indicated by 'iminsert'.
302 * Note that IME may enabled/disabled without us noticing here, thus the
303 * 'iminsert' value may not reflect what is actually used. It is updated
304 * when hitting <Esc>.
305 */
306 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
Bram Moolenaar24959102022-05-07 20:01:16 +0100307 State |= MODE_LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100308#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
310#endif
311
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 clear_showcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100315 // there is no reverse replace mode
Bram Moolenaar24959102022-05-07 20:01:16 +0100316 revins_on = (State == MODE_INSERT && p_ri);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 if (revins_on)
318 undisplay_dollar();
319 revins_chars = 0;
320 revins_legal = 0;
321 revins_scol = -1;
322#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100323 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100324 {
Bram Moolenaar1d97db32022-06-04 22:15:54 +0100325 MAY_WANT_TO_LOG_THIS;
326
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100327 // Disable bracketed paste mode, we won't recognize the escape
328 // sequences.
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100329 out_str(T_BD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100331 // Disable modifyOtherKeys, keys with modifiers would cause exiting
332 // Insert mode.
Bram Moolenaar63a2e362022-11-23 20:20:18 +0000333 out_str_t_TE();
Bram Moolenaar177c9f22019-11-06 13:59:16 +0100334 }
335
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 /*
337 * Handle restarting Insert mode.
Bram Moolenaara6c07602017-03-05 21:18:27 +0100338 * Don't do this for "CTRL-O ." (repeat an insert): In that case we get
339 * here with something in the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 */
341 if (restart_edit != 0 && stuff_empty())
342 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 /*
344 * After a paste we consider text typed to be part of the insert for
345 * the pasted text. You can backspace over the pasted text too.
346 */
347 if (where_paste_started.lnum)
348 arrow_used = FALSE;
349 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 arrow_used = TRUE;
351 restart_edit = 0;
352
353 /*
354 * If the cursor was after the end-of-line before the CTRL-O and it is
355 * now at the end-of-line, put it after the end-of-line (this is not
356 * correct in very rare cases).
357 * Also do this if curswant is greater than the current virtual
358 * column. Eg after "^O$" or "^O80|".
359 */
360 validate_virtcol();
361 update_curswant();
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000362 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 || curwin->w_curswant > curwin->w_virtcol)
364 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
365 {
366 if (ptr[1] == NUL)
367 ++curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 else if (has_mbyte)
369 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000370 i = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 if (ptr[i] == NUL)
372 curwin->w_cursor.col += i;
373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000375 ins_at_eol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 }
377 else
378 arrow_used = FALSE;
379
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100380 // we are in insert mode now, don't need to start it anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 need_start_insertmode = FALSE;
382
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100383 // Need to save the line for undo before inserting the first char.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 ins_need_undo = TRUE;
385
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 where_paste_started.lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 can_cindent = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100389 // The cursor line is not in a closed fold, unless 'insertmode' is set or
390 // restarting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 if (!p_im && did_restart_edit == 0)
392 foldOpenCursor();
393#endif
394
395 /*
396 * If 'showmode' is set, show the current (insert/replace/..) mode.
397 * A warning message for changing a readonly file is given here, before
398 * actually changing anything. It's put after the mode, if any.
399 */
400 i = 0;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000401 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402 i = showmode();
403
404 if (!p_im && did_restart_edit == 0)
Bram Moolenaar21af89e2008-01-02 21:09:33 +0000405 change_warning(i == 0 ? 0 : i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406
407#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100408 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409#endif
410#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100411 do_digraph(-1); // clear digraphs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412#endif
413
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000414 /*
415 * Get the current length of the redo buffer, those characters have to be
416 * skipped if we want to get to the inserted characters.
417 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 ptr = get_inserted();
419 if (ptr == NULL)
420 new_insert_skip = 0;
421 else
422 {
423 new_insert_skip = (int)STRLEN(ptr);
424 vim_free(ptr);
425 }
426
427 old_indent = 0;
428
429 /*
430 * Main loop in Insert mode: repeat until Insert mode is left.
431 */
Bram Moolenaar2824d1e2023-02-23 20:13:04 +0000432 int did_loop = FALSE;
433 for (;; did_loop = TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 {
435#ifdef FEAT_RIGHTLEFT
436 if (!revins_legal)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100437 revins_scol = -1; // reset on illegal motions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 else
439 revins_legal = 0;
440#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100441 if (arrow_used) // don't repeat insert when arrow key used
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 count = 0;
443
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100444 if (update_Insstart_orig)
445 Insstart_orig = Insstart;
446
zeertzjqcd5dbad2022-05-04 17:51:50 +0100447 if (stop_insert_mode && !ins_compl_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100449 // ":stopinsert" used or 'insertmode' reset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 count = 0;
451 goto doESCkey;
452 }
453
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100454 // set curwin->w_curswant for next K_DOWN or K_UP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 if (!arrow_used)
456 curwin->w_set_curswant = TRUE;
457
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100458 // If there is no typeahead may check for timestamps (e.g., for when a
459 // menu invoked a shell command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 if (stuff_empty())
461 {
462 did_check_timestamps = FALSE;
463 if (need_check_timestamps)
464 check_timestamps(FALSE);
465 }
466
467 /*
468 * When emsg() was called msg_scroll will have been set.
469 */
470 msg_scroll = FALSE;
471
472#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100473 // When 'mousefocus' is set a mouse movement may have taken us to
474 // another window. "need_mouse_correct" may then be set because of an
475 // autocommand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 if (need_mouse_correct)
477 gui_mouse_correct();
478#endif
479
480#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100481 // Open fold at the cursor line, according to 'foldopen'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 if (fdo_flags & FDO_INSERT)
483 foldOpenCursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100484 // Close folds where the cursor isn't, according to 'foldclose'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 if (!char_avail())
486 foldCheckClose();
487#endif
488
Bram Moolenaarf2732452018-06-03 14:47:35 +0200489#ifdef FEAT_JOB_CHANNEL
490 if (bt_prompt(curbuf))
491 {
492 init_prompt(cmdchar_todo);
493 cmdchar_todo = NUL;
494 }
495#endif
496
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 /*
498 * If we inserted a character at the last position of the last line in
499 * the window, scroll the window one line up. This avoids an extra
500 * redraw.
501 * This is detected when the cursor column is smaller after inserting
502 * something.
503 * Don't do this when the topline changed already, it has
504 * already been adjusted (by insertchar() calling open_line())).
505 */
506 if (curbuf->b_mod_set
507 && curwin->w_p_wrap
508 && !did_backspace
509 && curwin->w_topline == old_topline
510#ifdef FEAT_DIFF
511 && curwin->w_topfill == old_topfill
512#endif
513 )
514 {
515 mincol = curwin->w_wcol;
516 validate_cursor_col();
517
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200518 if (
519#ifdef FEAT_VARTABS
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +0000520 curwin->w_wcol < mincol - tabstop_at(
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200521 get_nolist_virtcol(), curbuf->b_p_ts,
522 curbuf->b_p_vts_array)
523#else
524 (int)curwin->w_wcol < mincol - curbuf->b_p_ts
525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 && curwin->w_wrow == W_WINROW(curwin)
Bram Moolenaar375e3392019-01-31 18:26:10 +0100527 + curwin->w_height - 1 - get_scrolloff_value()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 && (curwin->w_cursor.lnum != curwin->w_topline
529#ifdef FEAT_DIFF
530 || curwin->w_topfill > 0
531#endif
532 ))
533 {
534#ifdef FEAT_DIFF
535 if (curwin->w_topfill > 0)
536 --curwin->w_topfill;
537 else
538#endif
539#ifdef FEAT_FOLDING
540 if (hasFolding(curwin->w_topline, NULL, &old_topline))
541 set_topline(curwin, old_topline + 1);
542 else
543#endif
544 set_topline(curwin, curwin->w_topline + 1);
545 }
546 }
547
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100548 // May need to adjust w_topline to show the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 update_topline();
550
551 did_backspace = FALSE;
552
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100553 validate_cursor(); // may set must_redraw
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
555 /*
556 * Redraw the display when no characters are waiting.
557 * Also shows mode, ruler and positions cursor.
558 */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000559 ins_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 if (curwin->w_p_scb)
562 do_check_scrollbind(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563
Bram Moolenaar860cae12010-06-05 23:22:07 +0200564 if (curwin->w_p_crb)
565 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 update_curswant();
567 old_topline = curwin->w_topline;
568#ifdef FEAT_DIFF
569 old_topfill = curwin->w_topfill;
570#endif
571
572#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100573 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574#endif
Bram Moolenaar733a69b2022-12-01 12:03:47 +0000575 // May request the keyboard protocol state now.
576 may_send_t_RK();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577
578 /*
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100579 * Get a character for Insert mode. Ignore K_IGNORE and K_NOP.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 */
Bram Moolenaar6c5bdb72015-03-13 13:24:23 +0100581 if (c != K_CURSORHOLD)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100582 lastc = c; // remember the previous char for CTRL-D
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200583
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100584 // After using CTRL-G U the next cursor key will not break undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200585 if (dont_sync_undo == MAYBE)
586 dont_sync_undo = TRUE;
587 else
588 dont_sync_undo = FALSE;
Bram Moolenaarec2da362017-01-21 20:04:22 +0100589 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100590 // Got here from normal mode when bracketed paste started.
Bram Moolenaarec2da362017-01-21 20:04:22 +0100591 c = K_PS;
Bram Moolenaar3ddb1182023-02-23 22:14:37 +0000592 else if (cmdchar == 'v' && did_loop && count <= 0)
Bram Moolenaar2824d1e2023-02-23 20:13:04 +0000593 c = ESC; // in case the stuffed Esc was consumed already
Bram Moolenaarec2da362017-01-21 20:04:22 +0100594 else
595 do
596 {
597 c = safe_vgetc();
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200598
Bram Moolenaar81035272021-12-16 18:02:07 +0000599 if (stop_insert_mode
600#ifdef FEAT_TERMINAL
601 || (c == K_IGNORE && term_use_loop())
602#endif
603 )
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200604 {
Bram Moolenaar81035272021-12-16 18:02:07 +0000605 // Insert mode ended, possibly from a callback, or a timer
606 // must have opened a terminal window.
Bram Moolenaard0e1b712020-09-27 20:13:03 +0200607 if (c != K_IGNORE && c != K_NOP)
608 vungetc(c);
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200609 count = 0;
610 nomove = TRUE;
Bram Moolenaard0e1b712020-09-27 20:13:03 +0200611 ins_compl_prep(ESC);
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200612 goto doESCkey;
613 }
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100614 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100616 // Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V.
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000617 did_cursorhold = TRUE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000618
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619#ifdef FEAT_RIGHTLEFT
620 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100621 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623
Bram Moolenaard0fb9072021-12-09 11:57:22 +0000624 // If the window was made so small that nothing shows, make it at least
625 // one line and one column when typing.
626 if (KeyTyped && !KeyStuffed)
627 win_ensure_size();
628
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000629 /*
630 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000631 * and the cursor is still in the completed word. Only when there is
632 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000633 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100634 if (ins_compl_active()
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000635 && pum_wanted()
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100636 && curwin->w_cursor.col >= ins_compl_col()
637 && ins_compl_has_shown_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000638 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100639 // BS: Delete one character from "compl_leader".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000640 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100641 && curwin->w_cursor.col > ins_compl_col()
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000642 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000643 continue;
644
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100645 // When no match was selected or it was edited.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100646 if (!ins_compl_used_match())
Bram Moolenaara6557602006-02-04 22:43:20 +0000647 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100648 // CTRL-L: Add one character from the current match to
649 // "compl_leader". Except when at the original match and
650 // there is nothing to add, CTRL-L works like CTRL-P then.
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000651 if (c == Ctrl_L
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100652 && (!ctrl_x_mode_line_or_eval()
653 || ins_compl_long_shown_match()))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000654 {
655 ins_compl_addfrommatch();
656 continue;
657 }
658
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100659 // A non-white character that fits in with the current
660 // completion: Add to "compl_leader".
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000661 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000662 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100663#if defined(FEAT_EVAL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100664 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100665 char_u *str = do_insert_char_pre(c);
666 char_u *p;
667
668 if (str != NULL)
669 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100670 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100671 ins_compl_addleader(PTR2CHAR(p));
672 vim_free(str);
673 }
674 else
675#endif
676 ins_compl_addleader(c);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000677 continue;
678 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000679
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100680 // Pressing CTRL-Y selects the current match. When
681 // ins_compl_enter_selects() is set the Enter key does the
682 // same.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100683 if ((c == Ctrl_Y || (ins_compl_enter_selects()
Bram Moolenaarcbd3bd62016-10-17 20:47:02 +0200684 && (c == CAR || c == K_KENTER || c == NL)))
685 && stop_arrow() == OK)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000686 {
687 ins_compl_delete();
Bram Moolenaar472e8592016-10-15 17:06:47 +0200688 ins_compl_insert(FALSE);
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000689 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000690 }
691 }
692
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100693 // Prepare for or stop CTRL-X mode. This doesn't do completion, but
694 // it does fix up the text when finishing completion.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100695 ins_compl_init_get_longest();
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000696 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000697 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100699 // CTRL-\ CTRL-N goes to Normal mode,
700 // CTRL-\ CTRL-G goes to mode selected with 'insertmode',
701 // CTRL-\ CTRL-O is like CTRL-O but without moving the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 if (c == Ctrl_BSL)
703 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100704 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +0000705 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 ++no_mapping;
707 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000708 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 --no_mapping;
710 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000711 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100713 // it's something else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 vungetc(c);
715 c = Ctrl_BSL;
716 }
717 else if (c == Ctrl_G && p_im)
718 continue;
719 else
720 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000721 if (c == Ctrl_O)
722 {
Bram Moolenaar2824d1e2023-02-23 20:13:04 +0000723 ins_ctrl_o(cmdchar);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100724 ins_at_eol = FALSE; // cursor keeps its column
Bram Moolenaar488c6512005-08-11 20:09:58 +0000725 nomove = TRUE;
726 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 count = 0;
728 goto doESCkey;
729 }
730 }
731
732#ifdef FEAT_DIGRAPHS
733 c = do_digraph(c);
734#endif
735
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100736 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode_cmdline())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 if (c == Ctrl_V || c == Ctrl_Q)
739 {
740 ins_ctrl_v();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100741 c = Ctrl_V; // pretend CTRL-V is last typed character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 continue;
743 }
744
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200745 if (cindent_on() && ctrl_x_mode_none())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100747 // A key name preceded by a bang means this key is not to be
748 // inserted. Skip ahead to the re-indenting below.
749 // A key name preceded by a star means that indenting has to be
750 // done before inserting the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 line_is_white = inindent(0);
752 if (in_cinkeys(c, '!', line_is_white))
753 goto force_cindent;
754 if (can_cindent && in_cinkeys(c, '*', line_is_white)
755 && stop_arrow() == OK)
756 do_c_expr_indent();
757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758
759#ifdef FEAT_RIGHTLEFT
760 if (curwin->w_p_rl)
761 switch (c)
762 {
763 case K_LEFT: c = K_RIGHT; break;
764 case K_S_LEFT: c = K_S_RIGHT; break;
765 case K_C_LEFT: c = K_C_RIGHT; break;
766 case K_RIGHT: c = K_LEFT; break;
767 case K_S_RIGHT: c = K_S_LEFT; break;
768 case K_C_RIGHT: c = K_C_LEFT; break;
769 }
770#endif
771
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 /*
773 * If 'keymodel' contains "startsel", may start selection. If it
774 * does, a CTRL-O and c will be stuffed, we need to get these
775 * characters.
776 */
777 if (ins_start_select(c))
778 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779
780 /*
781 * The big switch to handle a character in insert mode.
782 */
783 switch (c)
784 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100785 case ESC: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 if (echeck_abbr(ESC + ABBR_OFF))
787 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100788 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100790 case Ctrl_C: // End input mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 if (c == Ctrl_C && cmdwin_type != 0)
792 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100793 // Close the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 cmdwin_result = K_IGNORE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100795 got_int = FALSE; // don't stop executing autocommands et al.
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000796 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 goto doESCkey;
798 }
Bram Moolenaar0e5979a2018-06-17 19:36:33 +0200799#ifdef FEAT_JOB_CHANNEL
800 if (c == Ctrl_C && bt_prompt(curbuf))
801 {
802 if (invoke_prompt_interrupt())
803 {
804 if (!bt_prompt(curbuf))
805 // buffer changed to a non-prompt buffer, get out of
806 // Insert mode
807 goto doESCkey;
808 break;
809 }
810 }
811#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812
813#ifdef UNIX
814do_intr:
815#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100816 // when 'insertmode' set, and not halfway a mapping, don't leave
817 // Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 if (goto_im())
819 {
820 if (got_int)
821 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100822 (void)vgetc(); // flush all buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 got_int = FALSE;
824 }
825 else
Bram Moolenaar165bc692015-07-21 17:53:25 +0200826 vim_beep(BO_IM);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 break;
828 }
829doESCkey:
830 /*
831 * This is the ONLY return from edit()!
832 */
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100833 // Always update o_lnum, so that a "CTRL-O ." that adds a line
834 // still puts the cursor back after the inserted text.
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000835 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 o_lnum = curwin->w_cursor.lnum;
837
Bram Moolenaar488c6512005-08-11 20:09:58 +0000838 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +0000839 {
Bram Moolenaar4dbc2622018-11-02 11:59:15 +0100840 // When CTRL-C was typed got_int will be set, with the result
841 // that the autocommands won't be executed. When mapped got_int
842 // is not set, but let's keep the behavior the same.
843 if (cmdchar != 'r' && cmdchar != 'v' && c != Ctrl_C)
Bram Moolenaar9fa95062018-08-08 22:08:32 +0200844 ins_apply_autocmds(EVENT_INSERTLEAVE);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +0000845 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000847 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 continue;
849
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100850 case Ctrl_Z: // suspend when 'insertmode' set
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000851 if (!p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100852 goto normalchar; // insert CTRL-Z as normal char
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +0100853 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar74a47162017-02-26 19:09:05 +0100854#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100855 ui_cursor_shape(); // may need to update cursor shape
Bram Moolenaar74a47162017-02-26 19:09:05 +0100856#endif
857 continue;
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000858
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100859 case Ctrl_O: // execute one command
Bram Moolenaare344bea2005-09-01 20:46:49 +0000860#ifdef FEAT_COMPL_FUNC
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100861 if (ctrl_x_mode_omni())
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000862 goto docomplete;
863#endif
864 if (echeck_abbr(Ctrl_O + ABBR_OFF))
865 break;
Bram Moolenaar2824d1e2023-02-23 20:13:04 +0000866 ins_ctrl_o(cmdchar);
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000867
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100868 // don't move the cursor left when 'virtualedit' has "onemore".
Gary Johnson53ba05b2021-07-26 22:19:10 +0200869 if (get_ve_flags() & VE_ONEMORE)
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000870 {
871 ins_at_eol = FALSE;
872 nomove = TRUE;
873 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000874 count = 0;
875 goto doESCkey;
876
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100877 case K_INS: // toggle insert/replace mode
Bram Moolenaar572cb562005-08-05 21:35:02 +0000878 case K_KINS:
879 ins_insert(replaceState);
880 break;
881
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100882 case K_SELECT: // end of Select mode mapping - ignore
Bram Moolenaar572cb562005-08-05 21:35:02 +0000883 break;
884
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100885 case K_HELP: // Help key works like <ESC> <Help>
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000886 case K_F1:
887 case K_XF1:
888 stuffcharReadbuff(K_HELP);
889 if (p_im)
890 need_start_insertmode = TRUE;
891 goto doESCkey;
892
893#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100894 case K_F21: // NetBeans command
895 ++no_mapping; // don't map the next key hits
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000896 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000897 --no_mapping;
898 netbeans_keycommand(i);
899 break;
900#endif
901
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100902 case K_ZERO: // Insert the previously inserted text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 case NUL:
904 case Ctrl_A:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100905 // For ^@ the trailing ESC will end the insert, unless there is an
906 // error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
908 && c != Ctrl_A && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100909 goto doESCkey; // quit insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 inserted_space = FALSE;
911 break;
912
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100913 case Ctrl_R: // insert the contents of a register
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 ins_reg();
915 auto_format(FALSE, TRUE);
916 inserted_space = FALSE;
917 break;
918
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100919 case Ctrl_G: // commands starting with CTRL-G
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 ins_ctrl_g();
921 break;
922
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100923 case Ctrl_HAT: // switch input mode and/or langmap
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000924 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 break;
926
927#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100928 case Ctrl__: // switch between languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 if (!p_ari)
930 goto normalchar;
931 ins_ctrl_();
932 break;
933#endif
934
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100935 case Ctrl_D: // Make indent one shiftwidth smaller.
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200936#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100937 if (ctrl_x_mode_path_defines())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 goto docomplete;
939#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100940 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100942 case Ctrl_T: // Make indent one shiftwidth greater.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100943 if (c == Ctrl_T && ctrl_x_mode_thesaurus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000945 if (has_compl_option(FALSE))
946 goto docomplete;
947 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200949
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 ins_shift(c, lastc);
951 auto_format(FALSE, TRUE);
952 inserted_space = FALSE;
953 break;
954
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100955 case K_DEL: // delete character under the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 case K_KDEL:
957 ins_del();
958 auto_format(FALSE, TRUE);
959 break;
960
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100961 case K_BS: // delete character before the cursor
Christian Brabandtdfbdadc2022-05-05 20:46:47 +0100962 case K_S_BS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 case Ctrl_H:
964 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
965 auto_format(FALSE, TRUE);
966 break;
967
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100968 case Ctrl_W: // delete word before the cursor
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200969#ifdef FEAT_JOB_CHANNEL
970 if (bt_prompt(curbuf) && (mod_mask & MOD_MASK_SHIFT) == 0)
971 {
972 // In a prompt window CTRL-W is used for window commands.
973 // Use Shift-CTRL-W to delete a word.
974 stuffcharReadbuff(Ctrl_W);
Bram Moolenaar942b4542018-06-17 16:23:34 +0200975 restart_edit = 'A';
Bram Moolenaar6d41c782018-06-06 09:11:12 +0200976 nomove = TRUE;
977 count = 0;
978 goto doESCkey;
979 }
980#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
982 auto_format(FALSE, TRUE);
983 break;
984
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100985 case Ctrl_U: // delete all inserted text in current line
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000986# ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100987 // CTRL-X CTRL-U completes with 'completefunc'.
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100988 if (ctrl_x_mode_function())
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000989 goto docomplete;
990# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
992 auto_format(FALSE, TRUE);
993 inserted_space = FALSE;
994 break;
995
Bram Moolenaar5d18efe2019-12-01 21:11:22 +0100996 case K_LEFTMOUSE: // mouse keys
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 case K_LEFTMOUSE_NM:
998 case K_LEFTDRAG:
999 case K_LEFTRELEASE:
1000 case K_LEFTRELEASE_NM:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001001 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 case K_MIDDLEMOUSE:
1003 case K_MIDDLEDRAG:
1004 case K_MIDDLERELEASE:
1005 case K_RIGHTMOUSE:
1006 case K_RIGHTDRAG:
1007 case K_RIGHTRELEASE:
1008 case K_X1MOUSE:
1009 case K_X1DRAG:
1010 case K_X1RELEASE:
1011 case K_X2MOUSE:
1012 case K_X2DRAG:
1013 case K_X2RELEASE:
1014 ins_mouse(c);
1015 break;
1016
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001017 case K_MOUSEDOWN: // Default action for scroll wheel up: scroll up
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001018 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 break;
1020
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001021 case K_MOUSEUP: // Default action for scroll wheel down: scroll down
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001022 ins_mousescroll(MSCR_UP);
1023 break;
1024
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001025 case K_MOUSELEFT: // Scroll wheel left
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001026 ins_mousescroll(MSCR_LEFT);
1027 break;
1028
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001029 case K_MOUSERIGHT: // Scroll wheel right
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001030 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 break;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001032
Bram Moolenaarec2da362017-01-21 20:04:22 +01001033 case K_PS:
1034 bracketed_paste(PASTE_INSERT, FALSE, NULL);
1035 if (cmdchar == K_PS)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001036 // invoked from normal mode, bail out
Bram Moolenaarec2da362017-01-21 20:04:22 +01001037 goto doESCkey;
1038 break;
1039 case K_PE:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001040 // Got K_PE without K_PS, ignore.
Bram Moolenaarec2da362017-01-21 20:04:22 +01001041 break;
1042
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001043#ifdef FEAT_GUI_TABLINE
1044 case K_TABLINE:
1045 case K_TABMENU:
1046 ins_tabline(c);
1047 break;
1048#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001050 case K_IGNORE: // Something mapped to nothing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 break;
1052
Bram Moolenaare32c3c42022-01-15 18:26:04 +00001053 case K_COMMAND: // <Cmd>command<CR>
1054 case K_SCRIPT_COMMAND: // <ScriptCmd>command<CR>
Bram Moolenaar3f8f8272022-12-08 21:49:35 +00001055 {
1056 do_cmdkey_command(c, 0);
1057
Bram Moolenaare41decc2020-11-14 21:34:59 +01001058#ifdef FEAT_TERMINAL
Bram Moolenaar3f8f8272022-12-08 21:49:35 +00001059 if (term_use_loop())
1060 // Started a terminal that gets the input, exit Insert mode.
1061 goto doESCkey;
Bram Moolenaare41decc2020-11-14 21:34:59 +01001062#endif
Bram Moolenaar3f8f8272022-12-08 21:49:35 +00001063 if (curbuf->b_u_synced)
1064 // The command caused undo to be synced. Need to save the
1065 // line for undo before inserting the next char.
1066 ins_need_undo = TRUE;
1067 }
Bram Moolenaar957cf672020-11-12 14:21:06 +01001068 break;
1069
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001070 case K_CURSORHOLD: // Didn't type something for a while.
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001071 ins_apply_autocmds(EVENT_CURSORHOLDI);
Bram Moolenaar754b5602006-02-09 23:53:20 +00001072 did_cursorhold = TRUE;
Bram Moolenaar5a9357d2021-10-03 16:22:05 +01001073 // If CTRL-G U was used apply it to the next typed key.
1074 if (dont_sync_undo == TRUE)
1075 dont_sync_undo = MAYBE;
Bram Moolenaar754b5602006-02-09 23:53:20 +00001076 break;
Bram Moolenaar754b5602006-02-09 23:53:20 +00001077
Bram Moolenaar4f974752019-02-17 17:44:42 +01001078#ifdef FEAT_GUI_MSWIN
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001079 // On MS-Windows ignore <M-F4>, we get it when closing the window
1080 // was cancelled.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001081 case K_F4:
1082 if (mod_mask != MOD_MASK_ALT)
1083 goto normalchar;
1084 break;
1085#endif
1086
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087#ifdef FEAT_GUI
1088 case K_VER_SCROLLBAR:
1089 ins_scroll();
1090 break;
1091
1092 case K_HOR_SCROLLBAR:
1093 ins_horscroll();
1094 break;
1095#endif
1096
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001097 case K_HOME: // <Home>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 case K_S_HOME:
1100 case K_C_HOME:
1101 ins_home(c);
1102 break;
1103
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001104 case K_END: // <End>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 case K_S_END:
1107 case K_C_END:
1108 ins_end(c);
1109 break;
1110
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001111 case K_LEFT: // <Left>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001112 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1113 ins_s_left();
1114 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001115 ins_left();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 break;
1117
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001118 case K_S_LEFT: // <S-Left>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 case K_C_LEFT:
1120 ins_s_left();
1121 break;
1122
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001123 case K_RIGHT: // <Right>
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001124 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1125 ins_s_right();
1126 else
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01001127 ins_right();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 break;
1129
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001130 case K_S_RIGHT: // <S-Right>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 case K_C_RIGHT:
1132 ins_s_right();
1133 break;
1134
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001135 case K_UP: // <Up>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001136 if (pum_visible())
1137 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001138 if (mod_mask & MOD_MASK_SHIFT)
1139 ins_pageup();
1140 else
1141 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 break;
1143
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001144 case K_S_UP: // <S-Up>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 case K_PAGEUP:
1146 case K_KPAGEUP:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001147 if (pum_visible())
1148 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 ins_pageup();
1150 break;
1151
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001152 case K_DOWN: // <Down>
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001153 if (pum_visible())
1154 goto docomplete;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001155 if (mod_mask & MOD_MASK_SHIFT)
1156 ins_pagedown();
1157 else
1158 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 break;
1160
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001161 case K_S_DOWN: // <S-Down>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 case K_PAGEDOWN:
1163 case K_KPAGEDOWN:
Bram Moolenaare3226be2005-12-18 22:10:00 +00001164 if (pum_visible())
1165 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 ins_pagedown();
1167 break;
1168
1169#ifdef FEAT_DND
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001170 case K_DROP: // drag-n-drop event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 ins_drop();
1172 break;
1173#endif
1174
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001175 case K_S_TAB: // When not mapped, use like a normal TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 c = TAB;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001177 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001179 case TAB: // TAB or Complete patterns along path
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001180#if defined(FEAT_FIND_ID)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001181 if (ctrl_x_mode_path_patterns())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 goto docomplete;
1183#endif
1184 inserted_space = FALSE;
1185 if (ins_tab())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001186 goto normalchar; // insert TAB as a normal char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 auto_format(FALSE, TRUE);
1188 break;
1189
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001190 case K_KENTER: // <Enter>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 c = CAR;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001192 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 case CAR:
1194 case NL:
Bram Moolenaar4033c552017-09-16 20:54:51 +02001195#if defined(FEAT_QUICKFIX)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001196 // In a quickfix window a <CR> jumps to the error under the
1197 // cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 if (bt_quickfix(curbuf) && c == CAR)
1199 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001200 if (curwin->w_llist_ref == NULL) // quickfix window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001201 do_cmdline_cmd((char_u *)".cc");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001202 else // location list window
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001203 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 break;
1205 }
1206#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 if (cmdwin_type != 0)
1208 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001209 // Execute the command in the cmdline window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 cmdwin_result = CAR;
1211 goto doESCkey;
1212 }
Bram Moolenaarf2732452018-06-03 14:47:35 +02001213#ifdef FEAT_JOB_CHANNEL
1214 if (bt_prompt(curbuf))
1215 {
Bram Moolenaarf2732452018-06-03 14:47:35 +02001216 invoke_prompt_callback();
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02001217 if (!bt_prompt(curbuf))
1218 // buffer changed to a non-prompt buffer, get out of
1219 // Insert mode
Bram Moolenaarf2732452018-06-03 14:47:35 +02001220 goto doESCkey;
1221 break;
1222 }
1223#endif
Bram Moolenaar24a2d722018-04-24 19:36:43 +02001224 if (ins_eol(c) == FAIL && !p_im)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001225 goto doESCkey; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 auto_format(FALSE, FALSE);
1227 inserted_space = FALSE;
1228 break;
1229
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001230 case Ctrl_K: // digraph or keyword completion
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001231 if (ctrl_x_mode_dictionary())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001233 if (has_compl_option(TRUE))
1234 goto docomplete;
1235 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001237#ifdef FEAT_DIGRAPHS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 c = ins_digraph();
1239 if (c == NUL)
1240 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001241#endif
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001242 goto normalchar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001244 case Ctrl_X: // Enter CTRL-X mode
Bram Moolenaar572cb562005-08-05 21:35:02 +00001245 ins_ctrl_x();
1246 break;
1247
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001248 case Ctrl_RSB: // Tag name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001249 if (!ctrl_x_mode_tags())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 goto normalchar;
1251 goto docomplete;
1252
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001253 case Ctrl_F: // File name completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001254 if (!ctrl_x_mode_files())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 goto normalchar;
1256 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001257
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001258 case 's': // Spelling completion after ^X
Bram Moolenaar488c6512005-08-11 20:09:58 +00001259 case Ctrl_S:
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001260 if (!ctrl_x_mode_spell())
Bram Moolenaar488c6512005-08-11 20:09:58 +00001261 goto normalchar;
1262 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001264 case Ctrl_L: // Whole line completion after ^X
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001265 if (!ctrl_x_mode_whole_line())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001267 // CTRL-L with 'insertmode' set: Leave Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 if (p_im)
1269 {
1270 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1271 break;
1272 goto doESCkey;
1273 }
1274 goto normalchar;
1275 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001276 // FALLTHROUGH
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001278 case Ctrl_P: // Do previous/next pattern completion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 case Ctrl_N:
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001280 // if 'complete' is empty then plain ^P is no longer special,
1281 // but it is under other ^X modes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 if (*curbuf->b_p_cpt == NUL
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001283 && (ctrl_x_mode_normal() || ctrl_x_mode_whole_line())
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00001284 && !compl_status_local())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 goto normalchar;
1286
1287docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001288 compl_busy = TRUE;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001289#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001290 disable_fold_update++; // don't redraw folds here
Bram Moolenaara6c07602017-03-05 21:18:27 +01001291#endif
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01001292 if (ins_complete(c, TRUE) == FAIL)
Yegappan Lakshmanand94fbfc2022-01-04 17:01:44 +00001293 compl_status_clear();
Bram Moolenaara6c07602017-03-05 21:18:27 +01001294#ifdef FEAT_FOLDING
Bram Moolenaar429fcfb2016-04-14 16:22:04 +02001295 disable_fold_update--;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001296#endif
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001297 compl_busy = FALSE;
Bram Moolenaarde5cf282022-05-14 11:52:23 +01001298 can_si = may_do_si(); // allow smartindenting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001301 case Ctrl_Y: // copy from previous line or scroll down
1302 case Ctrl_E: // copy from next line or scroll up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001303 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 break;
1305
1306 default:
1307#ifdef UNIX
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001308 if (c == intr_char) // special interrupt char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 goto do_intr;
1310#endif
1311
Bram Moolenaare659c952011-05-19 17:25:41 +02001312normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001314 * Insert a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001316#if defined(FEAT_EVAL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001317 if (!p_paste)
1318 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001319 // Trigger InsertCharPre.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001320 char_u *str = do_insert_char_pre(c);
1321 char_u *p;
1322
1323 if (str != NULL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001324 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001325 if (*str != NUL && stop_arrow() != FAIL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001326 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001327 // Insert the new value of v:char literally.
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001328 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaare659c952011-05-19 17:25:41 +02001329 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001330 c = PTR2CHAR(p);
1331 if (c == CAR || c == K_KENTER || c == NL)
1332 ins_eol(c);
1333 else
1334 ins_char(c);
Bram Moolenaare659c952011-05-19 17:25:41 +02001335 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001336 AppendToRedobuffLit(str, -1);
Bram Moolenaare659c952011-05-19 17:25:41 +02001337 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001338 vim_free(str);
1339 c = NUL;
Bram Moolenaare659c952011-05-19 17:25:41 +02001340 }
1341
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001342 // If the new value is already inserted or an empty string
1343 // then don't insert any character.
Bram Moolenaare659c952011-05-19 17:25:41 +02001344 if (c == NUL)
1345 break;
1346 }
1347#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001348 // Try to perform smart-indenting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 ins_try_si(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350
1351 if (c == ' ')
1352 {
1353 inserted_space = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 if (inindent(0))
1355 can_cindent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 if (Insstart_blank_vcol == MAXCOL
1357 && curwin->w_cursor.lnum == Insstart.lnum)
1358 Insstart_blank_vcol = get_nolist_virtcol();
1359 }
1360
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001361 // Insert a normal character and check for abbreviations on a
1362 // special character. Let CTRL-] expand abbreviations without
1363 // inserting it.
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02001364 if (vim_iswordc(c) || (!echeck_abbr(
Bram Moolenaar13505972019-01-24 15:04:48 +01001365 // Add ABBR_OFF for characters above 0x100, this is
1366 // what check_abbr() expects.
1367 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
1368 && c != Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 {
1370 insert_special(c, FALSE, FALSE);
1371#ifdef FEAT_RIGHTLEFT
1372 revins_legal++;
1373 revins_chars++;
1374#endif
1375 }
1376
1377 auto_format(FALSE, TRUE);
1378
1379#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001380 // When inserting a character the cursor line must never be in a
1381 // closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 foldOpenCursor();
1383#endif
1384 break;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001385 } // end of switch (c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001387 // If typed something may trigger CursorHoldI again.
Bram Moolenaar245c4102016-04-20 17:37:41 +02001388 if (c != K_CURSORHOLD
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001389#ifdef FEAT_COMPL_FUNC
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001390 // but not in CTRL-X mode, a script can't restore the state
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001391 && ctrl_x_mode_normal()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001392#endif
Bram Moolenaar245c4102016-04-20 17:37:41 +02001393 )
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001394 did_cursorhold = FALSE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001395
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001396 // If the cursor was moved we didn't just insert a space
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 if (arrow_used)
1398 inserted_space = FALSE;
1399
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001400 if (can_cindent && cindent_on() && ctrl_x_mode_normal())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 {
1402force_cindent:
1403 /*
1404 * Indent now if a key was typed that is in 'cinkeys'.
1405 */
1406 if (in_cinkeys(c, ' ', line_is_white))
1407 {
1408 if (stop_arrow() == OK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001409 // re-indent the current line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 do_c_expr_indent();
1411 }
1412 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001414 } // for (;;)
1415 // NOTREACHED
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416}
1417
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001418 int
1419ins_need_undo_get(void)
1420{
1421 return ins_need_undo;
1422}
1423
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424/*
1425 * Redraw for Insert mode.
1426 * This is postponed until getting the next character to make '$' in the 'cpo'
1427 * option work correctly.
1428 * Only redraw when there are no characters available. This speeds up
1429 * inserting sequences of characters (e.g., for CTRL-R).
1430 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001431 void
Bram Moolenaar3397f742019-06-02 18:40:06 +02001432ins_redraw(int ready) // not busy with something
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001434#ifdef FEAT_CONCEAL
1435 linenr_T conceal_old_cursor_line = 0;
1436 linenr_T conceal_new_cursor_line = 0;
1437 int conceal_update_lines = FALSE;
1438#endif
1439
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001440 if (char_avail())
1441 return;
1442
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001443 // Trigger CursorMoved if the cursor moved. Not when the popup menu is
1444 // visible, the command might delete it.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001445 if (ready && (has_cursormovedI()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001446# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001447 || popup_visible
1448# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001449# if defined(FEAT_CONCEAL)
1450 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001451# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001452 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001453 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001454 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001455 {
1456# ifdef FEAT_SYN_HL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001457 // Need to update the screen first, to make sure syntax
1458 // highlighting is correct after making a change (e.g., inserting
1459 // a "(". The autocommand may also require a redraw, so it's done
1460 // again below, unfortunately.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001461 if (syntax_present(curwin) && must_redraw)
1462 update_screen(0);
1463# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001464 if (has_cursormovedI())
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001465 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001466 // Make sure curswant is correct, an autocommand may call
1467 // getcurpos().
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001468 update_curswant();
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001469 ins_apply_autocmds(EVENT_CURSORMOVEDI);
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001470 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001471#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02001472 if (popup_visible)
1473 popup_check_cursor_pos();
1474#endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001475# ifdef FEAT_CONCEAL
1476 if (curwin->w_p_cole > 0)
1477 {
1478 conceal_old_cursor_line = last_cursormoved.lnum;
1479 conceal_new_cursor_line = curwin->w_cursor.lnum;
1480 conceal_update_lines = TRUE;
1481 }
1482# endif
1483 last_cursormoved = curwin->w_cursor;
1484 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001485
Christian Brabandtdb3b4462021-10-16 11:58:55 +01001486 // Trigger TextChangedI if b_changedtick_i differs.
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001487 if (ready && has_textchangedI()
Christian Brabandtdb3b4462021-10-16 11:58:55 +01001488 && curbuf->b_last_changedtick_i != CHANGEDTICK(curbuf)
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001489 && !pum_visible())
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001490 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001491 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001492 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar91d2e782018-08-07 19:05:01 +02001493
Bram Moolenaar733a69b2022-12-01 12:03:47 +00001494 // Save and restore curwin and curbuf, in case the autocmd changes
1495 // them.
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001496 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001497 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001498 aucmd_restbuf(&aco);
Christian Brabandtdb3b4462021-10-16 11:58:55 +01001499 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001500 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1501 u_save(curwin->w_cursor.lnum,
1502 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 }
Bram Moolenaar5a093432018-02-10 18:15:19 +01001504
Christian Brabandtdb3b4462021-10-16 11:58:55 +01001505 // Trigger TextChangedP if b_changedtick_pum differs. When the popupmenu
1506 // closes TextChangedI will need to trigger for backwards compatibility,
1507 // thus use different b_last_changedtick* variables.
Bram Moolenaar5a093432018-02-10 18:15:19 +01001508 if (ready && has_textchangedP()
1509 && curbuf->b_last_changedtick_pum != CHANGEDTICK(curbuf)
1510 && pum_visible())
1511 {
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001512 aco_save_T aco;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001513 varnumber_T tick = CHANGEDTICK(curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001514
Bram Moolenaar733a69b2022-12-01 12:03:47 +00001515 // Save and restore curwin and curbuf, in case the autocmd changes
1516 // them.
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001517 aucmd_prepbuf(&aco, curbuf);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001518 apply_autocmds(EVENT_TEXTCHANGEDP, NULL, NULL, FALSE, curbuf);
Bram Moolenaar6ba3ec12018-06-16 15:32:38 +02001519 aucmd_restbuf(&aco);
Bram Moolenaar5a093432018-02-10 18:15:19 +01001520 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
Bram Moolenaar9fa95062018-08-08 22:08:32 +02001521 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
1522 u_save(curwin->w_cursor.lnum,
1523 (linenr_T)(curwin->w_cursor.lnum + 1));
Bram Moolenaar5a093432018-02-10 18:15:19 +01001524 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001525
LemonBoy09371822022-04-08 15:18:45 +01001526 if (ready)
Bram Moolenaar35fc61c2022-11-22 12:40:50 +00001527 may_trigger_win_scrolled_resized();
LemonBoy09371822022-04-08 15:18:45 +01001528
Bram Moolenaar8aeec402019-09-15 23:02:04 +02001529 // Trigger SafeState if nothing is pending.
1530 may_trigger_safestate(ready
1531 && !ins_compl_active()
1532 && !pum_visible());
1533
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001534#if defined(FEAT_CONCEAL)
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001535 if ((conceal_update_lines
1536 && (conceal_old_cursor_line != conceal_new_cursor_line
1537 || conceal_cursor_line(curwin)))
1538 || need_cursor_line_redraw)
1539 {
1540 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001541 redrawWinline(curwin, conceal_old_cursor_line);
1542 redrawWinline(curwin, conceal_new_cursor_line == 0
1543 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001544 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001545 need_cursor_line_redraw = FALSE;
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001546 }
Bram Moolenaar535d5b62019-01-11 20:45:36 +01001547#endif
1548 if (must_redraw)
1549 update_screen(0);
1550 else if (clear_cmdline || redraw_cmdline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001551 showmode(); // clear cmdline and show mode
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001552 showruler(FALSE);
1553 setcursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001554 emsg_on_display = FALSE; // may remove error message now
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555}
1556
1557/*
1558 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1559 */
1560 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001561ins_ctrl_v(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562{
1563 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001564 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001566 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00001567 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
1569 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001570 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001572 did_putchar = TRUE;
1573 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001574 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 add_to_showcmd_c(Ctrl_V);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577
Bram Moolenaar0684e362020-12-03 19:54:42 +01001578 // Do not change any modifyOtherKeys ESC sequence to a normal key for
1579 // CTRL-SHIFT-V.
1580 c = get_literal(mod_mask & MOD_MASK_SHIFT);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001581 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001582 // when the line fits in 'columns' the '^' is at the start of the next
1583 // line and will not removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001584 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 clear_showcmd();
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001586
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 insert_special(c, FALSE, TRUE);
1588#ifdef FEAT_RIGHTLEFT
1589 revins_chars++;
1590 revins_legal++;
1591#endif
1592}
1593
1594/*
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001595 * After getting an ESC or CSI for a literal key: If the typeahead buffer
1596 * contains a modifyOtherKeys sequence then decode it and return the result.
1597 * Otherwise return "c".
1598 * Note that this doesn't wait for characters, they must be in the typeahead
1599 * buffer already.
1600 */
Yegappan Lakshmanan8ee52af2021-08-09 19:59:06 +02001601 static int
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001602decodeModifyOtherKeys(int c)
1603{
1604 char_u *p = typebuf.tb_buf + typebuf.tb_off;
1605 int idx;
1606 int form = 0;
1607 int argidx = 0;
1608 int arg[2] = {0, 0};
1609
1610 // Recognize:
1611 // form 0: {lead}{key};{modifier}u
1612 // form 1: {lead}27;{modifier};{key}~
Bram Moolenaar82aa6e02021-01-17 22:04:02 +01001613 if (typebuf.tb_len >= 4 && (c == CSI || (c == ESC && *p == '[')))
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001614 {
1615 idx = (*p == '[');
1616 if (p[idx] == '2' && p[idx + 1] == '7' && p[idx + 2] == ';')
1617 {
1618 form = 1;
1619 idx += 3;
1620 }
1621 while (idx < typebuf.tb_len && argidx < 2)
1622 {
1623 if (p[idx] == ';')
1624 ++argidx;
1625 else if (VIM_ISDIGIT(p[idx]))
1626 arg[argidx] = arg[argidx] * 10 + (p[idx] - '0');
1627 else
1628 break;
1629 ++idx;
1630 }
1631 if (idx < typebuf.tb_len
1632 && p[idx] == (form == 1 ? '~' : 'u')
1633 && argidx == 1)
1634 {
1635 // Match, consume the code.
1636 typebuf.tb_off += idx + 1;
1637 typebuf.tb_len -= idx + 1;
Bram Moolenaare49b4bb2020-03-11 13:01:40 +01001638#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
1639 if (typebuf.tb_len == 0)
1640 typebuf_was_filled = FALSE;
1641#endif
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001642
1643 mod_mask = decode_modifiers(arg[!form]);
Bram Moolenaar975a8802020-06-06 22:36:24 +02001644 c = merge_modifyOtherKeys(arg[form], &mod_mask);
Bram Moolenaarfc4ea2a2019-11-26 19:33:22 +01001645 }
1646 }
1647
1648 return c;
1649}
1650
1651/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 * Put a character directly onto the screen. It's not stored in a buffer.
1653 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1654 */
1655static int pc_status;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001656#define PC_STATUS_UNSET 0 // pc_bytes was not set
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001657#define PC_STATUS_RIGHT 1 // right half of double-wide char
1658#define PC_STATUS_LEFT 2 // left half of double-wide char
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001659#define PC_STATUS_SET 3 // pc_bytes was filled
1660static char_u pc_bytes[MB_MAXBYTES + 1]; // saved bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661static int pc_attr;
1662static int pc_row;
1663static int pc_col;
1664
1665 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001666edit_putchar(int c, int highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667{
1668 int attr;
1669
Yegappan Lakshmanan87c1cbb2022-12-27 19:54:52 +00001670 if (ScreenLines == NULL)
1671 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672
Yegappan Lakshmanan87c1cbb2022-12-27 19:54:52 +00001673 update_topline(); // just in case w_topline isn't valid
1674 validate_cursor();
1675 if (highlight)
1676 attr = HL_ATTR(HLF_8);
1677 else
1678 attr = 0;
1679 pc_row = W_WINROW(curwin) + curwin->w_wrow;
1680 pc_col = curwin->w_wincol;
1681 pc_status = PC_STATUS_UNSET;
1682#ifdef FEAT_RIGHTLEFT
1683 if (curwin->w_p_rl)
1684 {
1685 pc_col += curwin->w_width - 1 - curwin->w_wcol;
1686 if (has_mbyte)
1687 {
1688 int fix_col = mb_fix_col(pc_col, pc_row);
1689
1690 if (fix_col != pc_col)
1691 {
1692 screen_putchar(' ', pc_row, fix_col, attr);
1693 --curwin->w_wcol;
1694 pc_status = PC_STATUS_RIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 }
Yegappan Lakshmanan87c1cbb2022-12-27 19:54:52 +00001698 else
1699#endif
1700 {
1701 pc_col += curwin->w_wcol;
1702 if (mb_lefthalve(pc_row, pc_col))
1703 pc_status = PC_STATUS_LEFT;
1704 }
1705
1706 // save the character to be able to put it back
1707 if (pc_status == PC_STATUS_UNSET)
1708 {
1709 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1710 pc_status = PC_STATUS_SET;
1711 }
1712 screen_putchar(c, pc_row, pc_col, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713}
1714
Dominique Pelle748b3082022-01-08 12:41:16 +00001715#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaarf2732452018-06-03 14:47:35 +02001716/*
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001717 * Set the insert start position for when using a prompt buffer.
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001718 */
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001719 void
1720set_insstart(linenr_T lnum, int col)
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001721{
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001722 Insstart.lnum = lnum;
1723 Insstart.col = col;
1724 Insstart_orig = Insstart;
1725 Insstart_textlen = Insstart.col;
1726 Insstart_blank_vcol = MAXCOL;
1727 arrow_used = FALSE;
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001728}
Dominique Pelle748b3082022-01-08 12:41:16 +00001729#endif
Bram Moolenaar077cc7a2020-09-04 16:35:35 +02001730
1731/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 * Undo the previous edit_putchar().
1733 */
1734 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001735edit_unputchar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736{
1737 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1738 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 if (pc_status == PC_STATUS_RIGHT)
1740 ++curwin->w_wcol;
1741 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01001742 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1745 }
1746}
1747
1748/*
Bram Moolenaarf3ef0262022-10-05 13:29:15 +01001749 * Called when "$" is in 'cpoptions': display a '$' at the end of the changed
1750 * text. Only works when cursor is in the line that changes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 */
1752 void
Bram Moolenaare98c88c2022-08-16 14:51:53 +01001753display_dollar(colnr_T col_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754{
Bram Moolenaare98c88c2022-08-16 14:51:53 +01001755 colnr_T col = col_arg < 0 ? 0 : col_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 colnr_T save_col;
1757
1758 if (!redrawing())
1759 return;
1760
1761 cursor_off();
1762 save_col = curwin->w_cursor.col;
1763 curwin->w_cursor.col = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 if (has_mbyte)
1765 {
1766 char_u *p;
1767
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001768 // If on the last byte of a multi-byte move to the first byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 p = ml_get_curline();
1770 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1771 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001772 curs_columns(FALSE); // recompute w_wrow and w_wcol
Bram Moolenaar02631462017-09-22 15:20:32 +02001773 if (curwin->w_wcol < curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 {
1775 edit_putchar('$', FALSE);
1776 dollar_vcol = curwin->w_virtcol;
1777 }
1778 curwin->w_cursor.col = save_col;
1779}
1780
1781/*
1782 * Call this function before moving the cursor from the normal insert position
1783 * in insert mode.
1784 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001785 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001786undisplay_dollar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787{
Yegappan Lakshmanan87c1cbb2022-12-27 19:54:52 +00001788 if (dollar_vcol < 0)
1789 return;
1790
1791 dollar_vcol = -1;
1792 redrawWinline(curwin, curwin->w_cursor.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793}
1794
1795/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 * Truncate the space at the end of a line. This is to be used only in an
Bram Moolenaar24959102022-05-07 20:01:16 +01001797 * insert mode. It handles fixing the replace stack for MODE_REPLACE and
1798 * MODE_VREPLACE modes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 */
1800 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001801truncate_spaces(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802{
1803 int i;
1804
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001805 // find start of trailing white space
Bram Moolenaar1c465442017-03-12 20:10:05 +01001806 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 {
1808 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001809 replace_join(0); // remove a NUL from the replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 }
1811 line[i + 1] = NUL;
1812}
1813
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814/*
Bram Moolenaar24959102022-05-07 20:01:16 +01001815 * Backspace the cursor until the given column. Handles MODE_REPLACE and
1816 * MODE_VREPLACE modes correctly. May also be used when not in insert mode at
1817 * all. Will attempt not to go before "col" even when there is a composing
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001818 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 */
1820 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001821backspace_until_column(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822{
1823 while ((int)curwin->w_cursor.col > col)
1824 {
1825 curwin->w_cursor.col--;
1826 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001827 replace_do_bs(col);
1828 else if (!del_char_after_col(col))
1829 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 }
1831}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001833/*
1834 * Like del_char(), but make sure not to go before column "limit_col".
1835 * Only matters when there are composing characters.
1836 * Return TRUE when something was deleted.
1837 */
1838 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001839del_char_after_col(int limit_col UNUSED)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001840{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001841 if (enc_utf8 && limit_col >= 0)
1842 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001843 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001844
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001845 // Make sure the cursor is at the start of a character, but
1846 // skip forward again when going too far back because of a
1847 // composing character.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001848 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00001849 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001850 {
1851 int l = utf_ptr2len(ml_get_cursor());
1852
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001853 if (l == 0) // end of line
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001854 break;
1855 curwin->w_cursor.col += l;
1856 }
1857 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
1858 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001859 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001860 }
1861 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00001862 (void)del_char(FALSE);
1863 return TRUE;
1864}
1865
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866/*
1867 * Next character is interpreted literally.
1868 * A one, two or three digit decimal number is interpreted as its byte value.
1869 * If one or two digits are entered, the next character is given to vungetc().
1870 * For Unicode a character > 255 may be returned.
Bram Moolenaar0684e362020-12-03 19:54:42 +01001871 * If "noReduceKeys" is TRUE do not change any modifyOtherKeys ESC sequence
1872 * into a normal key, return ESC.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 */
1874 int
Bram Moolenaar0684e362020-12-03 19:54:42 +01001875get_literal(int noReduceKeys)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876{
1877 int cc;
1878 int nc;
1879 int i;
1880 int hex = FALSE;
1881 int octal = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 int unicode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883
1884 if (got_int)
1885 return Ctrl_C;
1886
1887#ifdef FEAT_GUI
1888 /*
1889 * In GUI there is no point inserting the internal code for a special key.
1890 * It is more useful to insert the string "<KEY>" instead. This would
1891 * probably be useful in a text window too, but it would not be
1892 * vi-compatible (maybe there should be an option for it?) -- webb
1893 */
1894 if (gui.in_use)
zeertzjqbad8a012022-04-29 16:44:00 +01001895 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 ++allow_keys;
zeertzjqbad8a012022-04-29 16:44:00 +01001897 if (noReduceKeys)
1898 ++no_reduce_keys;
1899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900#endif
1901#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001902 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001904 ++no_mapping; // don't map the next key hits
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 cc = 0;
1906 i = 0;
1907 for (;;)
1908 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001909 nc = plain_vgetc();
Bram Moolenaar0684e362020-12-03 19:54:42 +01001910 if ((nc == ESC || nc == CSI) && !noReduceKeys)
1911 nc = decodeModifyOtherKeys(nc);
1912
zeertzjq502d8ae2022-01-24 15:27:50 +00001913 if ((mod_mask & ~MOD_MASK_SHIFT) != 0)
1914 // A character with non-Shift modifiers should not be a valid
1915 // character for i_CTRL-V_digit.
1916 break;
1917
Bram Moolenaar24959102022-05-07 20:01:16 +01001918 if ((State & MODE_CMDLINE) == 0 && MB_BYTE2LEN_CHECK(nc) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 add_to_showcmd(nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 if (nc == 'x' || nc == 'X')
1921 hex = TRUE;
1922 else if (nc == 'o' || nc == 'O')
1923 octal = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 else if (nc == 'u' || nc == 'U')
1925 unicode = nc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 else
1927 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001928 if (hex || unicode != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 {
1930 if (!vim_isxdigit(nc))
1931 break;
1932 cc = cc * 16 + hex2nr(nc);
1933 }
1934 else if (octal)
1935 {
1936 if (nc < '0' || nc > '7')
1937 break;
1938 cc = cc * 8 + nc - '0';
1939 }
1940 else
1941 {
1942 if (!VIM_ISDIGIT(nc))
1943 break;
1944 cc = cc * 10 + nc - '0';
1945 }
1946
1947 ++i;
1948 }
1949
Bram Moolenaar13505972019-01-24 15:04:48 +01001950 if (cc > 255 && unicode == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001951 cc = 255; // limit range to 0-255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 nc = 0;
1953
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001954 if (hex) // hex: up to two chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 {
1956 if (i >= 2)
1957 break;
1958 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001959 else if (unicode) // Unicode: up to four or eight chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 {
1961 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
1962 break;
1963 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001964 else if (i >= 3) // decimal or octal: up to three chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 break;
1966 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001967 if (i == 0) // no number entered
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001969 if (nc == K_ZERO) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 {
1971 cc = '\n';
1972 nc = 0;
1973 }
1974 else
1975 {
1976 cc = nc;
1977 nc = 0;
1978 }
1979 }
1980
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001981 if (cc == 0) // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00001983 if (enc_dbcs && (cc & 0xff) == 0)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01001984 cc = '?'; // don't accept an illegal DBCS char, the NUL in the
1985 // second byte will cause trouble!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986
1987 --no_mapping;
1988#ifdef FEAT_GUI
1989 if (gui.in_use)
zeertzjqbad8a012022-04-29 16:44:00 +01001990 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 --allow_keys;
zeertzjqbad8a012022-04-29 16:44:00 +01001992 if (noReduceKeys)
1993 --no_reduce_keys;
1994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995#endif
1996 if (nc)
zeertzjq502d8ae2022-01-24 15:27:50 +00001997 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 vungetc(nc);
zeertzjq502d8ae2022-01-24 15:27:50 +00001999 // A character typed with i_CTRL-V_digit cannot have modifiers.
2000 mod_mask = 0;
2001 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002002 got_int = FALSE; // CTRL-C typed after CTRL-V is not an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 return cc;
2004}
2005
2006/*
2007 * Insert character, taking care of special keys and mod_mask
2008 */
2009 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002010insert_special(
2011 int c,
2012 int allow_modmask,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002013 int ctrlv) // c was typed after CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014{
2015 char_u *p;
2016 int len;
2017
2018 /*
2019 * Special function key, translate into "<Key>". Up to the last '>' is
2020 * inserted with ins_str(), so as not to replace characters in replace
2021 * mode.
2022 * Only use mod_mask for special keys, to avoid things like <S-Space>,
2023 * unless 'allow_modmask' is TRUE.
2024 */
Bram Moolenaard0573012017-10-28 21:11:06 +02002025#ifdef MACOS_X
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002026 // Command-key never produces a normal key
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 if (mod_mask & MOD_MASK_CMD)
2028 allow_modmask = TRUE;
2029#endif
2030 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
2031 {
2032 p = get_special_key_name(c, mod_mask);
2033 len = (int)STRLEN(p);
2034 c = p[len - 1];
2035 if (len > 2)
2036 {
2037 if (stop_arrow() == FAIL)
2038 return;
2039 p[len - 1] = NUL;
2040 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00002041 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 ctrlv = FALSE;
2043 }
2044 }
2045 if (stop_arrow() == OK)
2046 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
2047}
2048
2049/*
2050 * Special characters in this context are those that need processing other
2051 * than the simple insertion that can be performed here. This includes ESC
2052 * which terminates the insert, and CR/NL which need special processing to
2053 * open up a new line. This routine tries to optimize insertions performed by
2054 * the "redo", "undo" or "put" commands, so it needs to know when it should
2055 * stop and defer processing to the "normal" mechanism.
2056 * '0' and '^' are special, because they can be followed by CTRL-D.
2057 */
Bram Moolenaar424bcae2022-01-31 14:59:41 +00002058#define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02002060/*
2061 * "flags": INSCHAR_FORMAT - force formatting
2062 * INSCHAR_CTRLV - char typed just after CTRL-V
2063 * INSCHAR_NO_FEX - don't use 'formatexpr'
2064 *
2065 * NOTE: passes the flags value straight through to internal_format() which,
2066 * beside INSCHAR_FORMAT (above), is also looking for these:
2067 * INSCHAR_DO_COM - format comments
2068 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
2069 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002071insertchar(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002072 int c, // character to insert or NUL
2073 int flags, // INSCHAR_FORMAT, etc.
2074 int second_indent) // indent for second line if >= 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 int textwidth;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 int fo_ins_blank;
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002079 int force_format = flags & INSCHAR_FORMAT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002081 textwidth = comp_textwidth(force_format);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083
2084 /*
2085 * Try to break the line in two or more pieces when:
2086 * - Always do this if we have been called to do formatting only.
2087 * - Always do this when 'formatoptions' has the 'a' flag and the line
2088 * ends in white space.
2089 * - Otherwise:
2090 * - Don't do this if inserting a blank
2091 * - Don't do this if an existing character is being replaced, unless
Bram Moolenaar24959102022-05-07 20:01:16 +01002092 * we're in MODE_VREPLACE state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 * - Do this if the cursor is not on the line where insert started
2094 * or - 'formatoptions' doesn't have 'l' or the line was not too long
2095 * before the insert.
2096 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
2097 * before 'textwidth'
2098 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002099 if (textwidth > 0
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002100 && (force_format
Bram Moolenaar1c465442017-03-12 20:10:05 +01002101 || (!VIM_ISWHITE(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 && !((State & REPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 && !(State & VREPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 && *ml_get_cursor() != NUL)
2105 && (curwin->w_cursor.lnum != Insstart.lnum
2106 || ((!has_format_option(FO_INS_LONG)
2107 || Insstart_textlen <= (colnr_T)textwidth)
2108 && (!fo_ins_blank
2109 || Insstart_blank_vcol <= (colnr_T)textwidth
2110 ))))))
2111 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002112 // Format with 'formatexpr' when it's set. Use internal formatting
2113 // when 'formatexpr' isn't set or it returns non-zero.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002114#if defined(FEAT_EVAL)
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002115 int do_internal = TRUE;
2116 colnr_T virtcol = get_nolist_virtcol()
2117 + char2cells(c != NUL ? c : gchar_cursor());
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002118
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01002119 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0
2120 && (force_format || virtcol > (colnr_T)textwidth))
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002121 {
2122 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002123 // It may be required to save for undo again, e.g. when setline()
2124 // was called.
Bram Moolenaarf3442e72006-10-10 13:49:10 +00002125 ins_need_undo = TRUE;
2126 }
2127 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00002129 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002131
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002132 if (c == NUL) // only formatting was wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 return;
2134
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002135 // Check whether this character should end a comment.
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00002136 if (did_ai && c == end_comment_pending)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 {
2138 char_u *line;
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002139 char_u lead_end[COM_MAX_LEN]; // end-comment string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 int middle_len, end_len;
2141 int i;
2142
2143 /*
2144 * Need to remove existing (middle) comment leader and insert end
2145 * comment leader. First, check what comment leader we can find.
2146 */
Bram Moolenaar81340392012-06-06 16:12:59 +02002147 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002148 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) // Just checking
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002150 // Skip middle-comment string
2151 while (*p && p[-1] != ':') // find end of middle flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 ++p;
2153 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002154 // Don't count trailing white space for middle_len
Bram Moolenaar1c465442017-03-12 20:10:05 +01002155 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 --middle_len;
2157
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002158 // Find the end-comment string
2159 while (*p && p[-1] != ':') // find end of end flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 ++p;
2161 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
2162
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002163 // Skip white space before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 i = curwin->w_cursor.col;
Bram Moolenaar1c465442017-03-12 20:10:05 +01002165 while (--i >= 0 && VIM_ISWHITE(line[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 ;
2167 i++;
2168
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002169 // Skip to before the middle leader
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 i -= middle_len;
2171
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002172 // Check some expected things before we go on
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
2174 {
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002175 // Backspace over all the stuff we want to replace
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 backspace_until_column(i);
2177
Bram Moolenaar8c96af92019-09-28 19:05:57 +02002178 // Insert the end-comment string, except for the last
2179 // character, which will get inserted as normal later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 ins_bytes_len(lead_end, end_len - 1);
2181 }
2182 }
2183 }
2184 end_comment_pending = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185
2186 did_ai = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 did_si = FALSE;
2188 can_si = FALSE;
2189 can_si_back = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190
2191 /*
2192 * If there's any pending input, grab up to INPUT_BUFLEN at once.
2193 * This speeds up normal text input considerably.
2194 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
2195 * need to re-indent at a ':', or any other character (but not what
2196 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01002197 * Don't do this when there an InsertCharPre autocommand is defined,
2198 * because we need to fire the event for every character.
Bram Moolenaar39de9522018-05-08 22:48:00 +02002199 * Do the check for InsertCharPre before the call to vpeekc() because the
2200 * InsertCharPre autocommand could change the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 */
2202#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002203 dont_scroll = FALSE; // allow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204#endif
2205
2206 if ( !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 && (!has_mbyte || (*mb_char2len)(c) == 1)
Bram Moolenaar39de9522018-05-08 22:48:00 +02002208 && !has_insertcharpre()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 && vpeekc() != NUL
2210 && !(State & REPLACE_FLAG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 && !cindent_on()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212#ifdef FEAT_RIGHTLEFT
2213 && !p_ri
2214#endif
Bram Moolenaar39de9522018-05-08 22:48:00 +02002215 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 {
2217#define INPUT_BUFLEN 100
2218 char_u buf[INPUT_BUFLEN + 1];
2219 int i;
2220 colnr_T virtcol = 0;
2221
2222 buf[0] = c;
2223 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002224 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 virtcol = get_nolist_virtcol();
2226 /*
2227 * Stop the string when:
2228 * - no more chars available
2229 * - finding a special character (command key)
2230 * - buffer is full
2231 * - running into the 'textwidth' boundary
2232 * - need to check for abbreviation: A non-word char after a word-char
2233 */
2234 while ( (c = vpeekc()) != NUL
2235 && !ISSPECIAL(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 && i < INPUT_BUFLEN
2238 && (textwidth == 0
2239 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
2240 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
2241 {
2242#ifdef FEAT_RIGHTLEFT
2243 c = vgetc();
2244 if (p_hkmap && KeyTyped)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002245 c = hkmap(c); // Hebrew mode mapping
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 buf[i++] = c;
2247#else
2248 buf[i++] = vgetc();
2249#endif
2250 }
2251
2252#ifdef FEAT_DIGRAPHS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002253 do_digraph(-1); // clear digraphs
2254 do_digraph(buf[i-1]); // may be the start of a digraph
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255#endif
2256 buf[i] = NUL;
2257 ins_str(buf);
2258 if (flags & INSCHAR_CTRLV)
2259 {
2260 redo_literal(*buf);
2261 i = 1;
2262 }
2263 else
2264 i = 0;
2265 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00002266 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 }
2268 else
2269 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002270 int cc;
2271
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
2273 {
2274 char_u buf[MB_MAXBYTES + 1];
2275
2276 (*mb_char2bytes)(c, buf);
2277 buf[cc] = NUL;
2278 ins_char_bytes(buf, cc);
2279 AppendCharToRedobuff(c);
2280 }
2281 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 {
2283 ins_char(c);
2284 if (flags & INSCHAR_CTRLV)
2285 redo_literal(c);
2286 else
2287 AppendCharToRedobuff(c);
2288 }
2289 }
2290}
2291
2292/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 * Put a character in the redo buffer, for when just after a CTRL-V.
2294 */
2295 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002296redo_literal(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297{
2298 char_u buf[10];
2299
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002300 // Only digits need special treatment. Translate them into a string of
2301 // three digits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 if (VIM_ISDIGIT(c))
2303 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002304 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 AppendToRedobuff(buf);
2306 }
2307 else
2308 AppendCharToRedobuff(c);
2309}
2310
2311/*
2312 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002313 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01002315 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002316start_arrow(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002317 pos_T *end_insert_pos) // can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318{
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002319 start_arrow_common(end_insert_pos, TRUE);
2320}
2321
2322/*
2323 * Like start_arrow() but with end_change argument.
2324 * Will prepare for redo of CTRL-G U if "end_change" is FALSE.
2325 */
2326 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002327start_arrow_with_change(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002328 pos_T *end_insert_pos, // can be NULL
2329 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002330{
2331 start_arrow_common(end_insert_pos, end_change);
2332 if (!end_change)
2333 {
2334 AppendCharToRedobuff(Ctrl_G);
2335 AppendCharToRedobuff('U');
2336 }
2337}
2338
2339 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002340start_arrow_common(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002341 pos_T *end_insert_pos, // can be NULL
2342 int end_change) // end undoable change
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02002343{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002344 if (!arrow_used && end_change) // something has been inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 {
2346 AppendToRedobuff(ESC_STR);
Bram Moolenaarf332a652013-11-04 04:20:33 +01002347 stop_insert(end_insert_pos, FALSE, FALSE);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002348 arrow_used = TRUE; // this means we stopped the current insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002350#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002351 check_spell_redraw();
2352#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353}
2354
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002355#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00002356/*
2357 * If we skipped highlighting word at cursor, do it now.
2358 * It may be skipped again, thus reset spell_redraw_lnum first.
2359 */
2360 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002361check_spell_redraw(void)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002362{
2363 if (spell_redraw_lnum != 0)
2364 {
2365 linenr_T lnum = spell_redraw_lnum;
2366
2367 spell_redraw_lnum = 0;
Bram Moolenaarae12f4b2019-01-09 20:51:04 +01002368 redrawWinline(curwin, lnum);
Bram Moolenaar217ad922005-03-20 22:37:15 +00002369 }
2370}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00002371
Bram Moolenaar217ad922005-03-20 22:37:15 +00002372#endif
2373
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374/*
2375 * stop_arrow() is called before a change is made in insert mode.
2376 * If an arrow key has been used, start a new insertion.
2377 * Returns FAIL if undo is impossible, shouldn't insert then.
2378 */
2379 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002380stop_arrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381{
2382 if (arrow_used)
2383 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002384 Insstart = curwin->w_cursor; // new insertion starts here
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002385 if (Insstart.col > Insstart_orig.col && !ins_need_undo)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002386 // Don't update the original insert position when moved to the
2387 // right, except when nothing was inserted yet.
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002388 update_Insstart_orig = FALSE;
Bram Moolenaarc9121f72022-10-14 20:09:04 +01002389 Insstart_textlen = (colnr_T)linetabsize_str(ml_get_curline());
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002390
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 if (u_save_cursor() == OK)
2392 {
2393 arrow_used = FALSE;
2394 ins_need_undo = FALSE;
2395 }
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02002396
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 ai_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 if (State & VREPLACE_FLAG)
2399 {
2400 orig_line_count = curbuf->b_ml.ml_line_count;
2401 vr_lines_changed = 1;
2402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 ResetRedobuff();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002404 AppendToRedobuff((char_u *)"1i"); // pretend we start an insertion
Bram Moolenaara9b1e742005-12-19 22:14:58 +00002405 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 }
2407 else if (ins_need_undo)
2408 {
2409 if (u_save_cursor() == OK)
2410 ins_need_undo = FALSE;
2411 }
2412
2413#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002414 // Always open fold at the cursor line when inserting something.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 foldOpenCursor();
2416#endif
2417
2418 return (arrow_used || ins_need_undo ? FAIL : OK);
2419}
2420
2421/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002422 * Do a few things to stop inserting.
2423 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
2424 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 */
2426 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002427stop_insert(
2428 pos_T *end_insert_pos,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002429 int esc, // called by ins_esc()
2430 int nomove) // <c-\><c-o>, don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002432 int cc;
2433 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434
2435 stop_redo_ins();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002436 replace_flush(); // abandon replace stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437
2438 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002439 * Save the inserted text for later redo with ^@ and CTRL-A.
2440 * Don't do it when "restart_edit" was set and nothing was inserted,
2441 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002443 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00002444 if (did_restart_edit == 0 || (ptr != NULL
2445 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00002446 {
2447 vim_free(last_insert);
2448 last_insert = ptr;
2449 last_insert_skip = new_insert_skip;
2450 }
2451 else
2452 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002454 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002456 // Auto-format now. It may seem strange to do this when stopping an
2457 // insertion (or moving the cursor), but it's required when appending
2458 // a line and having it end in a space. But only do it when something
2459 // was actually inserted, otherwise undo won't work.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002460 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002462 pos_T tpos = curwin->w_cursor;
2463
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002464 // When the cursor is at the end of the line after a space the
2465 // formatting will move it to the following word. Avoid that by
2466 // moving the cursor onto the space.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 cc = 'x';
2468 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
2469 {
2470 dec_cursor();
2471 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002472 if (!VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002473 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 }
2475
2476 auto_format(TRUE, FALSE);
2477
Bram Moolenaar1c465442017-03-12 20:10:05 +01002478 if (VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002479 {
2480 if (gchar_cursor() != NUL)
2481 inc_cursor();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002482 // If the cursor is still at the same character, also keep
2483 // the "coladd".
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002484 if (gchar_cursor() == NUL
2485 && curwin->w_cursor.lnum == tpos.lnum
2486 && curwin->w_cursor.col == tpos.col)
2487 curwin->w_cursor.coladd = tpos.coladd;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002488 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 }
2490
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002491 // If a space was inserted for auto-formatting, remove it now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 check_auto_format(TRUE);
2493
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002494 // If we just did an auto-indent, remove the white space from the end
2495 // of the line, and put the cursor back.
2496 // Do this when ESC was used or moving the cursor up/down.
2497 // Check for the old position still being valid, just in case the text
2498 // got changed unexpectedly.
Bram Moolenaarf332a652013-11-04 04:20:33 +01002499 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00002500 && curwin->w_cursor.lnum != end_insert_pos->lnum))
2501 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002503 pos_T tpos = curwin->w_cursor;
2504
2505 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002506 check_cursor_col(); // make sure it is not past the line
Bram Moolenaar39f05632006-03-19 22:15:26 +00002507 for (;;)
2508 {
2509 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
2510 --curwin->w_cursor.col;
2511 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01002512 if (!VIM_ISWHITE(cc))
Bram Moolenaar39f05632006-03-19 22:15:26 +00002513 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00002514 if (del_char(TRUE) == FAIL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002515 break; // should not happen
Bram Moolenaar39f05632006-03-19 22:15:26 +00002516 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002517 if (curwin->w_cursor.lnum != tpos.lnum)
2518 curwin->w_cursor = tpos;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002519 else
2520 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002521 // reset tpos, could have been invalidated in the loop above
Bram Moolenaaref6875b2014-11-12 18:59:25 +01002522 tpos = curwin->w_cursor;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002523 tpos.col++;
2524 if (cc != NUL && gchar_pos(&tpos) == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002525 ++curwin->w_cursor.col; // put cursor back on the NUL
Bram Moolenaar2f31e392014-10-31 19:20:36 +01002526 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002528 // <C-S-Right> may have started Visual mode, adjust the position for
2529 // deleted characters.
Bram Moolenaar7ce5b2b2022-05-16 19:40:59 +01002530 if (VIsual_active)
2531 check_visual_pos();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 }
2533 }
2534 did_ai = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 did_si = FALSE;
2536 can_si = FALSE;
2537 can_si_back = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002539 // Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
2540 // now in a different buffer.
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002541 if (end_insert_pos != NULL)
2542 {
2543 curbuf->b_op_start = Insstart;
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002544 curbuf->b_op_start_orig = Insstart_orig;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002545 curbuf->b_op_end = *end_insert_pos;
2546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547}
2548
2549/*
2550 * Set the last inserted text to a single character.
2551 * Used for the replace command.
2552 */
2553 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002554set_last_insert(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555{
2556 char_u *s;
2557
2558 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Yegappan Lakshmanan87c1cbb2022-12-27 19:54:52 +00002560 if (last_insert == NULL)
2561 return;
2562
2563 s = last_insert;
2564 // Use the CTRL-V only when entering a special char
2565 if (c < ' ' || c == DEL)
2566 *s++ = Ctrl_V;
2567 s = add_char2buf(c, s);
2568 *s++ = ESC;
2569 *s++ = NUL;
2570 last_insert_skip = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571}
2572
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002573#if defined(EXITFREE) || defined(PROTO)
2574 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002575free_last_insert(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002576{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002577 VIM_CLEAR(last_insert);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002578}
2579#endif
2580
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581/*
2582 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
2583 * and CSI. Handle multi-byte characters.
2584 * Returns a pointer to after the added bytes.
2585 */
2586 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002587add_char2buf(int c, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588{
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002589 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 int i;
2591 int len;
2592
2593 len = (*mb_char2bytes)(c, temp);
2594 for (i = 0; i < len; ++i)
2595 {
2596 c = temp[i];
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002597 // Need to escape K_SPECIAL and CSI like in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 if (c == K_SPECIAL)
2599 {
2600 *s++ = K_SPECIAL;
2601 *s++ = KS_SPECIAL;
2602 *s++ = KE_FILLER;
2603 }
2604#ifdef FEAT_GUI
2605 else if (c == CSI)
2606 {
2607 *s++ = CSI;
2608 *s++ = KS_EXTRA;
2609 *s++ = (int)KE_CSI;
2610 }
2611#endif
2612 else
2613 *s++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 return s;
2616}
2617
2618/*
2619 * move cursor to start of line
2620 * if flags & BL_WHITE move to first non-white
2621 * if flags & BL_SOL move to first non-white if startofline is set,
2622 * otherwise keep "curswant" column
2623 * if flags & BL_FIX don't leave the cursor on a NUL.
2624 */
2625 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002626beginline(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627{
2628 if ((flags & BL_SOL) && !p_sol)
2629 coladvance(curwin->w_curswant);
2630 else
2631 {
2632 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634
2635 if (flags & (BL_WHITE | BL_SOL))
2636 {
2637 char_u *ptr;
2638
Bram Moolenaar1c465442017-03-12 20:10:05 +01002639 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
2641 ++curwin->w_cursor.col;
2642 }
2643 curwin->w_set_curswant = TRUE;
2644 }
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01002645 adjust_skipcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646}
2647
2648/*
2649 * oneright oneleft cursor_down cursor_up
2650 *
2651 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002652 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 * Return OK when successful, FAIL when we hit a line of file boundary.
2654 */
2655
2656 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002657oneright(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658{
2659 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 if (virtual_active())
2663 {
2664 pos_T prevpos = curwin->w_cursor;
2665
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002666 // Adjust for multi-wide char (excluding TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002668 coladvance(getviscol() + ((*ptr != TAB
2669 && vim_isprintc((*mb_ptr2char)(ptr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 ? ptr2cells(ptr) : 1));
2671 curwin->w_set_curswant = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002672 // Return OK if the cursor moved, FAIL otherwise (at window edge).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 return (prevpos.col != curwin->w_cursor.col
2674 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
2675 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
2677 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002678 if (*ptr == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002679 return FAIL; // already at the very end
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002680
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002681 if (has_mbyte)
2682 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 else
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002684 l = 1;
2685
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002686 // move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
2687 // contains "onemore".
Gary Johnson53ba05b2021-07-26 22:19:10 +02002688 if (ptr[l] == NUL && (get_ve_flags() & VE_ONEMORE) == 0)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00002689 return FAIL;
2690 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691
2692 curwin->w_set_curswant = TRUE;
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01002693 adjust_skipcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 return OK;
2695}
2696
2697 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002698oneleft(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 if (virtual_active())
2701 {
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002702#ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 int width;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 int v = getviscol();
2706
2707 if (v == 0)
2708 return FAIL;
2709
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002710#ifdef FEAT_LINEBREAK
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002711 // We might get stuck on 'showbreak', skip over it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 width = 1;
2713 for (;;)
2714 {
2715 coladvance(v - width);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002716 // getviscol() is slow, skip it when 'showbreak' is empty,
2717 // 'breakindent' is not set and there are no multi-byte
2718 // characters
Bram Moolenaaree857022019-11-09 23:26:40 +01002719 if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri
Bram Moolenaar13505972019-01-24 15:04:48 +01002720 && !has_mbyte) || getviscol() < v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 break;
2722 ++width;
2723 }
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002724#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 coladvance(v - 1);
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002726#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727
2728 if (curwin->w_cursor.coladd == 1)
2729 {
2730 char_u *ptr;
2731
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002732 // Adjust for multi-wide char (not a TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 ptr = ml_get_cursor();
Bram Moolenaar13505972019-01-24 15:04:48 +01002734 if (*ptr != TAB && vim_isprintc((*mb_ptr2char)(ptr))
2735 && ptr2cells(ptr) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 curwin->w_cursor.coladd = 0;
2737 }
2738
2739 curwin->w_set_curswant = TRUE;
2740 return OK;
2741 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742
2743 if (curwin->w_cursor.col == 0)
2744 return FAIL;
2745
2746 curwin->w_set_curswant = TRUE;
2747 --curwin->w_cursor.col;
2748
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002749 // if the character on the left of the current cursor is a multi-byte
2750 // character, move to its first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 if (has_mbyte)
2752 mb_adjust_cursor();
Bram Moolenaar2fbabd22022-10-12 19:53:38 +01002753 adjust_skipcol();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 return OK;
2755}
2756
Luuk van Baal7c1cbb62022-09-27 12:31:15 +01002757/*
2758 * Move the cursor up "n" lines in window "wp".
2759 * Takes care of closed folds.
2760 * Returns the new cursor line or zero for failure.
2761 */
2762 linenr_T
2763cursor_up_inner(win_T *wp, long n)
2764{
2765 linenr_T lnum = wp->w_cursor.lnum;
2766
2767 // This fails if the cursor is already in the first line or the count is
2768 // larger than the line number and '-' is in 'cpoptions'
2769 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
2770 return 0;
2771 if (n >= lnum)
2772 lnum = 1;
2773 else
2774#ifdef FEAT_FOLDING
2775 if (hasAnyFolding(wp))
2776 {
2777 /*
2778 * Count each sequence of folded lines as one logical line.
2779 */
2780 // go to the start of the current fold
2781 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
2782
2783 while (n--)
2784 {
2785 // move up one line
2786 --lnum;
2787 if (lnum <= 1)
2788 break;
2789 // If we entered a fold, move to the beginning, unless in
2790 // Insert mode or when 'foldopen' contains "all": it will open
2791 // in a moment.
2792 if (n > 0 || !((State & MODE_INSERT) || (fdo_flags & FDO_ALL)))
2793 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
2794 }
2795 if (lnum < 1)
2796 lnum = 1;
2797 }
2798 else
2799#endif
2800 lnum -= n;
2801
2802 wp->w_cursor.lnum = lnum;
2803 return lnum;
2804}
2805
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002807cursor_up(
2808 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002809 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810{
Luuk van Baal7c1cbb62022-09-27 12:31:15 +01002811 if (n > 0 && cursor_up_inner(curwin, n) == 0)
2812 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002814 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 coladvance(curwin->w_curswant);
2816
2817 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002818 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819
2820 return OK;
2821}
2822
2823/*
Luuk van Baal7c1cbb62022-09-27 12:31:15 +01002824 * Move the cursor down "n" lines in window "wp".
2825 * Takes care of closed folds.
2826 * Returns the new cursor line or zero for failure.
2827 */
2828 linenr_T
2829cursor_down_inner(win_T *wp, long n)
2830{
2831 linenr_T lnum = wp->w_cursor.lnum;
2832 linenr_T line_count = wp->w_buffer->b_ml.ml_line_count;
2833
2834#ifdef FEAT_FOLDING
2835 // Move to last line of fold, will fail if it's the end-of-file.
2836 (void)hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
2837#endif
2838 // This fails if the cursor is already in the last line or would move
2839 // beyond the last line and '-' is in 'cpoptions'
2840 if (lnum >= line_count
2841 || (lnum + n > line_count && vim_strchr(p_cpo, CPO_MINUS) != NULL))
2842 return FAIL;
2843 if (lnum + n >= line_count)
2844 lnum = line_count;
2845 else
2846#ifdef FEAT_FOLDING
2847 if (hasAnyFolding(wp))
2848 {
2849 linenr_T last;
2850
2851 // count each sequence of folded lines as one logical line
2852 while (n--)
2853 {
2854 if (hasFoldingWin(wp, lnum, NULL, &last, TRUE, NULL))
2855 lnum = last + 1;
2856 else
2857 ++lnum;
2858 if (lnum >= line_count)
2859 break;
2860 }
2861 if (lnum > line_count)
2862 lnum = line_count;
2863 }
2864 else
2865#endif
2866 lnum += n;
2867
2868 wp->w_cursor.lnum = lnum;
2869 return lnum;
2870}
2871
2872/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 * Cursor down a number of logical lines.
2874 */
2875 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002876cursor_down(
2877 long n,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002878 int upd_topline) // When TRUE: update topline
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879{
Luuk van Baal7c1cbb62022-09-27 12:31:15 +01002880 if (n > 0 && cursor_down_inner(curwin, n) == 0)
2881 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002883 // try to advance to the column we want to be at
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 coladvance(curwin->w_curswant);
2885
2886 if (upd_topline)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002887 update_topline(); // make sure curwin->w_topline is valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888
2889 return OK;
2890}
2891
2892/*
2893 * Stuff the last inserted text in the read buffer.
2894 * Last_insert actually is a copy of the redo buffer, so we
2895 * first have to remove the command.
2896 */
2897 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002898stuff_inserted(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002899 int c, // Command character to be inserted
2900 long count, // Repeat this many times
2901 int no_esc) // Don't add an ESC at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902{
2903 char_u *esc_ptr;
2904 char_u *ptr;
2905 char_u *last_ptr;
2906 char_u last = NUL;
2907
2908 ptr = get_last_insert();
2909 if (ptr == NULL)
2910 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02002911 emsg(_(e_no_inserted_text_yet));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 return FAIL;
2913 }
2914
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002915 // may want to stuff the command character, to start Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 if (c != NUL)
2917 stuffcharReadbuff(c);
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00002918 if ((esc_ptr = vim_strrchr(ptr, ESC)) != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002919 *esc_ptr = NUL; // remove the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002921 // when the last char is either "0" or "^" it will be quoted if no ESC
2922 // comes after it OR if it will inserted more than once and "ptr"
2923 // starts with ^D. -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
2925 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
2926 && (no_esc || (*ptr == Ctrl_D && count > 1)))
2927 {
2928 last = *last_ptr;
2929 *last_ptr = NUL;
2930 }
2931
2932 do
2933 {
2934 stuffReadbuff(ptr);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002935 // a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 if (last)
Bram Moolenaar424bcae2022-01-31 14:59:41 +00002937 stuffReadbuff(
2938 (char_u *)(last == '0' ? "\026\060\064\070" : "\026^"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 }
2940 while (--count > 0);
2941
2942 if (last)
2943 *last_ptr = last;
2944
2945 if (esc_ptr != NULL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002946 *esc_ptr = ESC; // put the ESC back
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002948 // may want to stuff a trailing ESC, to get out of Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 if (!no_esc)
2950 stuffcharReadbuff(ESC);
2951
2952 return OK;
2953}
2954
2955 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002956get_last_insert(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957{
2958 if (last_insert == NULL)
2959 return NULL;
2960 return last_insert + last_insert_skip;
2961}
2962
2963/*
2964 * Get last inserted string, and remove trailing <Esc>.
2965 * Returns pointer to allocated memory (must be freed) or NULL.
2966 */
2967 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01002968get_last_insert_save(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969{
2970 char_u *s;
2971 int len;
2972
2973 if (last_insert == NULL)
2974 return NULL;
2975 s = vim_strsave(last_insert + last_insert_skip);
Yegappan Lakshmanan1cfb14a2023-01-09 19:04:23 +00002976 if (s == NULL)
2977 return NULL;
2978
2979 len = (int)STRLEN(s);
2980 if (len > 0 && s[len - 1] == ESC) // remove trailing ESC
2981 s[len - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 return s;
2983}
2984
2985/*
2986 * Check the word in front of the cursor for an abbreviation.
2987 * Called when the non-id character "c" has been entered.
2988 * When an abbreviation is recognized it is removed from the text and
2989 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
2990 */
2991 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002992echeck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01002994 // Don't check for abbreviation in paste mode, when disabled and just
2995 // after moving around with cursor keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 if (p_paste || no_abbr || arrow_used)
2997 return FALSE;
2998
2999 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
3000 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
3001}
3002
3003/*
3004 * replace-stack functions
3005 *
3006 * When replacing characters, the replaced characters are remembered for each
3007 * new character. This is used to re-insert the old text when backspacing.
3008 *
3009 * There is a NUL headed list of characters for each character that is
3010 * currently in the file after the insertion point. When BS is used, one NUL
3011 * headed list is put back for the deleted character.
3012 *
3013 * For a newline, there are two NUL headed lists. One contains the characters
3014 * that the NL replaced. The extra one stores the characters after the cursor
3015 * that were deleted (always white space).
3016 *
3017 * Replace_offset is normally 0, in which case replace_push will add a new
3018 * character at the end of the stack. If replace_offset is not 0, that many
3019 * characters will be left on the stack above the newly inserted character.
3020 */
3021
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00003022static char_u *replace_stack = NULL;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003023static long replace_stack_nr = 0; // next entry in replace stack
3024static long replace_stack_len = 0; // max. number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025
3026 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003027replace_push(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003028 int c) // character that is replaced (NUL is none)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029{
3030 char_u *p;
3031
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003032 if (replace_stack_nr < replace_offset) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 return;
3034 if (replace_stack_len <= replace_stack_nr)
3035 {
3036 replace_stack_len += 50;
Bram Moolenaar3397f742019-06-02 18:40:06 +02003037 p = ALLOC_MULT(char_u, replace_stack_len);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003038 if (p == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039 {
3040 replace_stack_len -= 50;
3041 return;
3042 }
3043 if (replace_stack != NULL)
3044 {
3045 mch_memmove(p, replace_stack,
3046 (size_t)(replace_stack_nr * sizeof(char_u)));
3047 vim_free(replace_stack);
3048 }
3049 replace_stack = p;
3050 }
3051 p = replace_stack + replace_stack_nr - replace_offset;
3052 if (replace_offset)
3053 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
3054 *p = c;
3055 ++replace_stack_nr;
3056}
3057
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003058/*
3059 * Push a character onto the replace stack. Handles a multi-byte character in
3060 * reverse byte order, so that the first byte is popped off first.
3061 * Return the number of bytes done (includes composing characters).
3062 */
3063 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003064replace_push_mb(char_u *p)
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003065{
3066 int l = (*mb_ptr2len)(p);
3067 int j;
3068
3069 for (j = l - 1; j >= 0; --j)
3070 replace_push(p[j]);
3071 return l;
3072}
Bram Moolenaar2c994e82008-01-02 16:49:36 +00003073
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074/*
3075 * Pop one item from the replace stack.
3076 * return -1 if stack empty
3077 * return replaced character or NUL otherwise
3078 */
3079 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003080replace_pop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081{
3082 if (replace_stack_nr == 0)
3083 return -1;
3084 return (int)replace_stack[--replace_stack_nr];
3085}
3086
3087/*
3088 * Join the top two items on the replace stack. This removes to "off"'th NUL
3089 * encountered.
3090 */
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003091 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003092replace_join(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003093 int off) // offset for which NUL to remove
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094{
3095 int i;
3096
3097 for (i = replace_stack_nr; --i >= 0; )
3098 if (replace_stack[i] == NUL && off-- <= 0)
3099 {
3100 --replace_stack_nr;
3101 mch_memmove(replace_stack + i, replace_stack + i + 1,
3102 (size_t)(replace_stack_nr - i));
3103 return;
3104 }
3105}
3106
3107/*
3108 * Pop bytes from the replace stack until a NUL is found, and insert them
Bram Moolenaar24959102022-05-07 20:01:16 +01003109 * before the cursor. Can only be used in MODE_REPLACE or MODE_VREPLACE state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 */
3111 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003112replace_pop_ins(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113{
3114 int cc;
3115 int oldState = State;
3116
Bram Moolenaar24959102022-05-07 20:01:16 +01003117 State = MODE_NORMAL; // don't want MODE_REPLACE here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 while ((cc = replace_pop()) > 0)
3119 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 mb_replace_pop_ins(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 dec_cursor();
3122 }
3123 State = oldState;
3124}
3125
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126/*
3127 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
3128 * indicates a multi-byte char, pop the other bytes too.
3129 */
3130 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003131mb_replace_pop_ins(int cc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132{
3133 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02003134 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 int i;
3136 int c;
3137
3138 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
3139 {
3140 buf[0] = cc;
3141 for (i = 1; i < n; ++i)
3142 buf[i] = replace_pop();
3143 ins_bytes_len(buf, n);
3144 }
3145 else
3146 ins_char(cc);
3147
3148 if (enc_utf8)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003149 // Handle composing chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 for (;;)
3151 {
3152 c = replace_pop();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003153 if (c == -1) // stack empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 break;
3155 if ((n = MB_BYTE2LEN(c)) == 1)
3156 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003157 // Not a multi-byte char, put it back.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 replace_push(c);
3159 break;
3160 }
zeertzjq8c979602022-04-07 15:08:01 +01003161
3162 buf[0] = c;
3163 for (i = 1; i < n; ++i)
3164 buf[i] = replace_pop();
3165 if (utf_iscomposing(utf_ptr2char(buf)))
3166 ins_bytes_len(buf, n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 else
3168 {
zeertzjq8c979602022-04-07 15:08:01 +01003169 // Not a composing char, put it back.
3170 for (i = n - 1; i >= 0; --i)
3171 replace_push(buf[i]);
3172 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 }
zeertzjq8c979602022-04-07 15:08:01 +01003174
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 }
3176}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177
3178/*
3179 * make the replace stack empty
3180 * (called when exiting replace mode)
3181 */
3182 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003183replace_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184{
Bram Moolenaard23a8232018-02-10 18:45:26 +01003185 VIM_CLEAR(replace_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 replace_stack_len = 0;
3187 replace_stack_nr = 0;
3188}
3189
3190/*
3191 * Handle doing a BS for one character.
3192 * cc < 0: replace stack empty, just move cursor
3193 * cc == 0: character was inserted, delete it
3194 * cc > 0: character was replaced, put cc (first byte of original char) back
3195 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003196 * When "limit_col" is >= 0, don't delete before this column. Matters when
3197 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 */
3199 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003200replace_do_bs(int limit_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201{
3202 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203 int orig_len = 0;
3204 int ins_len;
3205 int orig_vcols = 0;
3206 colnr_T start_vcol;
3207 char_u *p;
3208 int i;
3209 int vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210
3211 cc = replace_pop();
3212 if (cc > 0)
3213 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003214#ifdef FEAT_PROP_POPUP
Bram Moolenaar6d11f3b2019-01-06 17:44:38 +01003215 size_t len_before = 0; // init to shut up GCC
Bram Moolenaar196d1572019-01-02 23:47:18 +01003216
3217 if (curbuf->b_has_textprop)
3218 {
3219 // Do not adjust text properties for individual delete and insert
3220 // operations, do it afterwards on the resulting text.
3221 len_before = STRLEN(ml_get_curline());
3222 ++text_prop_frozen;
3223 }
3224#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 if (State & VREPLACE_FLAG)
3226 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003227 // Get the number of screen cells used by the character we are
3228 // going to delete.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
3230 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
3231 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 if (has_mbyte)
3233 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003234 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003236 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 replace_push(cc);
3238 }
3239 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 {
3241 pchar_cursor(cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003243 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 }
3245 replace_pop_ins();
3246
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 if (State & VREPLACE_FLAG)
3248 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003249 // Get the number of screen cells used by the inserted characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003251 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 vcol = start_vcol;
3253 for (i = 0; i < ins_len; ++i)
3254 {
3255 vcol += chartabsize(p + i, vcol);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003256 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 }
3258 vcol -= start_vcol;
3259
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003260 // Delete spaces that were inserted after the cursor to keep the
3261 // text aligned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 curwin->w_cursor.col += ins_len;
3263 while (vcol > orig_vcols && gchar_cursor() == ' ')
3264 {
3265 del_char(FALSE);
3266 ++orig_vcols;
3267 }
3268 curwin->w_cursor.col -= ins_len;
3269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270
Bram Moolenaar196d1572019-01-02 23:47:18 +01003271 // mark the buffer as changed and prepare for displaying
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003273
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003274#ifdef FEAT_PROP_POPUP
Bram Moolenaar196d1572019-01-02 23:47:18 +01003275 if (curbuf->b_has_textprop)
3276 {
3277 size_t len_now = STRLEN(ml_get_curline());
3278
3279 --text_prop_frozen;
3280 adjust_prop_columns(curwin->w_cursor.lnum, curwin->w_cursor.col,
Bram Moolenaarf3333b02019-05-19 22:53:40 +02003281 (int)(len_now - len_before), 0);
Bram Moolenaar196d1572019-01-02 23:47:18 +01003282 }
3283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 }
3285 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003286 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287}
3288
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
3290/*
3291 * Map Hebrew keyboard when in hkmap mode.
3292 */
3293 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003294hkmap(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003296 if (p_hkmapp) // phonetic mapping, by Ilya Dogolazky
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 {
3298 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
3299 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
3300 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
3301 static char_u map[26] =
3302 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
3303 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
3304 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
3305 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
3306 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
3307 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
3308 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
3309 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
3310 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
3311
3312 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
3313 return (int)(map[CharOrd(c)] - 1 + p_aleph);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003314 // '-1'='sofit'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 else if (c == 'x')
3316 return 'X';
3317 else if (c == 'q')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003318 return '\''; // {geresh}={'}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 else if (c == 246)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003320 return ' '; // \"o --> ' ' for a german keyboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 else if (c == 228)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003322 return ' '; // \"a --> ' ' -- / --
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 else if (c == 252)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003324 return ' '; // \"u --> ' ' -- / --
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003325 // NOTE: islower() does not do the right thing for us on Linux so we
3326 // do this the same was as 5.7 and previous, so it works correctly on
3327 // all systems. Specifically, the e.g. Delete and Arrow keys are
3328 // munged and won't work if e.g. searching for Hebrew text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 else if (c >= 'a' && c <= 'z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 return (int)(map[CharOrdLow(c)] + p_aleph);
3331 else
3332 return c;
3333 }
3334 else
3335 {
3336 switch (c)
3337 {
3338 case '`': return ';';
3339 case '/': return '.';
3340 case '\'': return ',';
3341 case 'q': return '/';
3342 case 'w': return '\'';
3343
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003344 // Hebrew letters - set offset from 'a'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 case ',': c = '{'; break;
3346 case '.': c = 'v'; break;
3347 case ';': c = 't'; break;
3348 default: {
3349 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
3350
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 if (c < 'a' || c > 'z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 return c;
3353 c = str[CharOrdLow(c)];
3354 break;
3355 }
3356 }
3357
3358 return (int)(CharOrdLow(c) + p_aleph);
3359 }
3360}
3361#endif
3362
3363 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003364ins_reg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365{
3366 int need_redraw = FALSE;
3367 int regname;
3368 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003369 int vis_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370
3371 /*
3372 * If we are going to wait for a character, show a '"'.
3373 */
3374 pc_status = PC_STATUS_UNSET;
3375 if (redrawing() && !char_avail())
3376 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003377 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00003378 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379
3380 edit_putchar('"', TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 add_to_showcmd_c(Ctrl_R);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 }
3383
3384#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003385 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386#endif
3387
3388 /*
3389 * Don't map the register name. This also prevents the mode message to be
3390 * deleted when ESC is hit.
3391 */
3392 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003393 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003394 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
3397 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003398 // Get a third key for literal register insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 literally = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 add_to_showcmd_c(literally);
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003401 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 }
3404 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003405 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406
3407#ifdef FEAT_EVAL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003408 // Don't call u_sync() while typing the expression or giving an error
3409 // message for it. Only call it explicitly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 ++no_u_sync;
3411 if (regname == '=')
3412 {
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003413 pos_T curpos = curwin->w_cursor;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003414# ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003416# endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003417 // Sync undo when evaluating the expression calls setline() or
3418 // append(), so that it can be undone separately.
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003419 u_sync_once = 2;
Bram Moolenaar5737ca22013-06-27 22:21:24 +02003420
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 regname = get_expr_register();
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003422
3423 // Cursor may be moved back a column.
3424 curwin->w_cursor = curpos;
3425 check_cursor();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003426# ifdef HAVE_INPUT_METHOD
Bram Moolenaar9e26f7d2019-01-22 22:08:09 +01003427 // Restore the Input Method.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 if (im_on)
3429 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003430# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00003432 if (regname == NUL || !valid_yank_reg(regname, FALSE))
3433 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003434 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003435 need_redraw = TRUE; // remove the '"'
Bram Moolenaar677ee682005-01-27 14:41:15 +00003436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 else
3438 {
3439#endif
3440 if (literally == Ctrl_O || literally == Ctrl_P)
3441 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003442 // Append the command to the redo buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 AppendCharToRedobuff(Ctrl_R);
3444 AppendCharToRedobuff(literally);
3445 AppendCharToRedobuff(regname);
3446
Bram Moolenaarc3516f72020-09-08 22:45:35 +02003447 do_put(regname, NULL, BACKWARD, 1L,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
3449 }
3450 else if (insert_reg(regname, literally) == FAIL)
3451 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02003452 vim_beep(BO_REG);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003453 need_redraw = TRUE; // remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003455 else if (stop_insert_mode)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003456 // When the '=' register was used and a function was invoked that
3457 // did ":stopinsert" then stuff_empty() returns FALSE but we won't
3458 // insert anything, need to remove the '"'
Bram Moolenaar8f999f12005-01-25 22:12:55 +00003459 need_redraw = TRUE;
3460
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461#ifdef FEAT_EVAL
3462 }
3463 --no_u_sync;
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02003464 if (u_sync_once == 1)
3465 ins_need_undo = TRUE;
3466 u_sync_once = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 clear_showcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003470 // If the inserted register is empty, we need to remove the '"'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 if (need_redraw || stuff_empty())
3472 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003473
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003474 // Disallow starting Visual mode here, would get a weird mode.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003475 if (!vis_active && VIsual_active)
3476 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477}
3478
3479/*
3480 * CTRL-G commands in Insert mode.
3481 */
3482 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003483ins_ctrl_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484{
3485 int c;
3486
Bram Moolenaare2c453d2019-08-21 14:37:09 +02003487 // Right after CTRL-X the cursor will be after the ruler.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489
3490 /*
3491 * Don't map the second key. This also prevents the mode message to be
3492 * deleted when ESC is hit.
3493 */
3494 ++no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003495 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00003496 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 --no_mapping;
Bram Moolenaar38571a02019-11-26 14:28:15 +01003498 --allow_keys;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 switch (c)
3500 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003501 // CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 case K_UP:
3503 case Ctrl_K:
3504 case 'k': ins_up(TRUE);
3505 break;
3506
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003507 // CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 case K_DOWN:
3509 case Ctrl_J:
3510 case 'j': ins_down(TRUE);
3511 break;
3512
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003513 // CTRL-G u: start new undoable edit
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003514 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003516
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003517 // Need to reset Insstart, esp. because a BS that joins
3518 // a line to the previous one must save for undo.
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01003519 update_Insstart_orig = FALSE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00003520 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 break;
3522
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003523 // CTRL-G U: do not break undo with the next char
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003524 case 'U':
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003525 // Allow one left/right cursor movement with the next char,
3526 // without breaking undo.
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02003527 dont_sync_undo = MAYBE;
3528 break;
3529
Bram Moolenaard6a4ea32023-02-25 14:24:44 +00003530 case ESC:
3531 // Esc after CTRL-G cancels it.
3532 break;
3533
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003534 // Unknown CTRL-G command, reserved for future expansion.
Bram Moolenaar165bc692015-07-21 17:53:25 +02003535 default: vim_beep(BO_CTRLG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 }
3537}
3538
3539/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003540 * CTRL-^ in Insert mode.
3541 */
3542 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003543ins_ctrl_hat(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003544{
Bram Moolenaar24959102022-05-07 20:01:16 +01003545 if (map_to_exists_mode((char_u *)"", MODE_LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003546 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003547 // ":lmap" mappings exists, Toggle use of ":lmap" mappings.
Bram Moolenaar24959102022-05-07 20:01:16 +01003548 if (State & MODE_LANGMAP)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003549 {
3550 curbuf->b_p_iminsert = B_IMODE_NONE;
Bram Moolenaar24959102022-05-07 20:01:16 +01003551 State &= ~MODE_LANGMAP;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003552 }
3553 else
3554 {
3555 curbuf->b_p_iminsert = B_IMODE_LMAP;
Bram Moolenaar24959102022-05-07 20:01:16 +01003556 State |= MODE_LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003557#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003558 im_set_active(FALSE);
3559#endif
3560 }
3561 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003562#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003563 else
3564 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003565 // There are no ":lmap" mappings, toggle IM
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003566 if (im_get_status())
3567 {
3568 curbuf->b_p_iminsert = B_IMODE_NONE;
3569 im_set_active(FALSE);
3570 }
3571 else
3572 {
3573 curbuf->b_p_iminsert = B_IMODE_IM;
Bram Moolenaar24959102022-05-07 20:01:16 +01003574 State &= ~MODE_LANGMAP;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003575 im_set_active(TRUE);
3576 }
3577 }
3578#endif
3579 set_iminsert_global();
3580 showmode();
3581#ifdef FEAT_GUI
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003582 // may show different cursor shape or color
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003583 if (gui.in_use)
3584 gui_update_cursor(TRUE, FALSE);
3585#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02003586#if defined(FEAT_KEYMAP)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003587 // Show/unshow value of 'keymap' in status lines.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003588 status_redraw_curbuf();
3589#endif
3590}
3591
3592/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 * Handle ESC in insert mode.
3594 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
3595 * insert.
3596 */
3597 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003598ins_esc(
3599 long *count,
3600 int cmdchar,
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003601 int nomove) // don't move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602{
3603 int temp;
3604 static int disabled_redraw = FALSE;
Bram Moolenaar644b49f2021-09-16 22:32:15 +02003605#ifdef FEAT_CONCEAL
3606 // Remember if the cursor line was concealed before changing State.
3607 int cursor_line_was_concealed = curwin->w_p_cole > 0
3608 && conceal_cursor_line(curwin);
3609#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003611#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003612 check_spell_redraw();
3613#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614
3615 temp = curwin->w_cursor.col;
3616 if (disabled_redraw)
3617 {
3618 --RedrawingDisabled;
3619 disabled_redraw = FALSE;
3620 }
3621 if (!arrow_used)
3622 {
3623 /*
3624 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00003625 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
3626 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 */
3628 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00003629 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630
3631 /*
3632 * Repeating insert may take a long time. Check for
3633 * interrupt now and then.
3634 */
3635 if (*count > 0)
3636 {
3637 line_breakcheck();
3638 if (got_int)
3639 *count = 0;
3640 }
3641
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003642 if (--*count > 0) // repeat what was typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003644 // Vi repeats the insert without replacing characters.
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003645 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
3646 State &= ~REPLACE_FLAG;
3647
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 (void)start_redo_ins();
3649 if (cmdchar == 'r' || cmdchar == 'v')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003650 stuffRedoReadbuff(ESC_STR); // no ESC in redo buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 ++RedrawingDisabled;
3652 disabled_redraw = TRUE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003653 return FALSE; // repeat the insert
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 }
Bram Moolenaarf332a652013-11-04 04:20:33 +01003655 stop_insert(&curwin->w_cursor, TRUE, nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 undisplay_dollar();
3657 }
3658
Bram Moolenaarb53e13a2020-10-21 12:19:53 +02003659 if (cmdchar != 'r' && cmdchar != 'v')
3660 ins_apply_autocmds(EVENT_INSERTLEAVEPRE);
3661
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003662 // When an autoindent was removed, curswant stays after the
3663 // indent
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
3665 curwin->w_set_curswant = TRUE;
3666
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003667 // Remember the last Insert position in the '^ mark.
Bram Moolenaare1004402020-10-24 20:49:43 +02003668 if ((cmdmod.cmod_flags & CMOD_KEEPJUMPS) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 curbuf->b_last_insert = curwin->w_cursor;
3670
3671 /*
3672 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00003673 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00003675 if (!nomove
3676 && (curwin->w_cursor.col != 0
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003677 || curwin->w_cursor.coladd > 0)
Bram Moolenaar488c6512005-08-11 20:09:58 +00003678 && (restart_edit == NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003679 || (gchar_cursor() == NUL && !VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680#ifdef FEAT_RIGHTLEFT
3681 && !revins_on
3682#endif
3683 )
3684 {
Gary Johnson53ba05b2021-07-26 22:19:10 +02003685 if (curwin->w_cursor.coladd > 0 || get_ve_flags() == VE_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 {
3687 oneleft();
3688 if (restart_edit != NUL)
3689 ++curwin->w_cursor.coladd;
3690 }
3691 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 {
3693 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003694 // Correct cursor for multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 if (has_mbyte)
3696 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 }
3698 }
3699
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003700#ifdef HAVE_INPUT_METHOD
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003701 // Disable IM to allow typing English directly for Normal mode commands.
3702 // When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
3703 // well).
Bram Moolenaar24959102022-05-07 20:01:16 +01003704 if (!(State & MODE_LANGMAP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 im_save_status(&curbuf->b_p_iminsert);
3706 im_set_active(FALSE);
3707#endif
3708
Bram Moolenaar24959102022-05-07 20:01:16 +01003709 State = MODE_NORMAL;
LemonBoy2bf52dd2022-04-09 18:17:34 +01003710 may_trigger_modechanged();
zeertzjq8c979602022-04-07 15:08:01 +01003711 // need to position cursor again when on a TAB
3712 if (gchar_cursor() == TAB)
3713 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 setmouse();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716#ifdef CURSOR_SHAPE
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003717 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01003719 if (!p_ek)
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003720 {
Bram Moolenaar1d97db32022-06-04 22:15:54 +01003721 MAY_WANT_TO_LOG_THIS;
3722
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003723 // Re-enable bracketed paste mode.
Bram Moolenaarfc966c12023-01-01 18:04:33 +00003724 out_str_t_BE();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003726 // Re-enable modifyOtherKeys.
Bram Moolenaar733a69b2022-12-01 12:03:47 +00003727 out_str_t_TI();
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003728 }
Bram Moolenaar644b49f2021-09-16 22:32:15 +02003729#ifdef FEAT_CONCEAL
3730 // Check if the cursor line needs redrawing after changing State. If
3731 // 'concealcursor' is "i" it needs to be redrawn without concealing.
3732 conceal_check_cursor_line(cursor_line_was_concealed);
3733#endif
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003734
Bram Moolenaarad3ec762019-04-21 00:00:13 +02003735 // When recording or for CTRL-O, need to display the new mode.
3736 // Otherwise remove the mode message.
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02003737 if (reg_recording != 0 || restart_edit != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 showmode();
Bram Moolenaarabc7c7f2019-04-20 15:10:13 +02003739 else if (p_smd && (got_int || !skip_showmode()))
Bram Moolenaar32526b32019-01-19 17:43:09 +01003740 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741
Bram Moolenaar177c9f22019-11-06 13:59:16 +01003742 return TRUE; // exit Insert mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743}
3744
3745#ifdef FEAT_RIGHTLEFT
3746/*
3747 * Toggle language: hkmap and revins_on.
3748 * Move to end of reverse inserted text.
3749 */
3750 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003751ins_ctrl_(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752{
3753 if (revins_on && revins_chars && revins_scol >= 0)
3754 {
3755 while (gchar_cursor() != NUL && revins_chars--)
3756 ++curwin->w_cursor.col;
3757 }
3758 p_ri = !p_ri;
Bram Moolenaar24959102022-05-07 20:01:16 +01003759 revins_on = (State == MODE_INSERT && p_ri);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 if (revins_on)
3761 {
3762 revins_scol = curwin->w_cursor.col;
3763 revins_legal++;
3764 revins_chars = 0;
3765 undisplay_dollar();
3766 }
3767 else
3768 revins_scol = -1;
Bram Moolenaar14184a32019-02-16 15:10:30 +01003769 p_hkmap = curwin->w_p_rl ^ p_ri; // be consistent!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 showmode();
3771}
3772#endif
3773
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774/*
3775 * If 'keymodel' contains "startsel", may start selection.
3776 * Returns TRUE when a CTRL-O and other keys stuffed.
3777 */
3778 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003779ins_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780{
zeertzjq101d57b2022-07-31 18:34:32 +01003781 if (!km_startsel)
3782 return FALSE;
3783 switch (c)
3784 {
3785 case K_KHOME:
3786 case K_KEND:
3787 case K_PAGEUP:
3788 case K_KPAGEUP:
3789 case K_PAGEDOWN:
3790 case K_KPAGEDOWN:
Bram Moolenaard0573012017-10-28 21:11:06 +02003791# ifdef MACOS_X
zeertzjq101d57b2022-07-31 18:34:32 +01003792 case K_LEFT:
3793 case K_RIGHT:
3794 case K_UP:
3795 case K_DOWN:
3796 case K_END:
3797 case K_HOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798# endif
zeertzjq101d57b2022-07-31 18:34:32 +01003799 if (!(mod_mask & MOD_MASK_SHIFT))
3800 break;
3801 // FALLTHROUGH
3802 case K_S_LEFT:
3803 case K_S_RIGHT:
3804 case K_S_UP:
3805 case K_S_DOWN:
3806 case K_S_END:
3807 case K_S_HOME:
3808 // Start selection right away, the cursor can move with CTRL-O when
3809 // beyond the end of the line.
3810 start_selection();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811
zeertzjq101d57b2022-07-31 18:34:32 +01003812 // Execute the key in (insert) Select mode.
3813 stuffcharReadbuff(Ctrl_O);
3814 if (mod_mask)
3815 {
3816 char_u buf[4];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817
zeertzjq101d57b2022-07-31 18:34:32 +01003818 buf[0] = K_SPECIAL;
3819 buf[1] = KS_MODIFIER;
3820 buf[2] = mod_mask;
3821 buf[3] = NUL;
3822 stuffReadbuff(buf);
3823 }
3824 stuffcharReadbuff(c);
3825 return TRUE;
3826 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 return FALSE;
3828}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829
3830/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003831 * <Insert> key in Insert mode: toggle insert/replace mode.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003832 */
3833 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003834ins_insert(int replaceState)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003835{
Bram Moolenaar14184a32019-02-16 15:10:30 +01003836#ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003837 set_vim_var_string(VV_INSERTMODE,
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02003838 (char_u *)((State & REPLACE_FLAG) ? "i"
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01003839 : replaceState == MODE_VREPLACE ? "v" : "r"), 1);
Bram Moolenaar14184a32019-02-16 15:10:30 +01003840#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02003841 ins_apply_autocmds(EVENT_INSERTCHANGE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003842 if (State & REPLACE_FLAG)
Bram Moolenaar24959102022-05-07 20:01:16 +01003843 State = MODE_INSERT | (State & MODE_LANGMAP);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003844 else
Bram Moolenaar24959102022-05-07 20:01:16 +01003845 State = replaceState | (State & MODE_LANGMAP);
LemonBoy2bf52dd2022-04-09 18:17:34 +01003846 may_trigger_modechanged();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003847 AppendCharToRedobuff(K_INS);
3848 showmode();
3849#ifdef CURSOR_SHAPE
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003850 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003851#endif
3852}
3853
3854/*
3855 * Pressed CTRL-O in Insert mode.
3856 */
3857 static void
Bram Moolenaar2824d1e2023-02-23 20:13:04 +00003858ins_ctrl_o(int cmdchar)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003859{
Bram Moolenaar2824d1e2023-02-23 20:13:04 +00003860 if (cmdchar == 'v')
3861 return; // abort replacing one char for gr CTRL-O
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003862 if (State & VREPLACE_FLAG)
3863 restart_edit = 'V';
Bram Moolenaar0684e362020-12-03 19:54:42 +01003864 else if (State & REPLACE_FLAG)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003865 restart_edit = 'R';
3866 else
3867 restart_edit = 'I';
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003868 if (virtual_active())
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003869 ins_at_eol = FALSE; // cursor always keeps its column
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003870 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003871 ins_at_eol = (gchar_cursor() == NUL);
3872}
3873
3874/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 * If the cursor is on an indent, ^T/^D insert/delete one
3876 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00003877 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 * with vi. But vi only supports ^T and ^D after an
3879 * autoindent, we support it everywhere.
3880 */
3881 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003882ins_shift(int c, int lastc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883{
3884 if (stop_arrow() == FAIL)
3885 return;
3886 AppendCharToRedobuff(c);
3887
3888 /*
3889 * 0^D and ^^D: remove all indent.
3890 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00003891 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
3892 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 {
3894 --curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003895 (void)del_char(FALSE); // delete the '^' or '0'
3896 // In Replace mode, restore the characters that '^' or '0' replaced.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 if (State & REPLACE_FLAG)
3898 replace_pop_ins();
3899 if (lastc == '^')
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003900 old_indent = get_indent(); // remember curr. indent
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003901 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 }
3903 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00003904 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905
3906 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
3907 did_ai = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 did_si = FALSE;
3909 can_si = FALSE;
3910 can_si_back = FALSE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003911 can_cindent = FALSE; // no cindenting after ^D or ^T
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912}
3913
3914 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003915ins_del(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916{
3917 int temp;
3918
3919 if (stop_arrow() == FAIL)
3920 return;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003921 if (gchar_cursor() == NUL) // delete newline
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 {
3923 temp = curwin->w_cursor.col;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003924 if (!can_bs(BS_EOL) // only if "eol" included
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02003925 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02003926 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 else
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003928 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 curwin->w_cursor.col = temp;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003930 // Adjust orig_line_count in case more lines have been deleted than
3931 // have been added. That makes sure, that open_line() later
3932 // can access all buffer lines correctly
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003933 if (State & VREPLACE_FLAG &&
3934 orig_line_count > curbuf->b_ml.ml_line_count)
3935 orig_line_count = curbuf->b_ml.ml_line_count;
Bram Moolenaar63e82db2018-03-06 12:10:48 +01003936 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003938 else if (del_char(FALSE) == FAIL) // delete char under cursor
Bram Moolenaar165bc692015-07-21 17:53:25 +02003939 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 did_ai = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 did_si = FALSE;
3942 can_si = FALSE;
3943 can_si_back = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 AppendCharToRedobuff(K_DEL);
3945}
3946
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003947/*
3948 * Delete one character for ins_bs().
3949 */
3950 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003951ins_bs_one(colnr_T *vcolp)
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003952{
3953 dec_cursor();
3954 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
3955 if (State & REPLACE_FLAG)
3956 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003957 // Don't delete characters before the insert point when in
3958 // Replace mode
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003959 if (curwin->w_cursor.lnum != Insstart.lnum
3960 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003961 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00003962 }
3963 else
3964 (void)del_char(FALSE);
3965}
3966
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967/*
3968 * Handle Backspace, delete-word and delete-line in Insert mode.
3969 * Return TRUE when backspace was actually used.
3970 */
3971 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003972ins_bs(
3973 int c,
3974 int mode,
3975 int *inserted_space_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976{
3977 linenr_T lnum;
3978 int cc;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003979 int temp = 0; // init for GCC
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003980 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 colnr_T mincol;
3982 int did_backspace = FALSE;
3983 int in_indent;
3984 int oldState;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01003985 int cpc[MAX_MCO]; // composing characters
Bram Moolenaar5d20fbf2021-12-29 16:05:31 +00003986 int call_fix_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987
3988 /*
3989 * can't delete anything in an empty file
3990 * can't backup past first character in buffer
3991 * can't backup past starting point unless 'backspace' > 1
3992 * can backup to a previous line if 'backspace' == 0
3993 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003994 if ( BUFEMPTY()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 || (
3996#ifdef FEAT_RIGHTLEFT
3997 !revins_on &&
3998#endif
3999 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
4000 || (!can_bs(BS_START)
Bram Moolenaar6f624482020-11-11 20:52:40 +01004001 && ((arrow_used
4002#ifdef FEAT_JOB_CHANNEL
4003 && !bt_prompt(curbuf)
4004#endif
4005 ) || (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004006 && curwin->w_cursor.col <= Insstart_orig.col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
4008 && curwin->w_cursor.col <= ai_col)
4009 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
4010 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02004011 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 return FALSE;
4013 }
4014
4015 if (stop_arrow() == FAIL)
4016 return FALSE;
4017 in_indent = inindent(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 if (in_indent)
4019 can_cindent = FALSE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004020 end_comment_pending = NUL; // After BS, don't auto-end comment
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004022 if (revins_on) // put cursor after last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 inc_cursor();
4024#endif
4025
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004026 // Virtualedit:
4027 // BACKSPACE_CHAR eats a virtual space
4028 // BACKSPACE_WORD eats all coladd
4029 // BACKSPACE_LINE eats all coladd and keeps going
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 if (curwin->w_cursor.coladd > 0)
4031 {
4032 if (mode == BACKSPACE_CHAR)
4033 {
4034 --curwin->w_cursor.coladd;
4035 return TRUE;
4036 }
4037 if (mode == BACKSPACE_WORD)
4038 {
4039 curwin->w_cursor.coladd = 0;
4040 return TRUE;
4041 }
4042 curwin->w_cursor.coladd = 0;
4043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
4045 /*
Bram Moolenaar878c2632017-04-01 15:15:52 +02004046 * Delete newline!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 */
4048 if (curwin->w_cursor.col == 0)
4049 {
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004050 lnum = Insstart.lnum;
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004051 if (curwin->w_cursor.lnum == lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052#ifdef FEAT_RIGHTLEFT
4053 || revins_on
4054#endif
4055 )
4056 {
4057 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
4058 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
4059 return FALSE;
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01004060 --Insstart.lnum;
Bram Moolenaar04000562017-04-03 21:35:42 +02004061 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 }
4063 /*
4064 * In replace mode:
4065 * cc < 0: NL was inserted, delete it
4066 * cc >= 0: NL was replaced, put original characters back
4067 */
4068 cc = -1;
4069 if (State & REPLACE_FLAG)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004070 cc = replace_pop(); // returns -1 if NL was inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 /*
4072 * In replace mode, in the line we started replacing, we only move the
4073 * cursor.
4074 */
4075 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
4076 {
4077 dec_cursor();
4078 }
4079 else
4080 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 if (!(State & VREPLACE_FLAG)
4082 || curwin->w_cursor.lnum > orig_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004084 temp = gchar_cursor(); // remember current char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004086
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004087 // When "aw" is in 'formatoptions' we must delete the space at
4088 // the end of the line, otherwise the line will be broken
4089 // again when auto-formatting.
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004090 if (has_format_option(FO_AUTO)
4091 && has_format_option(FO_WHITE_PAR))
4092 {
4093 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
4094 TRUE);
4095 int len;
4096
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004097 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00004098 if (len > 0 && ptr[len - 1] == ' ')
4099 ptr[len - 1] = NUL;
4100 }
4101
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004102 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 if (temp == NUL && gchar_cursor() != NUL)
4104 inc_cursor();
4105 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 else
4107 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108
4109 /*
Bram Moolenaar24959102022-05-07 20:01:16 +01004110 * In MODE_REPLACE mode we have to put back the text that was
4111 * replaced by the NL. On the replace stack is first a
4112 * NUL-terminated sequence of characters that were deleted and then
4113 * the characters that NL replaced.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 */
4115 if (State & REPLACE_FLAG)
4116 {
4117 /*
Bram Moolenaar24959102022-05-07 20:01:16 +01004118 * Do the next ins_char() in MODE_NORMAL state, to
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 * prevent ins_char() from replacing characters and
4120 * avoiding showmatch().
4121 */
4122 oldState = State;
Bram Moolenaar24959102022-05-07 20:01:16 +01004123 State = MODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 /*
4125 * restore characters (blanks) deleted after cursor
4126 */
4127 while (cc > 0)
4128 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004129 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 mb_replace_pop_ins(cc);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004131 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 cc = replace_pop();
4133 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004134 // restore the characters that NL replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 replace_pop_ins();
4136 State = oldState;
4137 }
4138 }
4139 did_ai = FALSE;
4140 }
4141 else
4142 {
4143 /*
4144 * Delete character(s) before the cursor.
4145 */
4146#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004147 if (revins_on) // put cursor on last inserted char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 dec_cursor();
4149#endif
4150 mincol = 0;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004151 // keep indent
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00004152 if (mode == BACKSPACE_LINE
Bram Moolenaar8e145b82022-05-21 20:17:31 +01004153 && (curbuf->b_p_ai || cindent_on())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154#ifdef FEAT_RIGHTLEFT
4155 && !revins_on
4156#endif
4157 )
4158 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004159 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00004161 if (curwin->w_cursor.col < save_col)
Bram Moolenaar5d20fbf2021-12-29 16:05:31 +00004162 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 mincol = curwin->w_cursor.col;
Bram Moolenaar5d20fbf2021-12-29 16:05:31 +00004164 // should now fix the indent to match with the previous line
4165 call_fix_indent = TRUE;
Bram Moolenaar5d20fbf2021-12-29 16:05:31 +00004166 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004167 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 }
4169
4170 /*
4171 * Handle deleting one 'shiftwidth' or 'softtabstop'.
4172 */
4173 if ( mode == BACKSPACE_CHAR
4174 && ((p_sta && in_indent)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004175 || ((get_sts_value() != 0
4176#ifdef FEAT_VARTABS
4177 || tabstop_count(curbuf->b_p_vsts_array)
4178#endif
4179 )
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00004180 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 && (*(ml_get_cursor() - 1) == TAB
4182 || (*(ml_get_cursor() - 1) == ' '
4183 && (!*inserted_space_p
4184 || arrow_used))))))
4185 {
4186 int ts;
4187 colnr_T vcol;
4188 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004189 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190
4191 *inserted_space_p = FALSE;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004192 // Compute the virtual column where we want to be. Since
4193 // 'showbreak' may get in the way, need to get the last column of
4194 // the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004196 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 dec_cursor();
4198 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
4199 inc_cursor();
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004200#ifdef FEAT_VARTABS
4201 if (p_sta && in_indent)
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004202 {
4203 ts = (int)get_sw_value(curbuf);
4204 want_vcol = (want_vcol / ts) * ts;
4205 }
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004206 else
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004207 want_vcol = tabstop_start(want_vcol, get_sts_value(),
Bram Moolenaar424bcae2022-01-31 14:59:41 +00004208 curbuf->b_p_vsts_array);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004209#else
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004210 if (p_sta && in_indent)
4211 ts = (int)get_sw_value(curbuf);
4212 else
4213 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214 want_vcol = (want_vcol / ts) * ts;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004215#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004217 // delete characters until we are at or before want_vcol
Bram Moolenaar0971c7a2022-06-26 12:59:02 +01004218 while (vcol > want_vcol && curwin->w_cursor.col > 0
Bram Moolenaar1c465442017-03-12 20:10:05 +01004219 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004220 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004222 // insert extra spaces until we are at want_vcol
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 while (vcol < want_vcol)
4224 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004225 // Remember the first char we inserted
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004226 if (curwin->w_cursor.lnum == Insstart_orig.lnum
4227 && curwin->w_cursor.col < Insstart_orig.col)
4228 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 if (State & VREPLACE_FLAG)
4231 ins_char(' ');
4232 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 {
4234 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004235 if ((State & REPLACE_FLAG))
4236 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 }
4238 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
4239 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004240
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004241 // If we are now back where we started delete one character. Can
4242 // happen when using 'sts' and 'linebreak'.
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00004243 if (vcol >= start_vcol)
4244 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 }
4246
4247 /*
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004248 * Delete up to starting point, start of line or previous word.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 */
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004250 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004252 int cclass = 0, prev_cclass = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004254 if (has_mbyte)
4255 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004256 do
4257 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004259 if (!revins_on) // put cursor on char to be deleted
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004260#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 dec_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004262
4263 cc = gchar_cursor();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004264 // look multi-byte character class
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004265 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004267 prev_cclass = cclass;
4268 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 }
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004270
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004271 // start of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004272 if (mode == BACKSPACE_WORD && !vim_isspace(cc))
4273 {
4274 mode = BACKSPACE_WORD_NOT_SPACE;
4275 temp = vim_iswordc(cc);
4276 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004277 // end of word?
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004278 else if (mode == BACKSPACE_WORD_NOT_SPACE
4279 && ((vim_isspace(cc) || vim_iswordc(cc) != temp)
Bram Moolenaar13505972019-01-24 15:04:48 +01004280 || prev_cclass != cclass))
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004281 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282#ifdef FEAT_RIGHTLEFT
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004283 if (!revins_on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004285 inc_cursor();
4286#ifdef FEAT_RIGHTLEFT
4287 else if (State & REPLACE_FLAG)
4288 dec_cursor();
4289#endif
4290 break;
4291 }
4292 if (State & REPLACE_FLAG)
4293 replace_do_bs(-1);
4294 else
4295 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004296 if (enc_utf8 && p_deco)
4297 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004298 (void)del_char(FALSE);
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004299 /*
4300 * If there are combining characters and 'delcombine' is set
4301 * move the cursor back. Don't back up before the base
4302 * character.
4303 */
4304 if (enc_utf8 && p_deco && cpc[0] != NUL)
4305 inc_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004306#ifdef FEAT_RIGHTLEFT
4307 if (revins_chars)
4308 {
4309 revins_chars--;
4310 revins_legal++;
4311 }
4312 if (revins_on && gchar_cursor() == NUL)
4313 break;
4314#endif
4315 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004316 // Just a single backspace?:
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004317 if (mode == BACKSPACE_CHAR)
4318 break;
4319 } while (
4320#ifdef FEAT_RIGHTLEFT
4321 revins_on ||
4322#endif
4323 (curwin->w_cursor.col > mincol
Bram Moolenaaraa0489e2020-04-17 19:41:21 +02004324 && (can_bs(BS_NOSTOP)
4325 || (curwin->w_cursor.lnum != Insstart_orig.lnum
4326 || curwin->w_cursor.col != Insstart_orig.col)
4327 )));
Bram Moolenaar310f2d52015-03-24 17:49:51 +01004328 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 did_backspace = TRUE;
4330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 did_si = FALSE;
4332 can_si = FALSE;
4333 can_si_back = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 if (curwin->w_cursor.col <= 1)
4335 did_ai = FALSE;
Bram Moolenaar5d20fbf2021-12-29 16:05:31 +00004336
Bram Moolenaar5d20fbf2021-12-29 16:05:31 +00004337 if (call_fix_indent)
4338 fix_indent();
Bram Moolenaar5d20fbf2021-12-29 16:05:31 +00004339
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 /*
4341 * It's a little strange to put backspaces into the redo
4342 * buffer, but it makes auto-indent a lot easier to deal
4343 * with.
4344 */
4345 AppendCharToRedobuff(c);
4346
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004347 // If deleted before the insertion point, adjust it
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004348 if (curwin->w_cursor.lnum == Insstart_orig.lnum
Bram Moolenaar891e1fd2018-06-06 18:02:39 +02004349 && curwin->w_cursor.col < Insstart_orig.col)
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02004350 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004352 // vi behaviour: the cursor moves backward but the character that
4353 // was there remains visible
4354 // Vim behaviour: the cursor moves backward and the character that
4355 // was there is erased from the screen.
4356 // We can emulate the vi behaviour by pretending there is a dollar
4357 // displayed even when there isn't.
4358 // --pkv Sun Jan 19 01:56:40 EST 2003
Bram Moolenaar76b9b362012-02-04 23:35:00 +01004359 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 dollar_vcol = curwin->w_virtcol;
4361
Bram Moolenaarce3be472008-01-14 19:12:28 +00004362#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004363 // When deleting a char the cursor line must never be in a closed fold.
4364 // E.g., when 'foldmethod' is indent and deleting the first non-white
4365 // char before a Tab.
Bram Moolenaarce3be472008-01-14 19:12:28 +00004366 if (did_backspace)
4367 foldOpenCursor();
4368#endif
4369
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 return did_backspace;
4371}
4372
Bram Moolenaarec2da362017-01-21 20:04:22 +01004373/*
4374 * Handle receiving P_PS: start paste mode. Inserts the following text up to
4375 * P_PE literally.
4376 * When "drop" is TRUE then consume the text and drop it.
4377 */
4378 int
4379bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
4380{
4381 int c;
4382 char_u buf[NUMBUFLEN + MB_MAXBYTES];
4383 int idx = 0;
4384 char_u *end = find_termcode((char_u *)"PE");
4385 int ret_char = -1;
4386 int save_allow_keys = allow_keys;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004387 int save_paste = p_paste;
Bram Moolenaarec2da362017-01-21 20:04:22 +01004388
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004389 // If the end code is too long we can't detect it, read everything.
Bram Moolenaarfe4bbac2020-01-20 21:12:20 +01004390 if (end != NULL && STRLEN(end) >= NUMBUFLEN)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004391 end = NULL;
4392 ++no_mapping;
4393 allow_keys = 0;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004394 if (!p_paste)
4395 // Also have the side effects of setting 'paste' to make it work much
4396 // faster.
Bram Moolenaar31e5c602022-04-15 13:53:33 +01004397 set_option_value_give_err((char_u *)"paste", TRUE, NULL, 0);
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004398
Bram Moolenaarec2da362017-01-21 20:04:22 +01004399 for (;;)
4400 {
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004401 // When the end is not defined read everything there is.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004402 if (end == NULL && vpeekc() == NUL)
4403 break;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004404 do
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004405 c = vgetc();
Bram Moolenaarabab0b02019-03-30 18:47:01 +01004406 while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
Bram Moolenaar733a69b2022-12-01 12:03:47 +00004407
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004408 if (c == NUL || got_int || (ex_normal_busy > 0 && c == Ctrl_C))
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004409 // When CTRL-C was encountered the typeahead will be flushed and we
Bram Moolenaar98a336d2020-01-20 20:22:30 +01004410 // won't get the end sequence. Except when using ":normal".
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004411 break;
4412
Bram Moolenaarec2da362017-01-21 20:04:22 +01004413 if (has_mbyte)
4414 idx += (*mb_char2bytes)(c, buf + idx);
4415 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004416 buf[idx++] = c;
4417 buf[idx] = NUL;
Bram Moolenaar866c6882017-04-07 14:02:01 +02004418 if (end != NULL && STRNCMP(buf, end, idx) == 0)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004419 {
4420 if (end[idx] == NUL)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004421 break; // Found the end of paste code.
Bram Moolenaarec2da362017-01-21 20:04:22 +01004422 continue;
4423 }
4424 if (!drop)
4425 {
4426 switch (mode)
4427 {
4428 case PASTE_CMDLINE:
4429 put_on_cmdline(buf, idx, TRUE);
4430 break;
4431
4432 case PASTE_EX:
Bram Moolenaar806d0372022-01-25 20:45:16 +00004433 // add one for the NUL that is going to be appended
4434 if (gap != NULL && ga_grow(gap, idx + 1) == OK)
Bram Moolenaarec2da362017-01-21 20:04:22 +01004435 {
4436 mch_memmove((char *)gap->ga_data + gap->ga_len,
4437 buf, (size_t)idx);
4438 gap->ga_len += idx;
4439 }
4440 break;
4441
4442 case PASTE_INSERT:
4443 if (stop_arrow() == OK)
4444 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004445 c = buf[0];
4446 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL))
4447 ins_eol(c);
4448 else
Bram Moolenaar076e5022017-01-24 18:58:30 +01004449 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01004450 ins_char_bytes(buf, idx);
Bram Moolenaar076e5022017-01-24 18:58:30 +01004451 AppendToRedobuffLit(buf, idx);
4452 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01004453 }
4454 break;
4455
4456 case PASTE_ONE_CHAR:
4457 if (ret_char == -1)
4458 {
Bram Moolenaarec2da362017-01-21 20:04:22 +01004459 if (has_mbyte)
4460 ret_char = (*mb_ptr2char)(buf);
4461 else
Bram Moolenaarec2da362017-01-21 20:04:22 +01004462 ret_char = buf[0];
4463 }
4464 break;
4465 }
4466 }
4467 idx = 0;
4468 }
Bram Moolenaar9e817c82017-01-25 21:36:17 +01004469
Bram Moolenaarec2da362017-01-21 20:04:22 +01004470 --no_mapping;
4471 allow_keys = save_allow_keys;
Bram Moolenaarfdd71552018-07-28 23:12:05 +02004472 if (!save_paste)
Bram Moolenaar31e5c602022-04-15 13:53:33 +01004473 set_option_value_give_err((char_u *)"paste", FALSE, NULL, 0);
Bram Moolenaarec2da362017-01-21 20:04:22 +01004474
4475 return ret_char;
4476}
4477
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004478#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004479 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004480ins_tabline(int c)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004481{
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004482 // We will be leaving the current window, unless closing another tab.
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004483 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
4484 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
4485 {
4486 undisplay_dollar();
4487 start_arrow(&curwin->w_cursor);
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004488 can_cindent = TRUE;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004489 }
4490
4491 if (c == K_TABLINE)
4492 goto_tabpage(current_tab);
4493 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004494 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004495 handle_tabmenu();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004496 redraw_statuslines(); // will redraw the tabline when needed
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004497 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004498}
4499#endif
4500
4501#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004503ins_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504{
4505 pos_T tpos;
4506
4507 undisplay_dollar();
4508 tpos = curwin->w_cursor;
4509 if (gui_do_scroll())
4510 {
4511 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 can_cindent = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 }
4514}
4515
4516 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004517ins_horscroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518{
4519 pos_T tpos;
4520
4521 undisplay_dollar();
4522 tpos = curwin->w_cursor;
Christopher Plewright44c22092022-11-15 17:43:36 +00004523 if (do_mousescroll_horiz(scrollbar_value))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 {
4525 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 can_cindent = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 }
4528}
4529#endif
4530
4531 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004532ins_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533{
4534 pos_T tpos;
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004535 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536
4537#ifdef FEAT_FOLDING
4538 if ((fdo_flags & FDO_HOR) && KeyTyped)
4539 foldOpenCursor();
4540#endif
4541 undisplay_dollar();
4542 tpos = curwin->w_cursor;
4543 if (oneleft() == OK)
4544 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004545#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004546 // Only call start_arrow() when not busy with preediting, it will
4547 // break undo. K_LEFT is inserted in im_correct_cursor().
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02004548 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting())
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004549#endif
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004550 {
4551 start_arrow_with_change(&tpos, end_change);
4552 if (!end_change)
4553 AppendCharToRedobuff(K_LEFT);
4554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004556 // If exit reversed string, position is fixed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
4558 revins_legal++;
4559 revins_chars++;
4560#endif
4561 }
4562
4563 /*
4564 * if 'whichwrap' set for cursor in insert mode may go to
4565 * previous line
4566 */
4567 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
4568 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004569 // always break undo when moving upwards/downwards, else undo may break
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 start_arrow(&tpos);
4571 --(curwin->w_cursor.lnum);
4572 coladvance((colnr_T)MAXCOL);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004573 curwin->w_set_curswant = TRUE; // so we stay at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 }
4575 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004576 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004577 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578}
4579
4580 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004581ins_home(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582{
4583 pos_T tpos;
4584
4585#ifdef FEAT_FOLDING
4586 if ((fdo_flags & FDO_HOR) && KeyTyped)
4587 foldOpenCursor();
4588#endif
4589 undisplay_dollar();
4590 tpos = curwin->w_cursor;
4591 if (c == K_C_HOME)
4592 curwin->w_cursor.lnum = 1;
4593 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 curwin->w_curswant = 0;
4596 start_arrow(&tpos);
4597}
4598
4599 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004600ins_end(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601{
4602 pos_T tpos;
4603
4604#ifdef FEAT_FOLDING
4605 if ((fdo_flags & FDO_HOR) && KeyTyped)
4606 foldOpenCursor();
4607#endif
4608 undisplay_dollar();
4609 tpos = curwin->w_cursor;
4610 if (c == K_C_END)
4611 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4612 coladvance((colnr_T)MAXCOL);
4613 curwin->w_curswant = MAXCOL;
4614
4615 start_arrow(&tpos);
4616}
4617
4618 static void
Yegappan Lakshmanana23a11b2023-02-21 14:27:41 +00004619ins_s_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004621 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622#ifdef FEAT_FOLDING
4623 if ((fdo_flags & FDO_HOR) && KeyTyped)
4624 foldOpenCursor();
4625#endif
4626 undisplay_dollar();
4627 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
4628 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004629 start_arrow_with_change(&curwin->w_cursor, end_change);
4630 if (!end_change)
4631 AppendCharToRedobuff(K_S_LEFT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 (void)bck_word(1L, FALSE, FALSE);
4633 curwin->w_set_curswant = TRUE;
4634 }
4635 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004636 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004637 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638}
4639
4640 static void
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004641ins_right(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004643 int end_change = dont_sync_undo == FALSE; // end undoable change
4644
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645#ifdef FEAT_FOLDING
4646 if ((fdo_flags & FDO_HOR) && KeyTyped)
4647 foldOpenCursor();
4648#endif
4649 undisplay_dollar();
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004650 if (gchar_cursor() != NUL || virtual_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 {
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004652 start_arrow_with_change(&curwin->w_cursor, end_change);
4653 if (!end_change)
4654 AppendCharToRedobuff(K_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 if (virtual_active())
4657 oneright();
4658 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004661 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 ++curwin->w_cursor.col;
4664 }
4665
4666#ifdef FEAT_RIGHTLEFT
4667 revins_legal++;
4668 if (revins_chars)
4669 revins_chars--;
4670#endif
4671 }
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004672 // if 'whichwrap' set for cursor in insert mode, may move the
4673 // cursor to the next line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 else if (vim_strchr(p_ww, ']') != NULL
4675 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4676 {
4677 start_arrow(&curwin->w_cursor);
4678 curwin->w_set_curswant = TRUE;
4679 ++curwin->w_cursor.lnum;
4680 curwin->w_cursor.col = 0;
4681 }
4682 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004683 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02004684 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685}
4686
4687 static void
Yegappan Lakshmanana23a11b2023-02-21 14:27:41 +00004688ins_s_right(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689{
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004690 int end_change = dont_sync_undo == FALSE; // end undoable change
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691#ifdef FEAT_FOLDING
4692 if ((fdo_flags & FDO_HOR) && KeyTyped)
4693 foldOpenCursor();
4694#endif
4695 undisplay_dollar();
4696 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4697 || gchar_cursor() != NUL)
4698 {
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004699 start_arrow_with_change(&curwin->w_cursor, end_change);
4700 if (!end_change)
4701 AppendCharToRedobuff(K_S_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 (void)fwd_word(1L, FALSE, 0);
4703 curwin->w_set_curswant = TRUE;
4704 }
4705 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004706 vim_beep(BO_CRSR);
Bram Moolenaar75bf3d22019-03-26 22:46:05 +01004707 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708}
4709
4710 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004711ins_up(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004712 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713{
4714 pos_T tpos;
4715 linenr_T old_topline = curwin->w_topline;
4716#ifdef FEAT_DIFF
4717 int old_topfill = curwin->w_topfill;
4718#endif
4719
4720 undisplay_dollar();
4721 tpos = curwin->w_cursor;
4722 if (cursor_up(1L, TRUE) == OK)
4723 {
4724 if (startcol)
4725 coladvance(getvcol_nolist(&Insstart));
4726 if (old_topline != curwin->w_topline
4727#ifdef FEAT_DIFF
4728 || old_topfill != curwin->w_topfill
4729#endif
4730 )
Bram Moolenaara4d158b2022-08-14 14:17:45 +01004731 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 can_cindent = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 }
4735 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004736 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737}
4738
4739 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004740ins_pageup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741{
4742 pos_T tpos;
4743
4744 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004745
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004746 if (mod_mask & MOD_MASK_CTRL)
4747 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004748 // <C-PageUp>: tab page back
Bram Moolenaarbc444822006-10-17 11:37:50 +00004749 if (first_tabpage->tp_next != NULL)
4750 {
4751 start_arrow(&curwin->w_cursor);
4752 goto_tabpage(-1);
4753 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004754 return;
4755 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004756
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 tpos = curwin->w_cursor;
4758 if (onepage(BACKWARD, 1L) == OK)
4759 {
4760 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 can_cindent = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 }
4763 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004764 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765}
4766
4767 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004768ins_down(
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004769 int startcol) // when TRUE move to Insstart.col
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770{
4771 pos_T tpos;
4772 linenr_T old_topline = curwin->w_topline;
4773#ifdef FEAT_DIFF
4774 int old_topfill = curwin->w_topfill;
4775#endif
4776
4777 undisplay_dollar();
4778 tpos = curwin->w_cursor;
4779 if (cursor_down(1L, TRUE) == OK)
4780 {
4781 if (startcol)
4782 coladvance(getvcol_nolist(&Insstart));
4783 if (old_topline != curwin->w_topline
4784#ifdef FEAT_DIFF
4785 || old_topfill != curwin->w_topfill
4786#endif
4787 )
Bram Moolenaara4d158b2022-08-14 14:17:45 +01004788 redraw_later(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 can_cindent = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 }
4792 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004793 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794}
4795
4796 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004797ins_pagedown(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798{
4799 pos_T tpos;
4800
4801 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004802
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004803 if (mod_mask & MOD_MASK_CTRL)
4804 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004805 // <C-PageDown>: tab page forward
Bram Moolenaarbc444822006-10-17 11:37:50 +00004806 if (first_tabpage->tp_next != NULL)
4807 {
4808 start_arrow(&curwin->w_cursor);
4809 goto_tabpage(0);
4810 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004811 return;
4812 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00004813
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 tpos = curwin->w_cursor;
4815 if (onepage(FORWARD, 1L) == OK)
4816 {
4817 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 can_cindent = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819 }
4820 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02004821 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822}
4823
4824#ifdef FEAT_DND
4825 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004826ins_drop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827{
Bram Moolenaarc3516f72020-09-08 22:45:35 +02004828 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829}
4830#endif
4831
4832/*
4833 * Handle TAB in Insert or Replace mode.
4834 * Return TRUE when the TAB needs to be inserted like a normal character.
4835 */
4836 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004837ins_tab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838{
4839 int ind;
4840 int i;
4841 int temp;
4842
4843 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
4844 Insstart_blank_vcol = get_nolist_virtcol();
4845 if (echeck_abbr(TAB + ABBR_OFF))
4846 return FALSE;
4847
4848 ind = inindent(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 if (ind)
4850 can_cindent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851
4852 /*
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004853 * When nothing special, insert TAB like a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 */
4855 if (!curbuf->b_p_et
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004856#ifdef FEAT_VARTABS
4857 && !(p_sta && ind
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004858 // These five lines mean 'tabstop' != 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004859 && ((tabstop_count(curbuf->b_p_vts_array) > 1)
4860 || (tabstop_count(curbuf->b_p_vts_array) == 1
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01004861 && tabstop_first(curbuf->b_p_vts_array)
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004862 != get_sw_value(curbuf))
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01004863 || (tabstop_count(curbuf->b_p_vts_array) == 0
4864 && curbuf->b_p_ts != get_sw_value(curbuf))))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004865 && tabstop_count(curbuf->b_p_vsts_array) == 0
4866#else
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004867 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004868#endif
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004869 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 return TRUE;
4871
4872 if (stop_arrow() == FAIL)
4873 return TRUE;
4874
4875 did_ai = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 did_si = FALSE;
4877 can_si = FALSE;
4878 can_si_back = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 AppendToRedobuff((char_u *)"\t");
4880
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004881#ifdef FEAT_VARTABS
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004882 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004883 {
Bram Moolenaarc9fe5ab2018-07-05 22:27:08 +02004884 temp = (int)get_sw_value(curbuf);
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004885 temp -= get_nolist_virtcol() % temp;
4886 }
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004887 else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts != 0)
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01004888 // use 'softtabstop' when set
Bram Moolenaar33d5ab32018-07-02 20:51:24 +02004889 temp = tabstop_padding(get_nolist_virtcol(), get_sts_value(),
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004890 curbuf->b_p_vsts_array);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004891 else // otherwise use 'tabstop'
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004892 temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts,
4893 curbuf->b_p_vts_array);
4894#else
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004895 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004896 temp = (int)get_sw_value(curbuf);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004897 else if (curbuf->b_p_sts != 0) // use 'softtabstop' when set
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004898 temp = (int)get_sts_value();
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004899 else // otherwise use 'tabstop'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 temp = (int)curbuf->b_p_ts;
4901 temp -= get_nolist_virtcol() % temp;
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903
4904 /*
4905 * Insert the first space with ins_char(). It will delete one char in
4906 * replace mode. Insert the rest with ins_str(); it will not delete any
Bram Moolenaar24959102022-05-07 20:01:16 +01004907 * chars. For MODE_VREPLACE state, we use ins_char() for all characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 */
4909 ins_char(' ');
4910 while (--temp > 0)
4911 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 if (State & VREPLACE_FLAG)
4913 ins_char(' ');
4914 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 {
4916 ins_str((char_u *)" ");
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004917 if (State & REPLACE_FLAG) // no char replaced
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 replace_push(NUL);
4919 }
4920 }
4921
4922 /*
4923 * When 'expandtab' not set: Replace spaces by TABs where possible.
4924 */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004925#ifdef FEAT_VARTABS
4926 if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01004927 || get_sts_value() > 0
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004928 || (p_sta && ind)))
4929#else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02004930 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar04958cb2018-06-23 19:23:02 +02004931#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 {
4933 char_u *ptr;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004934 char_u *saved_line = NULL; // init for GCC
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 pos_T fpos;
4937 pos_T *cursor;
4938 colnr_T want_vcol, vcol;
4939 int change_col = -1;
4940 int save_list = curwin->w_p_list;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01004941 char_u *tab = (char_u *)"\t";
4942 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943
4944 /*
Bram Moolenaar24959102022-05-07 20:01:16 +01004945 * Get the current line. For MODE_VREPLACE state, don't make real
4946 * changes yet, just work on a copy of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 if (State & VREPLACE_FLAG)
4949 {
4950 pos = curwin->w_cursor;
4951 cursor = &pos;
4952 saved_line = vim_strsave(ml_get_curline());
4953 if (saved_line == NULL)
4954 return FALSE;
4955 ptr = saved_line + pos.col;
4956 }
4957 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 {
4959 ptr = ml_get_cursor();
4960 cursor = &curwin->w_cursor;
4961 }
4962
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004963 // When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
4965 curwin->w_p_list = FALSE;
4966
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004967 // Find first white before the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 fpos = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +01004969 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 {
4971 --fpos.col;
4972 --ptr;
4973 }
4974
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004975 // In Replace mode, don't change characters before the insert point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 if ((State & REPLACE_FLAG)
4977 && fpos.lnum == Insstart.lnum
4978 && fpos.col < Insstart.col)
4979 {
4980 ptr += Insstart.col - fpos.col;
4981 fpos.col = Insstart.col;
4982 }
4983
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004984 // compute virtual column numbers of first white and cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 getvcol(curwin, &fpos, &vcol, NULL, NULL);
4986 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
4987
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01004988 init_chartabsize_arg(&cts, curwin, 0, vcol, tab, tab);
4989
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01004990 // Use as many TABs as possible. Beware of 'breakindent', 'showbreak'
4991 // and 'linebreak' adding extra virtual columns.
Bram Moolenaar1c465442017-03-12 20:10:05 +01004992 while (VIM_ISWHITE(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01004994 i = lbr_chartabsize(&cts);
4995 if (cts.cts_vcol + i > want_vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 break;
4997 if (*ptr != TAB)
4998 {
4999 *ptr = TAB;
5000 if (change_col < 0)
5001 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005002 change_col = fpos.col; // Column of first change
5003 // May have to adjust Insstart
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
5005 Insstart.col = fpos.col;
5006 }
5007 }
5008 ++fpos.col;
5009 ++ptr;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005010 cts.cts_vcol += i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005012 vcol = cts.cts_vcol;
5013 clear_chartabsize_arg(&cts);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014
5015 if (change_col >= 0)
5016 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005017 int repl_off = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005019 // Skip over the spaces we need.
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005020 init_chartabsize_arg(&cts, curwin, 0, vcol, ptr, ptr);
5021 while (cts.cts_vcol < want_vcol && *cts.cts_ptr == ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005023 cts.cts_vcol += lbr_chartabsize(&cts);
5024 ++cts.cts_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 ++repl_off;
5026 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005027 ptr = cts.cts_ptr;
5028 vcol = cts.cts_vcol;
5029 clear_chartabsize_arg(&cts);
5030
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 if (vcol > want_vcol)
5032 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005033 // Must have a char with 'showbreak' just before it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 --ptr;
5035 --repl_off;
5036 }
5037 fpos.col += repl_off;
5038
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005039 // Delete following spaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 i = cursor->col - fpos.col;
5041 if (i > 0)
5042 {
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005043#ifdef FEAT_PROP_POPUP
5044 if (!(State & VREPLACE_FLAG))
5045 {
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005046 char_u *newp;
5047 int col;
5048
5049 newp = alloc(curbuf->b_ml.ml_line_len - i);
5050 if (newp == NULL)
5051 return FALSE;
5052
5053 col = ptr - curbuf->b_ml.ml_line_ptr;
5054 if (col > 0)
5055 mch_memmove(newp, ptr - col, col);
5056 mch_memmove(newp + col, ptr + i,
5057 curbuf->b_ml.ml_line_len - col - i);
5058
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01005059 if (curbuf->b_ml.ml_flags & (ML_LINE_DIRTY | ML_ALLOCATED))
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005060 vim_free(curbuf->b_ml.ml_line_ptr);
5061 curbuf->b_ml.ml_line_ptr = newp;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005062 curbuf->b_ml.ml_line_len -= i;
Bram Moolenaarac15fd82020-01-09 21:35:48 +01005063 curbuf->b_ml.ml_flags =
5064 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
Bram Moolenaar5cb0b932020-01-03 21:25:59 +01005065 }
5066 else
5067#endif
5068 STRMOVE(ptr, ptr + i);
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005069 // correct replace stack.
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005070 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 for (temp = i; --temp >= 0; )
5072 replace_join(repl_off);
5073 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00005074#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02005075 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00005076 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02005077 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00005078 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
5079 (char_u *)"\t", 1);
5080 }
5081#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 cursor->col -= i;
5083
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 /*
Bram Moolenaar24959102022-05-07 20:01:16 +01005085 * In MODE_VREPLACE state, we haven't changed anything yet. Do it
5086 * now by backspacing over the changed spacing and then inserting
5087 * the new spacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 */
5089 if (State & VREPLACE_FLAG)
5090 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005091 // Backspace from real cursor to change_col
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 backspace_until_column(change_col);
5093
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005094 // Insert each char in saved_line from changed_col to
5095 // ptr-cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 ins_bytes_len(saved_line + change_col,
5097 cursor->col - change_col);
5098 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 }
5100
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 if (State & VREPLACE_FLAG)
5102 vim_free(saved_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 curwin->w_p_list = save_list;
5104 }
5105
5106 return FALSE;
5107}
5108
5109/*
5110 * Handle CR or NL in insert mode.
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005111 * Return FAIL when out of memory or can't undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005113 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005114ins_eol(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115{
5116 int i;
5117
5118 if (echeck_abbr(c + ABBR_OFF))
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005119 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 if (stop_arrow() == FAIL)
Bram Moolenaarc3c3e692018-04-26 22:30:33 +02005121 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 undisplay_dollar();
5123
5124 /*
5125 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
5126 * character under the cursor. Only push a NUL on the replace stack,
5127 * nothing to put back when the NL is deleted.
5128 */
Bram Moolenaar1f0bfe52018-07-29 16:09:22 +02005129 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 replace_push(NUL);
5131
5132 /*
Bram Moolenaar24959102022-05-07 20:01:16 +01005133 * In MODE_VREPLACE state, a NL replaces the rest of the line, and starts
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 * replacing the next line, so we push all of the characters left on the
5135 * line onto the replace stack. This is not done here though, it is done
5136 * in open_line().
5137 */
5138
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005139 // Put cursor on NUL if on the last char and coladd is 1 (happens after
5140 // CTRL-O).
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005141 if (virtual_active() && curwin->w_cursor.coladd > 0)
5142 coladvance(getviscol());
Bram Moolenaarf193fff2006-04-27 00:02:13 +00005143
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144#ifdef FEAT_RIGHTLEFT
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005145 // NL in reverse insert will always start in the end of
5146 // current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 if (revins_on)
5148 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
5149#endif
5150
5151 AppendToRedobuff(NL_STR);
5152 i = open_line(FORWARD,
Bram Moolenaar6e371ec2021-12-12 14:16:39 +00005153 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM : 0, old_indent,
5154 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 old_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 can_cindent = TRUE;
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005157#ifdef FEAT_FOLDING
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005158 // When inserting a line the cursor line must never be in a closed fold.
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00005159 foldOpenCursor();
5160#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161
Bram Moolenaar24a2d722018-04-24 19:36:43 +02005162 return i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163}
5164
5165#ifdef FEAT_DIGRAPHS
5166/*
5167 * Handle digraph in insert mode.
5168 * Returns character still to be inserted, or NUL when nothing remaining to be
5169 * done.
5170 */
5171 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005172ins_digraph(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173{
5174 int c;
5175 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005176 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177
5178 pc_status = PC_STATUS_UNSET;
5179 if (redrawing() && !char_avail())
5180 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005181 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005182 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183
5184 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005185 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 add_to_showcmd_c(Ctrl_K);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 }
5188
5189#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005190 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191#endif
5192
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005193 // don't map the digraph chars. This also prevents the
5194 // mode message to be deleted when ESC is hit
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 ++no_mapping;
5196 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005197 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 --no_mapping;
5199 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005200 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005201 // when the line fits in 'columns' the '?' is at the start of the next
5202 // line and will not be removed by the redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005203 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02005204
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005205 if (IS_SPECIAL(c) || mod_mask) // special key
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 clear_showcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 insert_special(c, TRUE, FALSE);
5209 return NUL;
5210 }
5211 if (c != ESC)
5212 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005213 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 if (redrawing() && !char_avail())
5215 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005216 // may need to redraw when no more chars available now
Bram Moolenaar754b5602006-02-09 23:53:20 +00005217 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218
5219 if (char2cells(c) == 1)
5220 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00005221 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005223 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 add_to_showcmd_c(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 }
5227 ++no_mapping;
5228 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005229 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 --no_mapping;
5231 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005232 if (did_putchar)
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005233 // when the line fits in 'columns' the '?' is at the start of the
5234 // next line and will not be removed by a redraw
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02005235 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 if (cc != ESC)
5237 {
5238 AppendToRedobuff((char_u *)CTRL_V_STR);
h-east29b85712021-07-26 21:54:04 +02005239 c = digraph_get(c, cc, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 clear_showcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 return c;
5242 }
5243 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 clear_showcmd();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 return NUL;
5246}
5247#endif
5248
5249/*
5250 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
5251 * Returns the char to be inserted, or NUL if none found.
5252 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02005253 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005254ins_copychar(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005256 int c;
5257 char_u *ptr, *prev_ptr;
5258 char_u *line;
5259 chartabsize_T cts;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260
5261 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
5262 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02005263 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 return NUL;
5265 }
5266
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005267 // try to advance to the cursor column
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01005268 validate_virtcol();
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005269 line = ml_get(lnum);
5270 prev_ptr = line;
5271 init_chartabsize_arg(&cts, curwin, lnum, 0, line, line);
5272 while (cts.cts_vcol < curwin->w_virtcol && *cts.cts_ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005274 prev_ptr = cts.cts_ptr;
5275 cts.cts_vcol += lbr_chartabsize_adv(&cts);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005277 if (cts.cts_vcol > curwin->w_virtcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 ptr = prev_ptr;
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01005279 else
5280 ptr = cts.cts_ptr;
5281 clear_chartabsize_arg(&cts);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 c = (*mb_ptr2char)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 if (c == NUL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02005285 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 return c;
5287}
5288
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005289/*
5290 * CTRL-Y or CTRL-E typed in Insert mode.
5291 */
5292 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005293ins_ctrl_ey(int tc)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005294{
5295 int c = tc;
5296
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005297 if (ctrl_x_mode_scroll())
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005298 {
5299 if (c == Ctrl_Y)
5300 scrolldown_clamp();
5301 else
5302 scrollup_clamp();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01005303 redraw_later(UPD_VALID);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005304 }
5305 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005306 {
5307 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
5308 if (c != NUL)
5309 {
5310 long tw_save;
5311
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005312 // The character must be taken literally, insert like it
5313 // was typed after a CTRL-V, and pretend 'textwidth'
5314 // wasn't set. Digits, 'o' and 'x' are special after a
5315 // CTRL-V, don't use it for these.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005316 if (c < 256 && !isalnum(c))
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005317 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005318 tw_save = curbuf->b_p_tw;
5319 curbuf->b_p_tw = -1;
5320 insert_special(c, TRUE, FALSE);
5321 curbuf->b_p_tw = tw_save;
5322#ifdef FEAT_RIGHTLEFT
5323 revins_chars++;
5324 revins_legal++;
5325#endif
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005326 c = Ctrl_V; // pretend CTRL-V is last character
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005327 auto_format(FALSE, TRUE);
5328 }
5329 }
5330 return c;
5331}
5332
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333/*
5334 * Get the value that w_virtcol would have when 'list' is off.
5335 * Unless 'cpo' contains the 'L' flag.
5336 */
Bram Moolenaarf9514162018-11-22 03:08:29 +01005337 colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01005338get_nolist_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339{
Bram Moolenaarf9514162018-11-22 03:08:29 +01005340 // check validity of cursor in current buffer
5341 if (curwin->w_buffer == NULL
5342 || curwin->w_buffer->b_ml.ml_mfp == NULL
5343 || curwin->w_cursor.lnum > curwin->w_buffer->b_ml.ml_line_count)
5344 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
5346 return getvcol_nolist(&curwin->w_cursor);
5347 validate_virtcol();
5348 return curwin->w_virtcol;
5349}
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005350
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005351#if defined(FEAT_EVAL)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005352/*
5353 * Handle the InsertCharPre autocommand.
5354 * "c" is the character that was typed.
5355 * Return a pointer to allocated memory with the replacement string.
5356 * Return NULL to continue inserting "c".
5357 */
5358 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01005359do_insert_char_pre(int c)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005360{
Bram Moolenaar704984a2012-06-01 14:57:51 +02005361 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +02005362 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005363 int save_State = State;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005364
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005365 // Return quickly when there is nothing to do.
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005366 if (!has_insertcharpre())
5367 return NULL;
5368
Bram Moolenaar704984a2012-06-01 14:57:51 +02005369 if (has_mbyte)
5370 buf[(*mb_char2bytes)(c, buf)] = NUL;
5371 else
Bram Moolenaar704984a2012-06-01 14:57:51 +02005372 {
5373 buf[0] = c;
5374 buf[1] = NUL;
5375 }
5376
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005377 // Lock the text to avoid weird things from happening.
zeertzjqcfe45652022-05-27 17:26:55 +01005378 ++textlock;
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005379 set_vim_var_string(VV_CHAR, buf, -1); // set v:char
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005380
Bram Moolenaar704984a2012-06-01 14:57:51 +02005381 res = NULL;
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005382 if (ins_apply_autocmds(EVENT_INSERTCHARPRE))
Bram Moolenaar704984a2012-06-01 14:57:51 +02005383 {
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005384 // Get the value of v:char. It may be empty or more than one
5385 // character. Only use it when changed, otherwise continue with the
5386 // original character to avoid breaking autoindent.
Bram Moolenaar704984a2012-06-01 14:57:51 +02005387 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
5388 res = vim_strsave(get_vim_var_str(VV_CHAR));
5389 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005390
Bram Moolenaar5d18efe2019-12-01 21:11:22 +01005391 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
zeertzjqcfe45652022-05-27 17:26:55 +01005392 --textlock;
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005393
Bram Moolenaar8ad16da2019-01-06 15:29:57 +01005394 // Restore the State, it may have been changed.
5395 State = save_State;
5396
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005397 return res;
5398}
5399#endif
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005400
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005401 int
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005402get_can_cindent(void)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005403{
5404 return can_cindent;
5405}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02005406
5407 void
5408set_can_cindent(int val)
5409{
5410 can_cindent = val;
5411}
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005412
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005413/*
5414 * Trigger "event" and take care of fixing undo.
5415 */
Bram Moolenaar7591bb32019-03-30 13:53:47 +01005416 int
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005417ins_apply_autocmds(event_T event)
5418{
5419 varnumber_T tick = CHANGEDTICK(curbuf);
5420 int r;
5421
5422 r = apply_autocmds(event, NULL, NULL, FALSE, curbuf);
5423
5424 // If u_savesub() was called then we are not prepared to start
5425 // a new line. Call u_save() with no contents to fix that.
Bram Moolenaardb934952020-04-27 20:18:31 +02005426 // Except when leaving Insert mode.
5427 if (event != EVENT_INSERTLEAVE && tick != CHANGEDTICK(curbuf))
Bram Moolenaar9fa95062018-08-08 22:08:32 +02005428 u_save(curwin->w_cursor.lnum, (linenr_T)(curwin->w_cursor.lnum + 1));
5429
5430 return r;
5431}