blob: 8746436fbae24f991643fb0a8089b1597d9d6d06 [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
16#ifdef FEAT_INS_EXPAND
17/*
18 * definitions used for CTRL-X submode
19 */
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010020# define CTRL_X_WANT_IDENT 0x100
Bram Moolenaar071d4272004-06-13 20:20:40 +000021
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010022# define CTRL_X_NORMAL 0 /* CTRL-N CTRL-P completion, default */
23# define CTRL_X_NOT_DEFINED_YET 1
24# define CTRL_X_SCROLL 2
25# define CTRL_X_WHOLE_LINE 3
26# define CTRL_X_FILES 4
27# define CTRL_X_TAGS (5 + CTRL_X_WANT_IDENT)
28# define CTRL_X_PATH_PATTERNS (6 + CTRL_X_WANT_IDENT)
29# define CTRL_X_PATH_DEFINES (7 + CTRL_X_WANT_IDENT)
30# define CTRL_X_FINISHED 8
31# define CTRL_X_DICTIONARY (9 + CTRL_X_WANT_IDENT)
32# define CTRL_X_THESAURUS (10 + CTRL_X_WANT_IDENT)
33# define CTRL_X_CMDLINE 11
34# define CTRL_X_FUNCTION 12
35# define CTRL_X_OMNI 13
36# define CTRL_X_SPELL 14
37# define CTRL_X_LOCAL_MSG 15 /* only used in "ctrl_x_msgs" */
38# define CTRL_X_EVAL 16 /* for builtin function complete() */
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010040# define CTRL_X_MSG(i) ctrl_x_msgs[(i) & ~CTRL_X_WANT_IDENT]
41# define CTRL_X_MODE_LINE_OR_EVAL(m) ((m) == CTRL_X_WHOLE_LINE || (m) == CTRL_X_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010043/* Message for CTRL-X mode, index is ctrl_x_mode. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000044static char *ctrl_x_msgs[] =
45{
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010046 N_(" Keyword completion (^N^P)"), /* CTRL_X_NORMAL, ^P/^N compl. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +000047 N_(" ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)"),
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010048 NULL, /* CTRL_X_SCROLL: depends on state */
Bram Moolenaar071d4272004-06-13 20:20:40 +000049 N_(" Whole line completion (^L^N^P)"),
50 N_(" File name completion (^F^N^P)"),
51 N_(" Tag completion (^]^N^P)"),
52 N_(" Path pattern completion (^N^P)"),
53 N_(" Definition completion (^D^N^P)"),
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010054 NULL, /* CTRL_X_FINISHED */
Bram Moolenaar071d4272004-06-13 20:20:40 +000055 N_(" Dictionary completion (^K^N^P)"),
56 N_(" Thesaurus completion (^T^N^P)"),
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +000057 N_(" Command-line completion (^V^N^P)"),
58 N_(" User defined completion (^U^N^P)"),
Bram Moolenaarf75a9632005-09-13 21:20:47 +000059 N_(" Omni completion (^O^N^P)"),
Bram Moolenaar910f66f2006-04-05 20:41:53 +000060 N_(" Spelling suggestion (s^N^P)"),
Bram Moolenaar4be06f92005-07-29 22:36:03 +000061 N_(" Keyword Local completion (^N^P)"),
Bram Moolenaare4214502015-03-05 18:08:43 +010062 NULL, /* CTRL_X_EVAL doesn't use msg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000063};
64
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000065static char e_hitend[] = N_("Hit end of paragraph");
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010066# ifdef FEAT_COMPL_FUNC
Bram Moolenaar37dd0182010-11-10 16:54:20 +010067static char e_complwin[] = N_("E839: Completion function changed window");
68static char e_compldel[] = N_("E840: Completion function deleted text");
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010069# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
71/*
72 * Structure used to store one match for insert completion.
73 */
Bram Moolenaard1f56e62006-02-22 21:25:37 +000074typedef struct compl_S compl_T;
75struct compl_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000076{
Bram Moolenaar572cb562005-08-05 21:35:02 +000077 compl_T *cp_next;
78 compl_T *cp_prev;
79 char_u *cp_str; /* matched text */
Bram Moolenaard1f56e62006-02-22 21:25:37 +000080 char cp_icase; /* TRUE or FALSE: ignore case */
Bram Moolenaar39f05632006-03-19 22:15:26 +000081 char_u *(cp_text[CPT_COUNT]); /* text for the menu */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +000082 char_u *cp_fname; /* file containing the match, allocated when
83 * cp_flags has FREE_FNAME */
Bram Moolenaar572cb562005-08-05 21:35:02 +000084 int cp_flags; /* ORIGINAL_TEXT, CONT_S_IPOS or FREE_FNAME */
85 int cp_number; /* sequence number */
Bram Moolenaar071d4272004-06-13 20:20:40 +000086};
87
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +010088# define ORIGINAL_TEXT (1) /* the original text when the expansion begun */
89# define FREE_FNAME (2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000090
91/*
92 * All the current matches are stored in a list.
Bram Moolenaar4be06f92005-07-29 22:36:03 +000093 * "compl_first_match" points to the start of the list.
94 * "compl_curr_match" points to the currently selected entry.
95 * "compl_shown_match" is different from compl_curr_match during
96 * ins_compl_get_exp().
Bram Moolenaar071d4272004-06-13 20:20:40 +000097 */
Bram Moolenaar572cb562005-08-05 21:35:02 +000098static compl_T *compl_first_match = NULL;
99static compl_T *compl_curr_match = NULL;
100static compl_T *compl_shown_match = NULL;
Bram Moolenaar4475b622017-05-01 20:46:52 +0200101static compl_T *compl_old_match = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000103/* After using a cursor key <Enter> selects a match in the popup menu,
104 * otherwise it inserts a line break. */
105static int compl_enter_selects = FALSE;
106
Bram Moolenaara6557602006-02-04 22:43:20 +0000107/* When "compl_leader" is not NULL only matches that start with this string
108 * are used. */
109static char_u *compl_leader = NULL;
110
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000111static int compl_get_longest = FALSE; /* put longest common string
112 in compl_leader */
113
Bram Moolenaarb6be1e22015-07-10 18:18:40 +0200114static int compl_no_insert = FALSE; /* FALSE: select & insert
115 TRUE: noinsert */
116static int compl_no_select = FALSE; /* FALSE: select & insert
117 TRUE: noselect */
118
Bram Moolenaara6557602006-02-04 22:43:20 +0000119static int compl_used_match; /* Selected one of the matches. When
120 FALSE the match was edited or using
121 the longest common string. */
122
Bram Moolenaar1423b9d2006-05-07 15:16:06 +0000123static int compl_was_interrupted = FALSE; /* didn't finish finding
124 completions. */
125
126static int compl_restarting = FALSE; /* don't insert match */
127
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000128/* When the first completion is done "compl_started" is set. When it's
129 * FALSE the word to be completed must be located. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000130static int compl_started = FALSE;
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000131
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +0100132/* Which Ctrl-X mode are we in? */
133static int ctrl_x_mode = CTRL_X_NORMAL;
134
Bram Moolenaar031e0dd2009-07-09 16:15:16 +0000135/* Set when doing something for completion that may call edit() recursively,
136 * which is not allowed. */
137static int compl_busy = FALSE;
138
Bram Moolenaar572cb562005-08-05 21:35:02 +0000139static int compl_matches = 0;
140static char_u *compl_pattern = NULL;
141static int compl_direction = FORWARD;
142static int compl_shows_dir = FORWARD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000143static int compl_pending = 0; /* > 1 for postponed CTRL-N */
Bram Moolenaar572cb562005-08-05 21:35:02 +0000144static pos_T compl_startpos;
145static colnr_T compl_col = 0; /* column where the text starts
146 * that is being completed */
Bram Moolenaar572cb562005-08-05 21:35:02 +0000147static char_u *compl_orig_text = NULL; /* text as it was before
148 * completion started */
149static int compl_cont_mode = 0;
150static expand_T compl_xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
Bram Moolenaar82139082011-09-14 16:52:09 +0200152static int compl_opt_refresh_always = FALSE;
153
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100154static void ins_ctrl_x(void);
155static int has_compl_option(int dict_opt);
156static int ins_compl_accept_char(int c);
157static int ins_compl_add(char_u *str, int len, int icase, char_u *fname, char_u **cptext, int cdir, int flags, int adup);
158static int ins_compl_equal(compl_T *match, char_u *str, int len);
159static void ins_compl_longest_match(compl_T *match);
160static void ins_compl_add_matches(int num_matches, char_u **matches, int icase);
161static int ins_compl_make_cyclic(void);
162static void ins_compl_upd_pum(void);
163static void ins_compl_del_pum(void);
164static int pum_wanted(void);
165static int pum_enough_matches(void);
166static void ins_compl_dictionaries(char_u *dict, char_u *pat, int flags, int thesaurus);
167static void ins_compl_files(int count, char_u **files, int thesaurus, int flags, regmatch_T *regmatch, char_u *buf, int *dir);
168static char_u *find_line_end(char_u *ptr);
169static void ins_compl_free(void);
170static void ins_compl_clear(void);
171static int ins_compl_bs(void);
172static int ins_compl_need_restart(void);
173static void ins_compl_new_leader(void);
174static void ins_compl_addleader(int c);
175static int ins_compl_len(void);
176static void ins_compl_restart(void);
177static void ins_compl_set_original_text(char_u *str);
178static void ins_compl_addfrommatch(void);
179static int ins_compl_prep(int c);
180static void ins_compl_fixRedoBufForLeader(char_u *ptr_arg);
181static buf_T *ins_compl_next_buf(buf_T *buf, int flag);
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +0100182# if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100183static void ins_compl_add_list(list_T *list);
184static void ins_compl_add_dict(dict_T *dict);
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +0100185# endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100186static int ins_compl_get_exp(pos_T *ini);
187static void ins_compl_delete(void);
Bram Moolenaar472e8592016-10-15 17:06:47 +0200188static void ins_compl_insert(int in_compl_func);
189static int ins_compl_next(int allow_get_expansion, int count, int insert_match, int in_compl_func);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100190static int ins_compl_key2dir(int c);
191static int ins_compl_pum_key(int c);
192static int ins_compl_key2count(int c);
193static int ins_compl_use_match(int c);
Bram Moolenaar8aefbe02016-02-23 20:13:16 +0100194static int ins_complete(int c, int enable_pum);
Bram Moolenaarcb036422017-03-01 12:29:10 +0100195static void show_pum(int prev_w_wrow, int prev_w_leftcol);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100196static unsigned quote_meta(char_u *dest, char_u *str, int len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197#endif /* FEAT_INS_EXPAND */
198
199#define BACKSPACE_CHAR 1
200#define BACKSPACE_WORD 2
201#define BACKSPACE_WORD_NOT_SPACE 3
202#define BACKSPACE_LINE 4
203
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100204static void ins_redraw(int ready);
205static void ins_ctrl_v(void);
206static void undisplay_dollar(void);
207static void insert_special(int, int, int);
208static void internal_format(int textwidth, int second_indent, int flags, int format_only, int c);
209static void check_auto_format(int);
210static void redo_literal(int c);
211static void start_arrow(pos_T *end_insert_pos);
212static void start_arrow_with_change(pos_T *end_insert_pos, int change);
213static void start_arrow_common(pos_T *end_insert_pos, int change);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000214#ifdef FEAT_SPELL
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100215static void check_spell_redraw(void);
216static void spell_back_to_badword(void);
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +0000217static int spell_bad_len = 0; /* length of located bad word */
Bram Moolenaar217ad922005-03-20 22:37:15 +0000218#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100219static void stop_insert(pos_T *end_insert_pos, int esc, int nomove);
220static int echeck_abbr(int);
221static int replace_pop(void);
222static void replace_join(int off);
223static void replace_pop_ins(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224#ifdef FEAT_MBYTE
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100225static void mb_replace_pop_ins(int cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100227static void replace_flush(void);
228static void replace_do_bs(int limit_col);
229static int del_char_after_col(int limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230#ifdef FEAT_CINDENT
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100231static int cindent_on(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100233static void ins_reg(void);
234static void ins_ctrl_g(void);
235static void ins_ctrl_hat(void);
236static int ins_esc(long *count, int cmdchar, int nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237#ifdef FEAT_RIGHTLEFT
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100238static void ins_ctrl_(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100240static int ins_start_select(int c);
241static void ins_insert(int replaceState);
242static void ins_ctrl_o(void);
243static void ins_shift(int c, int lastc);
244static void ins_del(void);
245static int ins_bs(int c, int mode, int *inserted_space_p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246#ifdef FEAT_MOUSE
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100247static void ins_mouse(int c);
248static void ins_mousescroll(int dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000250#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100251static void ins_tabline(int c);
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000252#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100253static void ins_left(int end_change);
254static void ins_home(int c);
255static void ins_end(int c);
256static void ins_s_left(void);
257static void ins_right(int end_change);
258static void ins_s_right(void);
259static void ins_up(int startcol);
260static void ins_pageup(void);
261static void ins_down(int startcol);
262static void ins_pagedown(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263#ifdef FEAT_DND
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100264static void ins_drop(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100266static int ins_tab(void);
267static int ins_eol(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268#ifdef FEAT_DIGRAPHS
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100269static int ins_digraph(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100271static int ins_ctrl_ey(int tc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272#ifdef FEAT_SMARTINDENT
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100273static void ins_try_si(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100275static colnr_T get_nolist_virtcol(void);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100276#if defined(FEAT_EVAL)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100277static char_u *do_insert_char_pre(int c);
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100278#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279
280static colnr_T Insstart_textlen; /* length of line when insert started */
281static colnr_T Insstart_blank_vcol; /* vcol for first inserted blank */
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100282static int update_Insstart_orig = TRUE; /* set Insstart_orig to Insstart */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283
284static char_u *last_insert = NULL; /* the text of the previous insert,
285 K_SPECIAL and CSI are escaped */
286static int last_insert_skip; /* nr of chars in front of previous insert */
287static int new_insert_skip; /* nr of chars in front of current insert */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000288static int did_restart_edit; /* "restart_edit" when calling edit() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289
290#ifdef FEAT_CINDENT
291static int can_cindent; /* may do cindenting on this line */
292#endif
293
294static int old_indent = 0; /* for ^^D command in insert mode */
295
296#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000297static int revins_on; /* reverse insert mode on */
298static int revins_chars; /* how much to skip after edit */
299static int revins_legal; /* was the last char 'legal'? */
300static int revins_scol; /* start column of revins session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301#endif
302
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303static int ins_need_undo; /* call u_save() before inserting a
304 char. Set when edit() is called.
305 after that arrow_used is used. */
306
307static int did_add_space = FALSE; /* auto_format() added an extra space
308 under the cursor */
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200309static int dont_sync_undo = FALSE; /* CTRL-G U prevents syncing undo for
310 the next left/right cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311
312/*
313 * edit(): Start inserting text.
314 *
315 * "cmdchar" can be:
316 * 'i' normal insert command
317 * 'a' normal append command
Bram Moolenaarec2da362017-01-21 20:04:22 +0100318 * K_PS bracketed paste
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 * 'R' replace command
320 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo,
321 * but still only one <CR> is inserted. The <Esc> is not used for redo.
322 * 'g' "gI" command.
323 * 'V' "gR" command for Virtual Replace mode.
324 * 'v' "gr" command for single character Virtual Replace mode.
325 *
326 * This function is not called recursively. For CTRL-O commands, it returns
327 * and lets the caller handle the Normal-mode command.
328 *
329 * Return TRUE if a CTRL-O command caused the return (insert mode pending).
330 */
331 int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100332edit(
333 int cmdchar,
334 int startln, /* if set, insert at start of line */
335 long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336{
337 int c = 0;
338 char_u *ptr;
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100339 int lastc = 0;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000340 int mincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 static linenr_T o_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 int i;
343 int did_backspace = TRUE; /* previous char was backspace */
344#ifdef FEAT_CINDENT
345 int line_is_white = FALSE; /* line is empty before insert */
346#endif
347 linenr_T old_topline = 0; /* topline before insertion */
348#ifdef FEAT_DIFF
349 int old_topfill = -1;
350#endif
351 int inserted_space = FALSE; /* just inserted a space */
352 int replaceState = REPLACE;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000353 int nomove = FALSE; /* don't move cursor on return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000355 /* Remember whether editing was restarted after CTRL-O. */
356 did_restart_edit = restart_edit;
357
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 /* sleep before redrawing, needed for "CTRL-O :" that results in an
359 * error message */
360 check_for_delay(TRUE);
361
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100362 /* set Insstart_orig to Insstart */
363 update_Insstart_orig = TRUE;
364
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365#ifdef HAVE_SANDBOX
366 /* Don't allow inserting in the sandbox. */
367 if (sandbox != 0)
368 {
369 EMSG(_(e_sandbox));
370 return FALSE;
371 }
372#endif
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000373 /* Don't allow changes in the buffer while editing the cmdline. The
374 * caller of getcmdline() may get confused. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000375 if (textlock != 0)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000376 {
377 EMSG(_(e_secure));
378 return FALSE;
379 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380
381#ifdef FEAT_INS_EXPAND
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000382 /* Don't allow recursive insert mode when busy with completion. */
Bram Moolenaar031e0dd2009-07-09 16:15:16 +0000383 if (compl_started || compl_busy || pum_visible())
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000384 {
385 EMSG(_(e_secure));
386 return FALSE;
387 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 ins_compl_clear(); /* clear stuff for CTRL-X mode */
389#endif
390
Bram Moolenaar843ee412004-06-30 16:16:41 +0000391 /*
392 * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx".
393 */
394 if (cmdchar != 'r' && cmdchar != 'v')
395 {
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100396 pos_T save_cursor = curwin->w_cursor;
397
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100398#ifdef FEAT_EVAL
Bram Moolenaar843ee412004-06-30 16:16:41 +0000399 if (cmdchar == 'R')
400 ptr = (char_u *)"r";
401 else if (cmdchar == 'V')
402 ptr = (char_u *)"v";
403 else
404 ptr = (char_u *)"i";
405 set_vim_var_string(VV_INSERTMODE, ptr, 1);
Bram Moolenaar097c9922013-05-19 21:15:15 +0200406 set_vim_var_string(VV_CHAR, NULL, -1); /* clear v:char */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100407#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000408 apply_autocmds(EVENT_INSERTENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100409
Bram Moolenaar097c9922013-05-19 21:15:15 +0200410 /* Make sure the cursor didn't move. Do call check_cursor_col() in
411 * case the text was modified. Since Insert mode was not started yet
412 * a call to check_cursor_col() may move the cursor, especially with
413 * the "A" command, thus set State to avoid that. Also check that the
414 * line number is still valid (lines may have been deleted).
415 * Do not restore if v:char was set to a non-empty string. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100416 if (!EQUAL_POS(curwin->w_cursor, save_cursor)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100417#ifdef FEAT_EVAL
Bram Moolenaar097c9922013-05-19 21:15:15 +0200418 && *get_vim_var_str(VV_CHAR) == NUL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100419#endif
Bram Moolenaar097c9922013-05-19 21:15:15 +0200420 && save_cursor.lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100421 {
422 int save_state = State;
423
424 curwin->w_cursor = save_cursor;
425 State = INSERT;
426 check_cursor_col();
427 State = save_state;
428 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000429 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000430
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200431#ifdef FEAT_CONCEAL
432 /* Check if the cursor line needs redrawing before changing State. If
433 * 'concealcursor' is "n" it needs to be redrawn without concealing. */
Bram Moolenaar8e469272010-07-28 19:38:16 +0200434 conceal_check_cursur_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200435#endif
436
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437#ifdef FEAT_MOUSE
438 /*
439 * When doing a paste with the middle mouse button, Insstart is set to
440 * where the paste started.
441 */
442 if (where_paste_started.lnum != 0)
443 Insstart = where_paste_started;
444 else
445#endif
446 {
447 Insstart = curwin->w_cursor;
448 if (startln)
449 Insstart.col = 0;
450 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000451 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 Insstart_blank_vcol = MAXCOL;
453 if (!did_ai)
454 ai_col = 0;
455
456 if (cmdchar != NUL && restart_edit == 0)
457 {
458 ResetRedobuff();
459 AppendNumberToRedobuff(count);
460#ifdef FEAT_VREPLACE
461 if (cmdchar == 'V' || cmdchar == 'v')
462 {
463 /* "gR" or "gr" command */
464 AppendCharToRedobuff('g');
465 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
466 }
467 else
468#endif
469 {
Bram Moolenaar076e5022017-01-24 18:58:30 +0100470 if (cmdchar == K_PS)
471 AppendCharToRedobuff('a');
472 else
473 AppendCharToRedobuff(cmdchar);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 if (cmdchar == 'g') /* "gI" command */
475 AppendCharToRedobuff('I');
476 else if (cmdchar == 'r') /* "r<CR>" command */
477 count = 1; /* insert only one <CR> */
478 }
479 }
480
481 if (cmdchar == 'R')
482 {
483#ifdef FEAT_FKMAP
484 if (p_fkmap && p_ri)
485 {
486 beep_flush();
487 EMSG(farsi_text_3); /* encoded in Farsi */
488 State = INSERT;
489 }
490 else
491#endif
492 State = REPLACE;
493 }
494#ifdef FEAT_VREPLACE
495 else if (cmdchar == 'V' || cmdchar == 'v')
496 {
497 State = VREPLACE;
498 replaceState = VREPLACE;
499 orig_line_count = curbuf->b_ml.ml_line_count;
500 vr_lines_changed = 1;
501 }
502#endif
503 else
504 State = INSERT;
505
506 stop_insert_mode = FALSE;
507
508 /*
509 * Need to recompute the cursor position, it might move when the cursor is
510 * on a TAB or special character.
511 */
512 curs_columns(TRUE);
513
514 /*
515 * Enable langmap or IME, indicated by 'iminsert'.
516 * Note that IME may enabled/disabled without us noticing here, thus the
517 * 'iminsert' value may not reflect what is actually used. It is updated
518 * when hitting <Esc>.
519 */
520 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
521 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100522#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
524#endif
525
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526#ifdef FEAT_MOUSE
527 setmouse();
528#endif
529#ifdef FEAT_CMDL_INFO
530 clear_showcmd();
531#endif
532#ifdef FEAT_RIGHTLEFT
533 /* there is no reverse replace mode */
534 revins_on = (State == INSERT && p_ri);
535 if (revins_on)
536 undisplay_dollar();
537 revins_chars = 0;
538 revins_legal = 0;
539 revins_scol = -1;
540#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +0100541 if (!p_ek)
542 /* Disable bracketed paste mode, we won't recognize the escape
543 * sequences. */
544 out_str(T_BD);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
546 /*
547 * Handle restarting Insert mode.
Bram Moolenaara6c07602017-03-05 21:18:27 +0100548 * Don't do this for "CTRL-O ." (repeat an insert): In that case we get
549 * here with something in the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 */
551 if (restart_edit != 0 && stuff_empty())
552 {
553#ifdef FEAT_MOUSE
554 /*
555 * After a paste we consider text typed to be part of the insert for
556 * the pasted text. You can backspace over the pasted text too.
557 */
558 if (where_paste_started.lnum)
559 arrow_used = FALSE;
560 else
561#endif
562 arrow_used = TRUE;
563 restart_edit = 0;
564
565 /*
566 * If the cursor was after the end-of-line before the CTRL-O and it is
567 * now at the end-of-line, put it after the end-of-line (this is not
568 * correct in very rare cases).
569 * Also do this if curswant is greater than the current virtual
570 * column. Eg after "^O$" or "^O80|".
571 */
572 validate_virtcol();
573 update_curswant();
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000574 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 || curwin->w_curswant > curwin->w_virtcol)
576 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
577 {
578 if (ptr[1] == NUL)
579 ++curwin->w_cursor.col;
580#ifdef FEAT_MBYTE
581 else if (has_mbyte)
582 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000583 i = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 if (ptr[i] == NUL)
585 curwin->w_cursor.col += i;
586 }
587#endif
588 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000589 ins_at_eol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 }
591 else
592 arrow_used = FALSE;
593
594 /* we are in insert mode now, don't need to start it anymore */
595 need_start_insertmode = FALSE;
596
597 /* Need to save the line for undo before inserting the first char. */
598 ins_need_undo = TRUE;
599
600#ifdef FEAT_MOUSE
601 where_paste_started.lnum = 0;
602#endif
603#ifdef FEAT_CINDENT
604 can_cindent = TRUE;
605#endif
606#ifdef FEAT_FOLDING
607 /* The cursor line is not in a closed fold, unless 'insertmode' is set or
608 * restarting. */
609 if (!p_im && did_restart_edit == 0)
610 foldOpenCursor();
611#endif
612
613 /*
614 * If 'showmode' is set, show the current (insert/replace/..) mode.
615 * A warning message for changing a readonly file is given here, before
616 * actually changing anything. It's put after the mode, if any.
617 */
618 i = 0;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000619 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 i = showmode();
621
622 if (!p_im && did_restart_edit == 0)
Bram Moolenaar21af89e2008-01-02 21:09:33 +0000623 change_warning(i == 0 ? 0 : i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624
625#ifdef CURSOR_SHAPE
626 ui_cursor_shape(); /* may show different cursor shape */
627#endif
628#ifdef FEAT_DIGRAPHS
629 do_digraph(-1); /* clear digraphs */
630#endif
631
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000632 /*
633 * Get the current length of the redo buffer, those characters have to be
634 * skipped if we want to get to the inserted characters.
635 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 ptr = get_inserted();
637 if (ptr == NULL)
638 new_insert_skip = 0;
639 else
640 {
641 new_insert_skip = (int)STRLEN(ptr);
642 vim_free(ptr);
643 }
644
645 old_indent = 0;
646
647 /*
648 * Main loop in Insert mode: repeat until Insert mode is left.
649 */
650 for (;;)
651 {
652#ifdef FEAT_RIGHTLEFT
653 if (!revins_legal)
654 revins_scol = -1; /* reset on illegal motions */
655 else
656 revins_legal = 0;
657#endif
658 if (arrow_used) /* don't repeat insert when arrow key used */
659 count = 0;
660
Bram Moolenaarb1d90a32014-02-22 23:03:55 +0100661 if (update_Insstart_orig)
662 Insstart_orig = Insstart;
663
Bram Moolenaar00672e12016-06-26 18:38:13 +0200664 if (stop_insert_mode
665#ifdef FEAT_INS_EXPAND
666 && !pum_visible()
667#endif
668 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 {
670 /* ":stopinsert" used or 'insertmode' reset */
671 count = 0;
672 goto doESCkey;
673 }
674
675 /* set curwin->w_curswant for next K_DOWN or K_UP */
676 if (!arrow_used)
677 curwin->w_set_curswant = TRUE;
678
679 /* If there is no typeahead may check for timestamps (e.g., for when a
680 * menu invoked a shell command). */
681 if (stuff_empty())
682 {
683 did_check_timestamps = FALSE;
684 if (need_check_timestamps)
685 check_timestamps(FALSE);
686 }
687
688 /*
689 * When emsg() was called msg_scroll will have been set.
690 */
691 msg_scroll = FALSE;
692
693#ifdef FEAT_GUI
694 /* When 'mousefocus' is set a mouse movement may have taken us to
695 * another window. "need_mouse_correct" may then be set because of an
696 * autocommand. */
697 if (need_mouse_correct)
698 gui_mouse_correct();
699#endif
700
701#ifdef FEAT_FOLDING
702 /* Open fold at the cursor line, according to 'foldopen'. */
703 if (fdo_flags & FDO_INSERT)
704 foldOpenCursor();
705 /* Close folds where the cursor isn't, according to 'foldclose' */
706 if (!char_avail())
707 foldCheckClose();
708#endif
709
710 /*
711 * If we inserted a character at the last position of the last line in
712 * the window, scroll the window one line up. This avoids an extra
713 * redraw.
714 * This is detected when the cursor column is smaller after inserting
715 * something.
716 * Don't do this when the topline changed already, it has
717 * already been adjusted (by insertchar() calling open_line())).
718 */
719 if (curbuf->b_mod_set
720 && curwin->w_p_wrap
721 && !did_backspace
722 && curwin->w_topline == old_topline
723#ifdef FEAT_DIFF
724 && curwin->w_topfill == old_topfill
725#endif
726 )
727 {
728 mincol = curwin->w_wcol;
729 validate_cursor_col();
730
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000731 if ((int)curwin->w_wcol < mincol - curbuf->b_p_ts
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 && curwin->w_wrow == W_WINROW(curwin)
733 + curwin->w_height - 1 - p_so
734 && (curwin->w_cursor.lnum != curwin->w_topline
735#ifdef FEAT_DIFF
736 || curwin->w_topfill > 0
737#endif
738 ))
739 {
740#ifdef FEAT_DIFF
741 if (curwin->w_topfill > 0)
742 --curwin->w_topfill;
743 else
744#endif
745#ifdef FEAT_FOLDING
746 if (hasFolding(curwin->w_topline, NULL, &old_topline))
747 set_topline(curwin, old_topline + 1);
748 else
749#endif
750 set_topline(curwin, curwin->w_topline + 1);
751 }
752 }
753
754 /* May need to adjust w_topline to show the cursor. */
755 update_topline();
756
757 did_backspace = FALSE;
758
759 validate_cursor(); /* may set must_redraw */
760
761 /*
762 * Redraw the display when no characters are waiting.
763 * Also shows mode, ruler and positions cursor.
764 */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000765 ins_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 if (curwin->w_p_scb)
768 do_check_scrollbind(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769
Bram Moolenaar860cae12010-06-05 23:22:07 +0200770 if (curwin->w_p_crb)
771 do_check_cursorbind();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 update_curswant();
773 old_topline = curwin->w_topline;
774#ifdef FEAT_DIFF
775 old_topfill = curwin->w_topfill;
776#endif
777
778#ifdef USE_ON_FLY_SCROLL
779 dont_scroll = FALSE; /* allow scrolling here */
780#endif
781
782 /*
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100783 * Get a character for Insert mode. Ignore K_IGNORE and K_NOP.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 */
Bram Moolenaar6c5bdb72015-03-13 13:24:23 +0100785 if (c != K_CURSORHOLD)
786 lastc = c; /* remember the previous char for CTRL-D */
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +0200787
788 /* After using CTRL-G U the next cursor key will not break undo. */
789 if (dont_sync_undo == MAYBE)
790 dont_sync_undo = TRUE;
791 else
792 dont_sync_undo = FALSE;
Bram Moolenaarec2da362017-01-21 20:04:22 +0100793 if (cmdchar == K_PS)
794 /* Got here from normal mode when bracketed paste started. */
795 c = K_PS;
796 else
797 do
798 {
799 c = safe_vgetc();
Bram Moolenaarc5aa55d2017-11-28 20:47:40 +0100800 } while (c == K_IGNORE || c == K_NOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000802 /* Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V. */
803 did_cursorhold = TRUE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000804
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805#ifdef FEAT_RIGHTLEFT
806 if (p_hkmap && KeyTyped)
807 c = hkmap(c); /* Hebrew mode mapping */
808#endif
809#ifdef FEAT_FKMAP
810 if (p_fkmap && KeyTyped)
811 c = fkmap(c); /* Farsi mode mapping */
812#endif
813
814#ifdef FEAT_INS_EXPAND
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000815 /*
816 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000817 * and the cursor is still in the completed word. Only when there is
818 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000819 */
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000820 if (compl_started
821 && pum_wanted()
822 && curwin->w_cursor.col >= compl_col
823 && (compl_shown_match == NULL
824 || compl_shown_match != compl_shown_match->cp_next))
Bram Moolenaara6557602006-02-04 22:43:20 +0000825 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000826 /* BS: Delete one character from "compl_leader". */
827 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000828 && curwin->w_cursor.col > compl_col
829 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000830 continue;
831
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000832 /* When no match was selected or it was edited. */
833 if (!compl_used_match)
Bram Moolenaara6557602006-02-04 22:43:20 +0000834 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000835 /* CTRL-L: Add one character from the current match to
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000836 * "compl_leader". Except when at the original match and
837 * there is nothing to add, CTRL-L works like CTRL-P then. */
838 if (c == Ctrl_L
Bram Moolenaare4214502015-03-05 18:08:43 +0100839 && (!CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000840 || (int)STRLEN(compl_shown_match->cp_str)
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000841 > curwin->w_cursor.col - compl_col))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000842 {
843 ins_compl_addfrommatch();
844 continue;
845 }
846
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000847 /* A non-white character that fits in with the current
848 * completion: Add to "compl_leader". */
849 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000850 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100851#if defined(FEAT_EVAL)
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100852 /* Trigger InsertCharPre. */
853 char_u *str = do_insert_char_pre(c);
854 char_u *p;
855
856 if (str != NULL)
857 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100858 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100859 ins_compl_addleader(PTR2CHAR(p));
860 vim_free(str);
861 }
862 else
863#endif
864 ins_compl_addleader(c);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000865 continue;
866 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000867
Bram Moolenaar0440ca32006-05-13 13:24:33 +0000868 /* Pressing CTRL-Y selects the current match. When
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000869 * compl_enter_selects is set the Enter key does the same. */
Bram Moolenaarcbd3bd62016-10-17 20:47:02 +0200870 if ((c == Ctrl_Y || (compl_enter_selects
871 && (c == CAR || c == K_KENTER || c == NL)))
872 && stop_arrow() == OK)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000873 {
874 ins_compl_delete();
Bram Moolenaar472e8592016-10-15 17:06:47 +0200875 ins_compl_insert(FALSE);
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000876 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000877 }
878 }
879
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 /* Prepare for or stop CTRL-X mode. This doesn't do completion, but
881 * it does fix up the text when finishing completion. */
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000882 compl_get_longest = FALSE;
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000883 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000884 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885#endif
886
Bram Moolenaar488c6512005-08-11 20:09:58 +0000887 /* CTRL-\ CTRL-N goes to Normal mode,
888 * CTRL-\ CTRL-G goes to mode selected with 'insertmode',
889 * CTRL-\ CTRL-O is like CTRL-O but without moving the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 if (c == Ctrl_BSL)
891 {
892 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000893 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 ++no_mapping;
895 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000896 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 --no_mapping;
898 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000899 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000901 /* it's something else */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 vungetc(c);
903 c = Ctrl_BSL;
904 }
905 else if (c == Ctrl_G && p_im)
906 continue;
907 else
908 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000909 if (c == Ctrl_O)
910 {
911 ins_ctrl_o();
912 ins_at_eol = FALSE; /* cursor keeps its column */
913 nomove = TRUE;
914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 count = 0;
916 goto doESCkey;
917 }
918 }
919
920#ifdef FEAT_DIGRAPHS
921 c = do_digraph(c);
922#endif
923
924#ifdef FEAT_INS_EXPAND
925 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode == CTRL_X_CMDLINE)
926 goto docomplete;
927#endif
928 if (c == Ctrl_V || c == Ctrl_Q)
929 {
930 ins_ctrl_v();
931 c = Ctrl_V; /* pretend CTRL-V is last typed character */
932 continue;
933 }
934
935#ifdef FEAT_CINDENT
936 if (cindent_on()
937# ifdef FEAT_INS_EXPAND
938 && ctrl_x_mode == 0
939# endif
940 )
941 {
942 /* A key name preceded by a bang means this key is not to be
943 * inserted. Skip ahead to the re-indenting below.
944 * A key name preceded by a star means that indenting has to be
945 * done before inserting the key. */
946 line_is_white = inindent(0);
947 if (in_cinkeys(c, '!', line_is_white))
948 goto force_cindent;
949 if (can_cindent && in_cinkeys(c, '*', line_is_white)
950 && stop_arrow() == OK)
951 do_c_expr_indent();
952 }
953#endif
954
955#ifdef FEAT_RIGHTLEFT
956 if (curwin->w_p_rl)
957 switch (c)
958 {
959 case K_LEFT: c = K_RIGHT; break;
960 case K_S_LEFT: c = K_S_RIGHT; break;
961 case K_C_LEFT: c = K_C_RIGHT; break;
962 case K_RIGHT: c = K_LEFT; break;
963 case K_S_RIGHT: c = K_S_LEFT; break;
964 case K_C_RIGHT: c = K_C_LEFT; break;
965 }
966#endif
967
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 /*
969 * If 'keymodel' contains "startsel", may start selection. If it
970 * does, a CTRL-O and c will be stuffed, we need to get these
971 * characters.
972 */
973 if (ins_start_select(c))
974 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975
976 /*
977 * The big switch to handle a character in insert mode.
978 */
979 switch (c)
980 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000981 case ESC: /* End input mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 if (echeck_abbr(ESC + ABBR_OFF))
983 break;
Bram Moolenaar2f40d122017-10-24 21:49:36 +0200984 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000986 case Ctrl_C: /* End input mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987#ifdef FEAT_CMDWIN
988 if (c == Ctrl_C && cmdwin_type != 0)
989 {
990 /* Close the cmdline window. */
991 cmdwin_result = K_IGNORE;
992 got_int = FALSE; /* don't stop executing autocommands et al. */
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000993 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 goto doESCkey;
995 }
996#endif
997
998#ifdef UNIX
999do_intr:
1000#endif
1001 /* when 'insertmode' set, and not halfway a mapping, don't leave
1002 * Insert mode */
1003 if (goto_im())
1004 {
1005 if (got_int)
1006 {
1007 (void)vgetc(); /* flush all buffers */
1008 got_int = FALSE;
1009 }
1010 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02001011 vim_beep(BO_IM);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 break;
1013 }
1014doESCkey:
1015 /*
1016 * This is the ONLY return from edit()!
1017 */
1018 /* Always update o_lnum, so that a "CTRL-O ." that adds a line
1019 * still puts the cursor back after the inserted text. */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001020 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 o_lnum = curwin->w_cursor.lnum;
1022
Bram Moolenaar488c6512005-08-11 20:09:58 +00001023 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +00001024 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00001025 if (cmdchar != 'r' && cmdchar != 'v')
1026 apply_autocmds(EVENT_INSERTLEAVE, NULL, NULL,
1027 FALSE, curbuf);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +00001028 did_cursorhold = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +00001030 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 continue;
1032
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001033 case Ctrl_Z: /* suspend when 'insertmode' set */
1034 if (!p_im)
1035 goto normalchar; /* insert CTRL-Z as normal char */
Bram Moolenaar25b0e6b2017-01-20 21:51:53 +01001036 do_cmdline_cmd((char_u *)"stop");
Bram Moolenaar74a47162017-02-26 19:09:05 +01001037#ifdef CURSOR_SHAPE
1038 ui_cursor_shape(); /* may need to update cursor shape */
1039#endif
1040 continue;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001041
1042 case Ctrl_O: /* execute one command */
Bram Moolenaare344bea2005-09-01 20:46:49 +00001043#ifdef FEAT_COMPL_FUNC
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001044 if (ctrl_x_mode == CTRL_X_OMNI)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001045 goto docomplete;
1046#endif
1047 if (echeck_abbr(Ctrl_O + ABBR_OFF))
1048 break;
1049 ins_ctrl_o();
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001050
1051#ifdef FEAT_VIRTUALEDIT
1052 /* don't move the cursor left when 'virtualedit' has "onemore". */
1053 if (ve_flags & VE_ONEMORE)
1054 {
1055 ins_at_eol = FALSE;
1056 nomove = TRUE;
1057 }
1058#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001059 count = 0;
1060 goto doESCkey;
1061
Bram Moolenaar572cb562005-08-05 21:35:02 +00001062 case K_INS: /* toggle insert/replace mode */
1063 case K_KINS:
1064 ins_insert(replaceState);
1065 break;
1066
1067 case K_SELECT: /* end of Select mode mapping - ignore */
1068 break;
1069
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001070 case K_HELP: /* Help key works like <ESC> <Help> */
1071 case K_F1:
1072 case K_XF1:
1073 stuffcharReadbuff(K_HELP);
1074 if (p_im)
1075 need_start_insertmode = TRUE;
1076 goto doESCkey;
1077
1078#ifdef FEAT_NETBEANS_INTG
1079 case K_F21: /* NetBeans command */
1080 ++no_mapping; /* don't map the next key hits */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001081 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001082 --no_mapping;
1083 netbeans_keycommand(i);
1084 break;
1085#endif
1086
1087 case K_ZERO: /* Insert the previously inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 case NUL:
1089 case Ctrl_A:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001090 /* For ^@ the trailing ESC will end the insert, unless there is an
1091 * error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
1093 && c != Ctrl_A && !p_im)
1094 goto doESCkey; /* quit insert mode */
1095 inserted_space = FALSE;
1096 break;
1097
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001098 case Ctrl_R: /* insert the contents of a register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 ins_reg();
1100 auto_format(FALSE, TRUE);
1101 inserted_space = FALSE;
1102 break;
1103
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001104 case Ctrl_G: /* commands starting with CTRL-G */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 ins_ctrl_g();
1106 break;
1107
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001108 case Ctrl_HAT: /* switch input mode and/or langmap */
1109 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 break;
1111
1112#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001113 case Ctrl__: /* switch between languages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 if (!p_ari)
1115 goto normalchar;
1116 ins_ctrl_();
1117 break;
1118#endif
1119
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001120 case Ctrl_D: /* Make indent one shiftwidth smaller. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121#if defined(FEAT_INS_EXPAND) && defined(FEAT_FIND_ID)
1122 if (ctrl_x_mode == CTRL_X_PATH_DEFINES)
1123 goto docomplete;
1124#endif
1125 /* FALLTHROUGH */
1126
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001127 case Ctrl_T: /* Make indent one shiftwidth greater. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128# ifdef FEAT_INS_EXPAND
1129 if (c == Ctrl_T && ctrl_x_mode == CTRL_X_THESAURUS)
1130 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001131 if (has_compl_option(FALSE))
1132 goto docomplete;
1133 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 }
1135# endif
1136 ins_shift(c, lastc);
1137 auto_format(FALSE, TRUE);
1138 inserted_space = FALSE;
1139 break;
1140
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001141 case K_DEL: /* delete character under the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 case K_KDEL:
1143 ins_del();
1144 auto_format(FALSE, TRUE);
1145 break;
1146
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001147 case K_BS: /* delete character before the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 case Ctrl_H:
1149 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
1150 auto_format(FALSE, TRUE);
1151 break;
1152
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001153 case Ctrl_W: /* delete word before the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
1155 auto_format(FALSE, TRUE);
1156 break;
1157
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001158 case Ctrl_U: /* delete all inserted text in current line */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001159# ifdef FEAT_COMPL_FUNC
1160 /* CTRL-X CTRL-U completes with 'completefunc'. */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001161 if (ctrl_x_mode == CTRL_X_FUNCTION)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001162 goto docomplete;
1163# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
1165 auto_format(FALSE, TRUE);
1166 inserted_space = FALSE;
1167 break;
1168
1169#ifdef FEAT_MOUSE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001170 case K_LEFTMOUSE: /* mouse keys */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 case K_LEFTMOUSE_NM:
1172 case K_LEFTDRAG:
1173 case K_LEFTRELEASE:
1174 case K_LEFTRELEASE_NM:
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001175 case K_MOUSEMOVE:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 case K_MIDDLEMOUSE:
1177 case K_MIDDLEDRAG:
1178 case K_MIDDLERELEASE:
1179 case K_RIGHTMOUSE:
1180 case K_RIGHTDRAG:
1181 case K_RIGHTRELEASE:
1182 case K_X1MOUSE:
1183 case K_X1DRAG:
1184 case K_X1RELEASE:
1185 case K_X2MOUSE:
1186 case K_X2DRAG:
1187 case K_X2RELEASE:
1188 ins_mouse(c);
1189 break;
1190
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001191 case K_MOUSEDOWN: /* Default action for scroll wheel up: scroll up */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001192 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 break;
1194
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001195 case K_MOUSEUP: /* Default action for scroll wheel down: scroll down */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001196 ins_mousescroll(MSCR_UP);
1197 break;
1198
1199 case K_MOUSELEFT: /* Scroll wheel left */
1200 ins_mousescroll(MSCR_LEFT);
1201 break;
1202
1203 case K_MOUSERIGHT: /* Scroll wheel right */
1204 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 break;
1206#endif
Bram Moolenaarec2da362017-01-21 20:04:22 +01001207 case K_PS:
1208 bracketed_paste(PASTE_INSERT, FALSE, NULL);
1209 if (cmdchar == K_PS)
1210 /* invoked from normal mode, bail out */
1211 goto doESCkey;
1212 break;
1213 case K_PE:
1214 /* Got K_PE without K_PS, ignore. */
1215 break;
1216
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001217#ifdef FEAT_GUI_TABLINE
1218 case K_TABLINE:
1219 case K_TABMENU:
1220 ins_tabline(c);
1221 break;
1222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001224 case K_IGNORE: /* Something mapped to nothing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 break;
1226
Bram Moolenaar754b5602006-02-09 23:53:20 +00001227 case K_CURSORHOLD: /* Didn't type something for a while. */
1228 apply_autocmds(EVENT_CURSORHOLDI, NULL, NULL, FALSE, curbuf);
1229 did_cursorhold = TRUE;
1230 break;
Bram Moolenaar754b5602006-02-09 23:53:20 +00001231
Bram Moolenaar4770d092006-01-12 23:22:24 +00001232#ifdef FEAT_GUI_W32
1233 /* On Win32 ignore <M-F4>, we get it when closing the window was
1234 * cancelled. */
1235 case K_F4:
1236 if (mod_mask != MOD_MASK_ALT)
1237 goto normalchar;
1238 break;
1239#endif
1240
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241#ifdef FEAT_GUI
1242 case K_VER_SCROLLBAR:
1243 ins_scroll();
1244 break;
1245
1246 case K_HOR_SCROLLBAR:
1247 ins_horscroll();
1248 break;
1249#endif
1250
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001251 case K_HOME: /* <Home> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 case K_S_HOME:
1254 case K_C_HOME:
1255 ins_home(c);
1256 break;
1257
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001258 case K_END: /* <End> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 case K_S_END:
1261 case K_C_END:
1262 ins_end(c);
1263 break;
1264
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001265 case K_LEFT: /* <Left> */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001266 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1267 ins_s_left();
1268 else
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02001269 ins_left(dont_sync_undo == FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 break;
1271
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001272 case K_S_LEFT: /* <S-Left> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 case K_C_LEFT:
1274 ins_s_left();
1275 break;
1276
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001277 case K_RIGHT: /* <Right> */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001278 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1279 ins_s_right();
1280 else
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02001281 ins_right(dont_sync_undo == FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 break;
1283
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001284 case K_S_RIGHT: /* <S-Right> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 case K_C_RIGHT:
1286 ins_s_right();
1287 break;
1288
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001289 case K_UP: /* <Up> */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001290#ifdef FEAT_INS_EXPAND
1291 if (pum_visible())
1292 goto docomplete;
1293#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001294 if (mod_mask & MOD_MASK_SHIFT)
1295 ins_pageup();
1296 else
1297 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 break;
1299
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001300 case K_S_UP: /* <S-Up> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 case K_PAGEUP:
1302 case K_KPAGEUP:
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001303#ifdef FEAT_INS_EXPAND
Bram Moolenaare3226be2005-12-18 22:10:00 +00001304 if (pum_visible())
1305 goto docomplete;
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 ins_pageup();
1308 break;
1309
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001310 case K_DOWN: /* <Down> */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001311#ifdef FEAT_INS_EXPAND
1312 if (pum_visible())
1313 goto docomplete;
1314#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001315 if (mod_mask & MOD_MASK_SHIFT)
1316 ins_pagedown();
1317 else
1318 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 break;
1320
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001321 case K_S_DOWN: /* <S-Down> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 case K_PAGEDOWN:
1323 case K_KPAGEDOWN:
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001324#ifdef FEAT_INS_EXPAND
Bram Moolenaare3226be2005-12-18 22:10:00 +00001325 if (pum_visible())
1326 goto docomplete;
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001327#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 ins_pagedown();
1329 break;
1330
1331#ifdef FEAT_DND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001332 case K_DROP: /* drag-n-drop event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 ins_drop();
1334 break;
1335#endif
1336
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001337 case K_S_TAB: /* When not mapped, use like a normal TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 c = TAB;
1339 /* FALLTHROUGH */
1340
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001341 case TAB: /* TAB or Complete patterns along path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342#if defined(FEAT_INS_EXPAND) && defined(FEAT_FIND_ID)
1343 if (ctrl_x_mode == CTRL_X_PATH_PATTERNS)
1344 goto docomplete;
1345#endif
1346 inserted_space = FALSE;
1347 if (ins_tab())
1348 goto normalchar; /* insert TAB as a normal char */
1349 auto_format(FALSE, TRUE);
1350 break;
1351
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001352 case K_KENTER: /* <Enter> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 c = CAR;
1354 /* FALLTHROUGH */
1355 case CAR:
1356 case NL:
Bram Moolenaar4033c552017-09-16 20:54:51 +02001357#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 /* In a quickfix window a <CR> jumps to the error under the
1359 * cursor. */
1360 if (bt_quickfix(curbuf) && c == CAR)
1361 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001362 if (curwin->w_llist_ref == NULL) /* quickfix window */
1363 do_cmdline_cmd((char_u *)".cc");
1364 else /* location list window */
1365 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 break;
1367 }
1368#endif
1369#ifdef FEAT_CMDWIN
1370 if (cmdwin_type != 0)
1371 {
1372 /* Execute the command in the cmdline window. */
1373 cmdwin_result = CAR;
1374 goto doESCkey;
1375 }
1376#endif
1377 if (ins_eol(c) && !p_im)
1378 goto doESCkey; /* out of memory */
1379 auto_format(FALSE, FALSE);
1380 inserted_space = FALSE;
1381 break;
1382
Bram Moolenaar860cae12010-06-05 23:22:07 +02001383#if defined(FEAT_DIGRAPHS) || defined(FEAT_INS_EXPAND)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001384 case Ctrl_K: /* digraph or keyword completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385# ifdef FEAT_INS_EXPAND
1386 if (ctrl_x_mode == CTRL_X_DICTIONARY)
1387 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001388 if (has_compl_option(TRUE))
1389 goto docomplete;
1390 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 }
1392# endif
1393# ifdef FEAT_DIGRAPHS
1394 c = ins_digraph();
1395 if (c == NUL)
1396 break;
1397# endif
1398 goto normalchar;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001399#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400
1401#ifdef FEAT_INS_EXPAND
Bram Moolenaar572cb562005-08-05 21:35:02 +00001402 case Ctrl_X: /* Enter CTRL-X mode */
1403 ins_ctrl_x();
1404 break;
1405
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001406 case Ctrl_RSB: /* Tag name completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 if (ctrl_x_mode != CTRL_X_TAGS)
1408 goto normalchar;
1409 goto docomplete;
1410
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001411 case Ctrl_F: /* File name completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 if (ctrl_x_mode != CTRL_X_FILES)
1413 goto normalchar;
1414 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001415
1416 case 's': /* Spelling completion after ^X */
1417 case Ctrl_S:
1418 if (ctrl_x_mode != CTRL_X_SPELL)
1419 goto normalchar;
1420 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421#endif
1422
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001423 case Ctrl_L: /* Whole line completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424#ifdef FEAT_INS_EXPAND
1425 if (ctrl_x_mode != CTRL_X_WHOLE_LINE)
1426#endif
1427 {
1428 /* CTRL-L with 'insertmode' set: Leave Insert mode */
1429 if (p_im)
1430 {
1431 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1432 break;
1433 goto doESCkey;
1434 }
1435 goto normalchar;
1436 }
1437#ifdef FEAT_INS_EXPAND
1438 /* FALLTHROUGH */
1439
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001440 case Ctrl_P: /* Do previous/next pattern completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 case Ctrl_N:
1442 /* if 'complete' is empty then plain ^P is no longer special,
1443 * but it is under other ^X modes */
1444 if (*curbuf->b_p_cpt == NUL
Bram Moolenaar02ae9b42018-02-09 15:06:02 +01001445 && (ctrl_x_mode == CTRL_X_NORMAL
1446 || ctrl_x_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001447 && !(compl_cont_status & CONT_LOCAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 goto normalchar;
1449
1450docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001451 compl_busy = TRUE;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001452#ifdef FEAT_FOLDING
Bram Moolenaar429fcfb2016-04-14 16:22:04 +02001453 disable_fold_update++; /* don't redraw folds here */
Bram Moolenaara6c07602017-03-05 21:18:27 +01001454#endif
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01001455 if (ins_complete(c, TRUE) == FAIL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001456 compl_cont_status = 0;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001457#ifdef FEAT_FOLDING
Bram Moolenaar429fcfb2016-04-14 16:22:04 +02001458 disable_fold_update--;
Bram Moolenaara6c07602017-03-05 21:18:27 +01001459#endif
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001460 compl_busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 break;
1462#endif /* FEAT_INS_EXPAND */
1463
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001464 case Ctrl_Y: /* copy from previous line or scroll down */
1465 case Ctrl_E: /* copy from next line or scroll up */
1466 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 break;
1468
1469 default:
1470#ifdef UNIX
1471 if (c == intr_char) /* special interrupt char */
1472 goto do_intr;
1473#endif
1474
Bram Moolenaare659c952011-05-19 17:25:41 +02001475normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001477 * Insert a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001479#if defined(FEAT_EVAL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001480 if (!p_paste)
1481 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001482 /* Trigger InsertCharPre. */
1483 char_u *str = do_insert_char_pre(c);
1484 char_u *p;
1485
1486 if (str != NULL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001487 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001488 if (*str != NUL && stop_arrow() != FAIL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001489 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001490 /* Insert the new value of v:char literally. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001491 for (p = str; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaare659c952011-05-19 17:25:41 +02001492 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001493 c = PTR2CHAR(p);
1494 if (c == CAR || c == K_KENTER || c == NL)
1495 ins_eol(c);
1496 else
1497 ins_char(c);
Bram Moolenaare659c952011-05-19 17:25:41 +02001498 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001499 AppendToRedobuffLit(str, -1);
Bram Moolenaare659c952011-05-19 17:25:41 +02001500 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001501 vim_free(str);
1502 c = NUL;
Bram Moolenaare659c952011-05-19 17:25:41 +02001503 }
1504
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001505 /* If the new value is already inserted or an empty string
1506 * then don't insert any character. */
Bram Moolenaare659c952011-05-19 17:25:41 +02001507 if (c == NUL)
1508 break;
1509 }
1510#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511#ifdef FEAT_SMARTINDENT
1512 /* Try to perform smart-indenting. */
1513 ins_try_si(c);
1514#endif
1515
1516 if (c == ' ')
1517 {
1518 inserted_space = TRUE;
1519#ifdef FEAT_CINDENT
1520 if (inindent(0))
1521 can_cindent = FALSE;
1522#endif
1523 if (Insstart_blank_vcol == MAXCOL
1524 && curwin->w_cursor.lnum == Insstart.lnum)
1525 Insstart_blank_vcol = get_nolist_virtcol();
1526 }
1527
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02001528 /* Insert a normal character and check for abbreviations on a
1529 * special character. Let CTRL-] expand abbreviations without
1530 * inserting it. */
1531 if (vim_iswordc(c) || (!echeck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532#ifdef FEAT_MBYTE
1533 /* Add ABBR_OFF for characters above 0x100, this is
1534 * what check_abbr() expects. */
1535 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1536#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001537 c) && c != Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 {
1539 insert_special(c, FALSE, FALSE);
1540#ifdef FEAT_RIGHTLEFT
1541 revins_legal++;
1542 revins_chars++;
1543#endif
1544 }
1545
1546 auto_format(FALSE, TRUE);
1547
1548#ifdef FEAT_FOLDING
1549 /* When inserting a character the cursor line must never be in a
1550 * closed fold. */
1551 foldOpenCursor();
1552#endif
1553 break;
1554 } /* end of switch (c) */
1555
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001556 /* If typed something may trigger CursorHoldI again. */
Bram Moolenaar245c4102016-04-20 17:37:41 +02001557 if (c != K_CURSORHOLD
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001558#ifdef FEAT_COMPL_FUNC
Bram Moolenaar02ae9b42018-02-09 15:06:02 +01001559 /* but not in CTRL-X mode, a script can't restore the state */
1560 && ctrl_x_mode == CTRL_X_NORMAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001561#endif
Bram Moolenaar245c4102016-04-20 17:37:41 +02001562 )
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001563 did_cursorhold = FALSE;
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001564
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 /* If the cursor was moved we didn't just insert a space */
1566 if (arrow_used)
1567 inserted_space = FALSE;
1568
1569#ifdef FEAT_CINDENT
1570 if (can_cindent && cindent_on()
1571# ifdef FEAT_INS_EXPAND
Bram Moolenaar02ae9b42018-02-09 15:06:02 +01001572 && ctrl_x_mode == CTRL_X_NORMAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573# endif
1574 )
1575 {
1576force_cindent:
1577 /*
1578 * Indent now if a key was typed that is in 'cinkeys'.
1579 */
1580 if (in_cinkeys(c, ' ', line_is_white))
1581 {
1582 if (stop_arrow() == OK)
1583 /* re-indent the current line */
1584 do_c_expr_indent();
1585 }
1586 }
1587#endif /* FEAT_CINDENT */
1588
1589 } /* for (;;) */
1590 /* NOTREACHED */
1591}
1592
1593/*
1594 * Redraw for Insert mode.
1595 * This is postponed until getting the next character to make '$' in the 'cpo'
1596 * option work correctly.
1597 * Only redraw when there are no characters available. This speeds up
1598 * inserting sequences of characters (e.g., for CTRL-R).
1599 */
1600 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001601ins_redraw(
1602 int ready UNUSED) /* not busy with something */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001604#ifdef FEAT_CONCEAL
1605 linenr_T conceal_old_cursor_line = 0;
1606 linenr_T conceal_new_cursor_line = 0;
1607 int conceal_update_lines = FALSE;
1608#endif
1609
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001610 if (char_avail())
1611 return;
1612
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001613#if defined(FEAT_CONCEAL)
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001614 /* Trigger CursorMoved if the cursor moved. Not when the popup menu is
1615 * visible, the command might delete it. */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001616 if (ready && (has_cursormovedI()
1617# if defined(FEAT_CONCEAL)
1618 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001619# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001620 )
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001621 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001622# ifdef FEAT_INS_EXPAND
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001623 && !pum_visible()
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001624# endif
1625 )
1626 {
1627# ifdef FEAT_SYN_HL
1628 /* Need to update the screen first, to make sure syntax
1629 * highlighting is correct after making a change (e.g., inserting
1630 * a "(". The autocommand may also require a redraw, so it's done
1631 * again below, unfortunately. */
1632 if (syntax_present(curwin) && must_redraw)
1633 update_screen(0);
1634# endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001635 if (has_cursormovedI())
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001636 {
1637 /* Make sure curswant is correct, an autocommand may call
1638 * getcurpos(). */
1639 update_curswant();
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001640 apply_autocmds(EVENT_CURSORMOVEDI, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf068dca2016-02-09 21:24:46 +01001641 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001642# ifdef FEAT_CONCEAL
1643 if (curwin->w_p_cole > 0)
1644 {
1645 conceal_old_cursor_line = last_cursormoved.lnum;
1646 conceal_new_cursor_line = curwin->w_cursor.lnum;
1647 conceal_update_lines = TRUE;
1648 }
1649# endif
1650 last_cursormoved = curwin->w_cursor;
1651 }
1652#endif
1653
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001654 /* Trigger TextChangedI if b_changedtick differs. */
1655 if (ready && has_textchangedI()
Bram Moolenaar5a093432018-02-10 18:15:19 +01001656 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001657#ifdef FEAT_INS_EXPAND
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001658 && !pum_visible()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001659#endif
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001660 )
1661 {
Bram Moolenaar5a093432018-02-10 18:15:19 +01001662 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf);
1663 curbuf->b_last_changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 }
Bram Moolenaar5a093432018-02-10 18:15:19 +01001665
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001666#ifdef FEAT_INS_EXPAND
Bram Moolenaar5a093432018-02-10 18:15:19 +01001667 /* Trigger TextChangedP if b_changedtick differs. When the popupmenu closes
1668 * TextChangedI will need to trigger for backwards compatibility, thus use
1669 * different b_last_changedtick* variables. */
1670 if (ready && has_textchangedP()
1671 && curbuf->b_last_changedtick_pum != CHANGEDTICK(curbuf)
1672 && pum_visible())
1673 {
1674 apply_autocmds(EVENT_TEXTCHANGEDP, NULL, NULL, FALSE, curbuf);
1675 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
1676 }
Bram Moolenaare21b6b22014-01-14 12:17:02 +01001677#endif
1678
1679 if (must_redraw)
1680 update_screen(0);
1681 else if (clear_cmdline || redraw_cmdline)
1682 showmode(); /* clear cmdline and show mode */
1683# if defined(FEAT_CONCEAL)
1684 if ((conceal_update_lines
1685 && (conceal_old_cursor_line != conceal_new_cursor_line
1686 || conceal_cursor_line(curwin)))
1687 || need_cursor_line_redraw)
1688 {
1689 if (conceal_old_cursor_line != conceal_new_cursor_line)
1690 update_single_line(curwin, conceal_old_cursor_line);
1691 update_single_line(curwin, conceal_new_cursor_line == 0
1692 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
1693 curwin->w_valid &= ~VALID_CROW;
1694 }
1695# endif
1696 showruler(FALSE);
1697 setcursor();
1698 emsg_on_display = FALSE; /* may remove error message now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699}
1700
1701/*
1702 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1703 */
1704 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001705ins_ctrl_v(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706{
1707 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001708 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709
1710 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00001711 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712
1713 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001714 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001716 did_putchar = TRUE;
1717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 AppendToRedobuff((char_u *)CTRL_V_STR); /* CTRL-V */
1719
1720#ifdef FEAT_CMDL_INFO
1721 add_to_showcmd_c(Ctrl_V);
1722#endif
1723
1724 c = get_literal();
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001725 if (did_putchar)
1726 /* when the line fits in 'columns' the '^' is at the start of the next
1727 * line and will not removed by the redraw */
1728 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729#ifdef FEAT_CMDL_INFO
1730 clear_showcmd();
1731#endif
1732 insert_special(c, FALSE, TRUE);
1733#ifdef FEAT_RIGHTLEFT
1734 revins_chars++;
1735 revins_legal++;
1736#endif
1737}
1738
1739/*
1740 * Put a character directly onto the screen. It's not stored in a buffer.
1741 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1742 */
1743static int pc_status;
1744#define PC_STATUS_UNSET 0 /* pc_bytes was not set */
1745#define PC_STATUS_RIGHT 1 /* right halve of double-wide char */
1746#define PC_STATUS_LEFT 2 /* left halve of double-wide char */
1747#define PC_STATUS_SET 3 /* pc_bytes was filled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748static char_u pc_bytes[MB_MAXBYTES + 1]; /* saved bytes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749static int pc_attr;
1750static int pc_row;
1751static int pc_col;
1752
1753 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001754edit_putchar(int c, int highlight)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755{
1756 int attr;
1757
1758 if (ScreenLines != NULL)
1759 {
1760 update_topline(); /* just in case w_topline isn't valid */
1761 validate_cursor();
1762 if (highlight)
Bram Moolenaar8820b482017-03-16 17:23:31 +01001763 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 else
1765 attr = 0;
1766 pc_row = W_WINROW(curwin) + curwin->w_wrow;
Bram Moolenaar53f81742017-09-22 14:35:51 +02001767 pc_col = curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
1769 pc_status = PC_STATUS_UNSET;
1770#endif
1771#ifdef FEAT_RIGHTLEFT
1772 if (curwin->w_p_rl)
1773 {
Bram Moolenaar02631462017-09-22 15:20:32 +02001774 pc_col += curwin->w_width - 1 - curwin->w_wcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775# ifdef FEAT_MBYTE
1776 if (has_mbyte)
1777 {
1778 int fix_col = mb_fix_col(pc_col, pc_row);
1779
1780 if (fix_col != pc_col)
1781 {
1782 screen_putchar(' ', pc_row, fix_col, attr);
1783 --curwin->w_wcol;
1784 pc_status = PC_STATUS_RIGHT;
1785 }
1786 }
1787# endif
1788 }
1789 else
1790#endif
1791 {
1792 pc_col += curwin->w_wcol;
1793#ifdef FEAT_MBYTE
1794 if (mb_lefthalve(pc_row, pc_col))
1795 pc_status = PC_STATUS_LEFT;
1796#endif
1797 }
1798
1799 /* save the character to be able to put it back */
1800#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
1801 if (pc_status == PC_STATUS_UNSET)
1802#endif
1803 {
1804 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1805 pc_status = PC_STATUS_SET;
1806 }
1807 screen_putchar(c, pc_row, pc_col, attr);
1808 }
1809}
1810
1811/*
1812 * Undo the previous edit_putchar().
1813 */
1814 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001815edit_unputchar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816{
1817 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1818 {
1819#if defined(FEAT_MBYTE)
1820 if (pc_status == PC_STATUS_RIGHT)
1821 ++curwin->w_wcol;
1822 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
1823 redrawWinline(curwin->w_cursor.lnum, FALSE);
1824 else
1825#endif
1826 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1827 }
1828}
1829
1830/*
1831 * Called when p_dollar is set: display a '$' at the end of the changed text
1832 * Only works when cursor is in the line that changes.
1833 */
1834 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001835display_dollar(colnr_T col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836{
1837 colnr_T save_col;
1838
1839 if (!redrawing())
1840 return;
1841
1842 cursor_off();
1843 save_col = curwin->w_cursor.col;
1844 curwin->w_cursor.col = col;
1845#ifdef FEAT_MBYTE
1846 if (has_mbyte)
1847 {
1848 char_u *p;
1849
1850 /* If on the last byte of a multi-byte move to the first byte. */
1851 p = ml_get_curline();
1852 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1853 }
1854#endif
1855 curs_columns(FALSE); /* recompute w_wrow and w_wcol */
Bram Moolenaar02631462017-09-22 15:20:32 +02001856 if (curwin->w_wcol < curwin->w_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 {
1858 edit_putchar('$', FALSE);
1859 dollar_vcol = curwin->w_virtcol;
1860 }
1861 curwin->w_cursor.col = save_col;
1862}
1863
1864/*
1865 * Call this function before moving the cursor from the normal insert position
1866 * in insert mode.
1867 */
1868 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001869undisplay_dollar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001871 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001873 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 redrawWinline(curwin->w_cursor.lnum, FALSE);
1875 }
1876}
1877
1878/*
1879 * Insert an indent (for <Tab> or CTRL-T) or delete an indent (for CTRL-D).
1880 * Keep the cursor on the same character.
1881 * type == INDENT_INC increase indent (for CTRL-T or <Tab>)
1882 * type == INDENT_DEC decrease indent (for CTRL-D)
1883 * type == INDENT_SET set indent to "amount"
1884 * if round is TRUE, round the indent to 'shiftwidth' (only with _INC and _Dec).
1885 */
1886 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001887change_indent(
1888 int type,
1889 int amount,
1890 int round,
1891 int replaced, /* replaced character, put on replace stack */
1892 int call_changed_bytes) /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893{
1894 int vcol;
1895 int last_vcol;
1896 int insstart_less; /* reduction for Insstart.col */
1897 int new_cursor_col;
1898 int i;
1899 char_u *ptr;
1900 int save_p_list;
1901 int start_col;
1902 colnr_T vc;
1903#ifdef FEAT_VREPLACE
1904 colnr_T orig_col = 0; /* init for GCC */
1905 char_u *new_line, *orig_line = NULL; /* init for GCC */
1906
1907 /* VREPLACE mode needs to know what the line was like before changing */
1908 if (State & VREPLACE_FLAG)
1909 {
1910 orig_line = vim_strsave(ml_get_curline()); /* Deal with NULL below */
1911 orig_col = curwin->w_cursor.col;
1912 }
1913#endif
1914
1915 /* for the following tricks we don't want list mode */
1916 save_p_list = curwin->w_p_list;
1917 curwin->w_p_list = FALSE;
1918 vc = getvcol_nolist(&curwin->w_cursor);
1919 vcol = vc;
1920
1921 /*
1922 * For Replace mode we need to fix the replace stack later, which is only
1923 * possible when the cursor is in the indent. Remember the number of
1924 * characters before the cursor if it's possible.
1925 */
1926 start_col = curwin->w_cursor.col;
1927
1928 /* determine offset from first non-blank */
1929 new_cursor_col = curwin->w_cursor.col;
1930 beginline(BL_WHITE);
1931 new_cursor_col -= curwin->w_cursor.col;
1932
1933 insstart_less = curwin->w_cursor.col;
1934
1935 /*
1936 * If the cursor is in the indent, compute how many screen columns the
1937 * cursor is to the left of the first non-blank.
1938 */
1939 if (new_cursor_col < 0)
1940 vcol = get_indent() - vcol;
1941
1942 if (new_cursor_col > 0) /* can't fix replace stack */
1943 start_col = -1;
1944
1945 /*
1946 * Set the new indent. The cursor will be put on the first non-blank.
1947 */
1948 if (type == INDENT_SET)
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001949 (void)set_indent(amount, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 else
1951 {
1952#ifdef FEAT_VREPLACE
1953 int save_State = State;
1954
1955 /* Avoid being called recursively. */
1956 if (State & VREPLACE_FLAG)
1957 State = INSERT;
1958#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001959 shift_line(type == INDENT_DEC, round, 1, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960#ifdef FEAT_VREPLACE
1961 State = save_State;
1962#endif
1963 }
1964 insstart_less -= curwin->w_cursor.col;
1965
1966 /*
1967 * Try to put cursor on same character.
1968 * If the cursor is at or after the first non-blank in the line,
1969 * compute the cursor column relative to the column of the first
1970 * non-blank character.
1971 * If we are not in insert mode, leave the cursor on the first non-blank.
1972 * If the cursor is before the first non-blank, position it relative
1973 * to the first non-blank, counted in screen columns.
1974 */
1975 if (new_cursor_col >= 0)
1976 {
1977 /*
1978 * When changing the indent while the cursor is touching it, reset
1979 * Insstart_col to 0.
1980 */
1981 if (new_cursor_col == 0)
1982 insstart_less = MAXCOL;
1983 new_cursor_col += curwin->w_cursor.col;
1984 }
1985 else if (!(State & INSERT))
1986 new_cursor_col = curwin->w_cursor.col;
1987 else
1988 {
1989 /*
1990 * Compute the screen column where the cursor should be.
1991 */
1992 vcol = get_indent() - vcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001993 curwin->w_virtcol = (colnr_T)((vcol < 0) ? 0 : vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994
1995 /*
1996 * Advance the cursor until we reach the right screen column.
1997 */
1998 vcol = last_vcol = 0;
1999 new_cursor_col = -1;
2000 ptr = ml_get_curline();
2001 while (vcol <= (int)curwin->w_virtcol)
2002 {
2003 last_vcol = vcol;
2004#ifdef FEAT_MBYTE
2005 if (has_mbyte && new_cursor_col >= 0)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002006 new_cursor_col += (*mb_ptr2len)(ptr + new_cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 else
2008#endif
2009 ++new_cursor_col;
Bram Moolenaar597a4222014-06-25 14:39:50 +02002010 vcol += lbr_chartabsize(ptr, ptr + new_cursor_col, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 }
2012 vcol = last_vcol;
2013
2014 /*
2015 * May need to insert spaces to be able to position the cursor on
2016 * the right screen column.
2017 */
2018 if (vcol != (int)curwin->w_virtcol)
2019 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002020 curwin->w_cursor.col = (colnr_T)new_cursor_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 i = (int)curwin->w_virtcol - vcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002022 ptr = alloc((unsigned)(i + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 if (ptr != NULL)
2024 {
2025 new_cursor_col += i;
2026 ptr[i] = NUL;
2027 while (--i >= 0)
2028 ptr[i] = ' ';
2029 ins_str(ptr);
2030 vim_free(ptr);
2031 }
2032 }
2033
2034 /*
2035 * When changing the indent while the cursor is in it, reset
2036 * Insstart_col to 0.
2037 */
2038 insstart_less = MAXCOL;
2039 }
2040
2041 curwin->w_p_list = save_p_list;
2042
2043 if (new_cursor_col <= 0)
2044 curwin->w_cursor.col = 0;
2045 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002046 curwin->w_cursor.col = (colnr_T)new_cursor_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 curwin->w_set_curswant = TRUE;
2048 changed_cline_bef_curs();
2049
2050 /*
2051 * May have to adjust the start of the insert.
2052 */
2053 if (State & INSERT)
2054 {
2055 if (curwin->w_cursor.lnum == Insstart.lnum && Insstart.col != 0)
2056 {
2057 if ((int)Insstart.col <= insstart_less)
2058 Insstart.col = 0;
2059 else
2060 Insstart.col -= insstart_less;
2061 }
2062 if ((int)ai_col <= insstart_less)
2063 ai_col = 0;
2064 else
2065 ai_col -= insstart_less;
2066 }
2067
2068 /*
2069 * For REPLACE mode, may have to fix the replace stack, if it's possible.
2070 * If the number of characters before the cursor decreased, need to pop a
2071 * few characters from the replace stack.
2072 * If the number of characters before the cursor increased, need to push a
2073 * few NULs onto the replace stack.
2074 */
2075 if (REPLACE_NORMAL(State) && start_col >= 0)
2076 {
2077 while (start_col > (int)curwin->w_cursor.col)
2078 {
2079 replace_join(0); /* remove a NUL from the replace stack */
2080 --start_col;
2081 }
2082 while (start_col < (int)curwin->w_cursor.col || replaced)
2083 {
2084 replace_push(NUL);
2085 if (replaced)
2086 {
2087 replace_push(replaced);
2088 replaced = NUL;
2089 }
2090 ++start_col;
2091 }
2092 }
2093
2094#ifdef FEAT_VREPLACE
2095 /*
2096 * For VREPLACE mode, we also have to fix the replace stack. In this case
2097 * it is always possible because we backspace over the whole line and then
2098 * put it back again the way we wanted it.
2099 */
2100 if (State & VREPLACE_FLAG)
2101 {
2102 /* If orig_line didn't allocate, just return. At least we did the job,
2103 * even if you can't backspace. */
2104 if (orig_line == NULL)
2105 return;
2106
2107 /* Save new line */
2108 new_line = vim_strsave(ml_get_curline());
2109 if (new_line == NULL)
2110 return;
2111
2112 /* We only put back the new line up to the cursor */
2113 new_line[curwin->w_cursor.col] = NUL;
2114
2115 /* Put back original line */
2116 ml_replace(curwin->w_cursor.lnum, orig_line, FALSE);
2117 curwin->w_cursor.col = orig_col;
2118
2119 /* Backspace from cursor to start of line */
2120 backspace_until_column(0);
2121
2122 /* Insert new stuff into line again */
2123 ins_bytes(new_line);
2124
2125 vim_free(new_line);
2126 }
2127#endif
2128}
2129
2130/*
2131 * Truncate the space at the end of a line. This is to be used only in an
2132 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
2133 * modes.
2134 */
2135 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002136truncate_spaces(char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137{
2138 int i;
2139
2140 /* find start of trailing white space */
Bram Moolenaar1c465442017-03-12 20:10:05 +01002141 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 {
2143 if (State & REPLACE_FLAG)
2144 replace_join(0); /* remove a NUL from the replace stack */
2145 }
2146 line[i + 1] = NUL;
2147}
2148
2149#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
2150 || defined(FEAT_COMMENTS) || defined(PROTO)
2151/*
2152 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
2153 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002154 * Will attempt not to go before "col" even when there is a composing
2155 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 */
2157 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002158backspace_until_column(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159{
2160 while ((int)curwin->w_cursor.col > col)
2161 {
2162 curwin->w_cursor.col--;
2163 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002164 replace_do_bs(col);
2165 else if (!del_char_after_col(col))
2166 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 }
2168}
2169#endif
2170
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002171/*
2172 * Like del_char(), but make sure not to go before column "limit_col".
2173 * Only matters when there are composing characters.
2174 * Return TRUE when something was deleted.
2175 */
2176 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002177del_char_after_col(int limit_col UNUSED)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002178{
2179#ifdef FEAT_MBYTE
2180 if (enc_utf8 && limit_col >= 0)
2181 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002182 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002183
2184 /* Make sure the cursor is at the start of a character, but
2185 * skip forward again when going too far back because of a
2186 * composing character. */
2187 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00002188 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002189 {
2190 int l = utf_ptr2len(ml_get_cursor());
2191
2192 if (l == 0) /* end of line */
2193 break;
2194 curwin->w_cursor.col += l;
2195 }
2196 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
2197 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002198 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002199 }
2200 else
2201#endif
2202 (void)del_char(FALSE);
2203 return TRUE;
2204}
2205
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206#if defined(FEAT_INS_EXPAND) || defined(PROTO)
2207/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002208 * CTRL-X pressed in Insert mode.
2209 */
2210 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002211ins_ctrl_x(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002212{
2213 /* CTRL-X after CTRL-X CTRL-V doesn't do anything, so that CTRL-X
2214 * CTRL-V works like CTRL-N */
2215 if (ctrl_x_mode != CTRL_X_CMDLINE)
2216 {
2217 /* if the next ^X<> won't ADD nothing, then reset
2218 * compl_cont_status */
2219 if (compl_cont_status & CONT_N_ADDS)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002220 compl_cont_status |= CONT_INTRPT;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002221 else
2222 compl_cont_status = 0;
2223 /* We're not sure which CTRL-X mode it will be yet */
2224 ctrl_x_mode = CTRL_X_NOT_DEFINED_YET;
2225 edit_submode = (char_u *)_(CTRL_X_MSG(ctrl_x_mode));
2226 edit_submode_pre = NULL;
2227 showmode();
2228 }
2229}
2230
2231/*
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01002232 * Whether other than default completion has been selected.
2233 */
2234 int
2235ctrl_x_mode_not_default(void)
2236{
2237 return ctrl_x_mode != CTRL_X_NORMAL;
2238}
2239
2240/*
2241 * Whether CTRL-X was typed without a following character.
2242 */
2243 int
2244ctrl_x_mode_not_defined_yet(void)
2245{
2246 return ctrl_x_mode == CTRL_X_NOT_DEFINED_YET;
2247}
2248
2249/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002250 * Return TRUE if the 'dict' or 'tsr' option can be used.
2251 */
2252 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002253has_compl_option(int dict_opt)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002254{
Bram Moolenaar0b238792006-03-02 22:49:12 +00002255 if (dict_opt ? (*curbuf->b_p_dict == NUL && *p_dict == NUL
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002256# ifdef FEAT_SPELL
2257 && !curwin->w_p_spell
2258# endif
2259 )
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002260 : (*curbuf->b_p_tsr == NUL && *p_tsr == NUL))
2261 {
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01002262 ctrl_x_mode = CTRL_X_NORMAL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002263 edit_submode = NULL;
2264 msg_attr(dict_opt ? (char_u *)_("'dictionary' option is empty")
2265 : (char_u *)_("'thesaurus' option is empty"),
Bram Moolenaar8820b482017-03-16 17:23:31 +01002266 HL_ATTR(HLF_E));
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002267 if (emsg_silent == 0)
2268 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02002269 vim_beep(BO_COMPL);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002270 setcursor();
2271 out_flush();
Bram Moolenaareb992cb2017-03-09 18:20:16 +01002272#ifdef FEAT_EVAL
2273 if (!get_vim_var_nr(VV_TESTING))
2274#endif
2275 ui_delay(2000L, FALSE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002276 }
2277 return FALSE;
2278 }
2279 return TRUE;
2280}
2281
2282/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 * Is the character 'c' a valid key to go to or keep us in CTRL-X mode?
2284 * This depends on the current mode.
2285 */
2286 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002287vim_is_ctrl_x_key(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288{
2289 /* Always allow ^R - let it's results then be checked */
2290 if (c == Ctrl_R)
2291 return TRUE;
2292
Bram Moolenaare3226be2005-12-18 22:10:00 +00002293 /* Accept <PageUp> and <PageDown> if the popup menu is visible. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002294 if (ins_compl_pum_key(c))
Bram Moolenaare3226be2005-12-18 22:10:00 +00002295 return TRUE;
2296
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 switch (ctrl_x_mode)
2298 {
2299 case 0: /* Not in any CTRL-X mode */
2300 return (c == Ctrl_N || c == Ctrl_P || c == Ctrl_X);
2301 case CTRL_X_NOT_DEFINED_YET:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002302 return ( c == Ctrl_X || c == Ctrl_Y || c == Ctrl_E
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 || c == Ctrl_L || c == Ctrl_F || c == Ctrl_RSB
2304 || c == Ctrl_I || c == Ctrl_D || c == Ctrl_P
2305 || c == Ctrl_N || c == Ctrl_T || c == Ctrl_V
Bram Moolenaar488c6512005-08-11 20:09:58 +00002306 || c == Ctrl_Q || c == Ctrl_U || c == Ctrl_O
Bram Moolenaarbbd9fd72011-12-23 13:15:03 +01002307 || c == Ctrl_S || c == Ctrl_K || c == 's');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 case CTRL_X_SCROLL:
2309 return (c == Ctrl_Y || c == Ctrl_E);
2310 case CTRL_X_WHOLE_LINE:
2311 return (c == Ctrl_L || c == Ctrl_P || c == Ctrl_N);
2312 case CTRL_X_FILES:
2313 return (c == Ctrl_F || c == Ctrl_P || c == Ctrl_N);
2314 case CTRL_X_DICTIONARY:
2315 return (c == Ctrl_K || c == Ctrl_P || c == Ctrl_N);
2316 case CTRL_X_THESAURUS:
2317 return (c == Ctrl_T || c == Ctrl_P || c == Ctrl_N);
2318 case CTRL_X_TAGS:
2319 return (c == Ctrl_RSB || c == Ctrl_P || c == Ctrl_N);
2320#ifdef FEAT_FIND_ID
2321 case CTRL_X_PATH_PATTERNS:
2322 return (c == Ctrl_P || c == Ctrl_N);
2323 case CTRL_X_PATH_DEFINES:
2324 return (c == Ctrl_D || c == Ctrl_P || c == Ctrl_N);
2325#endif
2326 case CTRL_X_CMDLINE:
2327 return (c == Ctrl_V || c == Ctrl_Q || c == Ctrl_P || c == Ctrl_N
2328 || c == Ctrl_X);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002329#ifdef FEAT_COMPL_FUNC
2330 case CTRL_X_FUNCTION:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002331 return (c == Ctrl_U || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002332 case CTRL_X_OMNI:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002333 return (c == Ctrl_O || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002334#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00002335 case CTRL_X_SPELL:
2336 return (c == Ctrl_S || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaare4214502015-03-05 18:08:43 +01002337 case CTRL_X_EVAL:
2338 return (c == Ctrl_P || c == Ctrl_N);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 }
Bram Moolenaar95f09602016-11-10 20:01:45 +01002340 internal_error("vim_is_ctrl_x_key()");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 return FALSE;
2342}
2343
2344/*
Bram Moolenaar711d5b52007-10-19 18:40:51 +00002345 * Return TRUE when character "c" is part of the item currently being
2346 * completed. Used to decide whether to abandon complete mode when the menu
2347 * is visible.
2348 */
2349 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002350ins_compl_accept_char(int c)
Bram Moolenaar711d5b52007-10-19 18:40:51 +00002351{
2352 if (ctrl_x_mode & CTRL_X_WANT_IDENT)
2353 /* When expanding an identifier only accept identifier chars. */
2354 return vim_isIDc(c);
2355
2356 switch (ctrl_x_mode)
2357 {
2358 case CTRL_X_FILES:
2359 /* When expanding file name only accept file name chars. But not
2360 * path separators, so that "proto/<Tab>" expands files in
2361 * "proto", not "proto/" as a whole */
2362 return vim_isfilec(c) && !vim_ispathsep(c);
2363
2364 case CTRL_X_CMDLINE:
2365 case CTRL_X_OMNI:
2366 /* Command line and Omni completion can work with just about any
2367 * printable character, but do stop at white space. */
Bram Moolenaar1c465442017-03-12 20:10:05 +01002368 return vim_isprintc(c) && !VIM_ISWHITE(c);
Bram Moolenaar711d5b52007-10-19 18:40:51 +00002369
2370 case CTRL_X_WHOLE_LINE:
2371 /* For while line completion a space can be part of the line. */
2372 return vim_isprintc(c);
2373 }
2374 return vim_iswordc(c);
2375}
2376
2377/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002378 * This is like ins_compl_add(), but if 'ic' and 'inf' are set, then the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 * case of the originally typed text is used, and the case of the completed
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00002380 * text is inferred, ie this tries to work out what case you probably wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 * the rest of the word to be in -- webb
2382 */
2383 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002384ins_compl_add_infercase(
2385 char_u *str,
2386 int len,
2387 int icase,
2388 char_u *fname,
2389 int dir,
2390 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391{
Bram Moolenaara2993e12007-08-12 14:38:46 +00002392 char_u *p;
2393 int i, c;
2394 int actual_len; /* Take multi-byte characters */
2395 int actual_compl_length; /* into account. */
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002396 int min_len;
Bram Moolenaar97b98102009-11-17 16:41:01 +00002397 int *wca; /* Wide character array. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 int has_lower = FALSE;
2399 int was_letter = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400
Bram Moolenaare40e57c2007-11-08 12:04:26 +00002401 if (p_ic && curbuf->b_p_inf && len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002403 /* Infer case of completed part. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404
Bram Moolenaara2993e12007-08-12 14:38:46 +00002405 /* Find actual length of completion. */
2406#ifdef FEAT_MBYTE
2407 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002409 p = str;
2410 actual_len = 0;
2411 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002413 MB_PTR_ADV(p);
Bram Moolenaara2993e12007-08-12 14:38:46 +00002414 ++actual_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 }
2416 }
Bram Moolenaara2993e12007-08-12 14:38:46 +00002417 else
2418#endif
2419 actual_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420
Bram Moolenaara2993e12007-08-12 14:38:46 +00002421 /* Find actual length of original text. */
2422#ifdef FEAT_MBYTE
2423 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002425 p = compl_orig_text;
2426 actual_compl_length = 0;
2427 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002429 MB_PTR_ADV(p);
Bram Moolenaara2993e12007-08-12 14:38:46 +00002430 ++actual_compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 }
2432 }
Bram Moolenaara2993e12007-08-12 14:38:46 +00002433 else
2434#endif
2435 actual_compl_length = compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002437 /* "actual_len" may be smaller than "actual_compl_length" when using
2438 * thesaurus, only use the minimum when comparing. */
2439 min_len = actual_len < actual_compl_length
2440 ? actual_len : actual_compl_length;
2441
Bram Moolenaara2993e12007-08-12 14:38:46 +00002442 /* Allocate wide character array for the completion and fill it. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002443 wca = (int *)alloc((unsigned)(actual_len * sizeof(int)));
Bram Moolenaara2993e12007-08-12 14:38:46 +00002444 if (wca != NULL)
2445 {
2446 p = str;
2447 for (i = 0; i < actual_len; ++i)
2448#ifdef FEAT_MBYTE
2449 if (has_mbyte)
2450 wca[i] = mb_ptr2char_adv(&p);
2451 else
2452#endif
2453 wca[i] = *(p++);
2454
2455 /* Rule 1: Were any chars converted to lower? */
2456 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002457 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002458 {
2459#ifdef FEAT_MBYTE
2460 if (has_mbyte)
2461 c = mb_ptr2char_adv(&p);
2462 else
2463#endif
2464 c = *(p++);
2465 if (MB_ISLOWER(c))
2466 {
2467 has_lower = TRUE;
2468 if (MB_ISUPPER(wca[i]))
2469 {
2470 /* Rule 1 is satisfied. */
2471 for (i = actual_compl_length; i < actual_len; ++i)
2472 wca[i] = MB_TOLOWER(wca[i]);
2473 break;
2474 }
2475 }
2476 }
2477
2478 /*
2479 * Rule 2: No lower case, 2nd consecutive letter converted to
2480 * upper case.
2481 */
2482 if (!has_lower)
2483 {
2484 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002485 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002486 {
2487#ifdef FEAT_MBYTE
2488 if (has_mbyte)
2489 c = mb_ptr2char_adv(&p);
2490 else
2491#endif
2492 c = *(p++);
2493 if (was_letter && MB_ISUPPER(c) && MB_ISLOWER(wca[i]))
2494 {
2495 /* Rule 2 is satisfied. */
2496 for (i = actual_compl_length; i < actual_len; ++i)
2497 wca[i] = MB_TOUPPER(wca[i]);
2498 break;
2499 }
2500 was_letter = MB_ISLOWER(c) || MB_ISUPPER(c);
2501 }
2502 }
2503
2504 /* Copy the original case of the part we typed. */
2505 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002506 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002507 {
2508#ifdef FEAT_MBYTE
2509 if (has_mbyte)
2510 c = mb_ptr2char_adv(&p);
2511 else
2512#endif
2513 c = *(p++);
2514 if (MB_ISLOWER(c))
2515 wca[i] = MB_TOLOWER(wca[i]);
2516 else if (MB_ISUPPER(c))
2517 wca[i] = MB_TOUPPER(wca[i]);
2518 }
2519
Bram Moolenaare40e57c2007-11-08 12:04:26 +00002520 /*
Bram Moolenaara2993e12007-08-12 14:38:46 +00002521 * Generate encoding specific output from wide character array.
2522 * Multi-byte characters can occupy up to five bytes more than
2523 * ASCII characters, and we also need one byte for NUL, so stay
2524 * six bytes away from the edge of IObuff.
2525 */
2526 p = IObuff;
2527 i = 0;
2528 while (i < actual_len && (p - IObuff + 6) < IOSIZE)
2529#ifdef FEAT_MBYTE
2530 if (has_mbyte)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00002531 p += (*mb_char2bytes)(wca[i++], p);
Bram Moolenaara2993e12007-08-12 14:38:46 +00002532 else
2533#endif
2534 *(p++) = wca[i++];
2535 *p = NUL;
2536
2537 vim_free(wca);
2538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002540 return ins_compl_add(IObuff, len, icase, fname, NULL, dir,
2541 flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 }
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002543 return ins_compl_add(str, len, icase, fname, NULL, dir, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544}
2545
2546/*
2547 * Add a match to the list of matches.
2548 * If the given string is already in the list of completions, then return
Bram Moolenaar572cb562005-08-05 21:35:02 +00002549 * NOTDONE, otherwise add it to the list and return OK. If there is an error,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002550 * maybe because alloc() returns NULL, then FAIL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002552 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002553ins_compl_add(
2554 char_u *str,
2555 int len,
2556 int icase,
2557 char_u *fname,
2558 char_u **cptext, /* extra text for popup menu or NULL */
2559 int cdir,
2560 int flags,
2561 int adup) /* accept duplicate match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562{
Bram Moolenaar572cb562005-08-05 21:35:02 +00002563 compl_T *match;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002564 int dir = (cdir == 0 ? compl_direction : cdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565
2566 ui_breakcheck();
2567 if (got_int)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002568 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 if (len < 0)
2570 len = (int)STRLEN(str);
2571
2572 /*
2573 * If the same match is already present, don't add it.
2574 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002575 if (compl_first_match != NULL && !adup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002577 match = compl_first_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 do
2579 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002580 if ( !(match->cp_flags & ORIGINAL_TEXT)
Bram Moolenaar5948a572006-10-03 13:49:29 +00002581 && STRNCMP(match->cp_str, str, len) == 0
Bram Moolenaar572cb562005-08-05 21:35:02 +00002582 && match->cp_str[len] == NUL)
2583 return NOTDONE;
2584 match = match->cp_next;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002585 } while (match != NULL && match != compl_first_match);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 }
2587
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002588 /* Remove any popup menu before changing the list of matches. */
2589 ins_compl_del_pum();
2590
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 /*
2592 * Allocate a new match structure.
2593 * Copy the values to the new match structure.
2594 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002595 match = (compl_T *)alloc_clear((unsigned)sizeof(compl_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 if (match == NULL)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002597 return FAIL;
2598 match->cp_number = -1;
2599 if (flags & ORIGINAL_TEXT)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002600 match->cp_number = 0;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002601 if ((match->cp_str = vim_strnsave(str, len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 {
2603 vim_free(match);
Bram Moolenaar572cb562005-08-05 21:35:02 +00002604 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002606 match->cp_icase = icase;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002607
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 /* match-fname is:
Bram Moolenaar572cb562005-08-05 21:35:02 +00002609 * - compl_curr_match->cp_fname if it is a string equal to fname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 * - a copy of fname, FREE_FNAME is set to free later THE allocated mem.
2611 * - NULL otherwise. --Acevedo */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002612 if (fname != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002613 && compl_curr_match != NULL
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002614 && compl_curr_match->cp_fname != NULL
2615 && STRCMP(fname, compl_curr_match->cp_fname) == 0)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002616 match->cp_fname = compl_curr_match->cp_fname;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002617 else if (fname != NULL)
2618 {
2619 match->cp_fname = vim_strsave(fname);
Bram Moolenaar572cb562005-08-05 21:35:02 +00002620 flags |= FREE_FNAME;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002621 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 else
Bram Moolenaar572cb562005-08-05 21:35:02 +00002623 match->cp_fname = NULL;
2624 match->cp_flags = flags;
Bram Moolenaar39f05632006-03-19 22:15:26 +00002625
2626 if (cptext != NULL)
2627 {
2628 int i;
2629
2630 for (i = 0; i < CPT_COUNT; ++i)
2631 if (cptext[i] != NULL && *cptext[i] != NUL)
2632 match->cp_text[i] = vim_strsave(cptext[i]);
2633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634
2635 /*
2636 * Link the new match structure in the list of matches.
2637 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002638 if (compl_first_match == NULL)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002639 match->cp_next = match->cp_prev = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 else if (dir == FORWARD)
2641 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002642 match->cp_next = compl_curr_match->cp_next;
2643 match->cp_prev = compl_curr_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 }
2645 else /* BACKWARD */
2646 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002647 match->cp_next = compl_curr_match;
2648 match->cp_prev = compl_curr_match->cp_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00002650 if (match->cp_next)
2651 match->cp_next->cp_prev = match;
2652 if (match->cp_prev)
2653 match->cp_prev->cp_next = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 else /* if there's nothing before, it is the first match */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002655 compl_first_match = match;
2656 compl_curr_match = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002658 /*
2659 * Find the longest common string if still doing that.
2660 */
2661 if (compl_get_longest && (flags & ORIGINAL_TEXT) == 0)
2662 ins_compl_longest_match(match);
2663
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 return OK;
2665}
2666
2667/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002668 * Return TRUE if "str[len]" matches with match->cp_str, considering
2669 * match->cp_icase.
2670 */
2671 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002672ins_compl_equal(compl_T *match, char_u *str, int len)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002673{
2674 if (match->cp_icase)
2675 return STRNICMP(match->cp_str, str, (size_t)len) == 0;
2676 return STRNCMP(match->cp_str, str, (size_t)len) == 0;
2677}
2678
2679/*
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002680 * Reduce the longest common string for match "match".
2681 */
2682 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002683ins_compl_longest_match(compl_T *match)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002684{
2685 char_u *p, *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002686 int c1, c2;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002687 int had_match;
2688
2689 if (compl_leader == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002690 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002691 /* First match, use it as a whole. */
2692 compl_leader = vim_strsave(match->cp_str);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002693 if (compl_leader != NULL)
2694 {
2695 had_match = (curwin->w_cursor.col > compl_col);
2696 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002697 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002698 ins_redraw(FALSE);
2699
2700 /* When the match isn't there (to avoid matching itself) remove it
2701 * again after redrawing. */
2702 if (!had_match)
2703 ins_compl_delete();
2704 compl_used_match = FALSE;
2705 }
2706 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002707 else
2708 {
2709 /* Reduce the text if this match differs from compl_leader. */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002710 p = compl_leader;
2711 s = match->cp_str;
2712 while (*p != NUL)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002713 {
2714#ifdef FEAT_MBYTE
2715 if (has_mbyte)
2716 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002717 c1 = mb_ptr2char(p);
2718 c2 = mb_ptr2char(s);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002719 }
2720 else
2721#endif
2722 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002723 c1 = *p;
2724 c2 = *s;
2725 }
2726 if (match->cp_icase ? (MB_TOLOWER(c1) != MB_TOLOWER(c2))
2727 : (c1 != c2))
2728 break;
2729#ifdef FEAT_MBYTE
2730 if (has_mbyte)
2731 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002732 MB_PTR_ADV(p);
2733 MB_PTR_ADV(s);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002734 }
2735 else
2736#endif
2737 {
2738 ++p;
2739 ++s;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002740 }
2741 }
2742
2743 if (*p != NUL)
2744 {
2745 /* Leader was shortened, need to change the inserted text. */
2746 *p = NUL;
2747 had_match = (curwin->w_cursor.col > compl_col);
2748 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002749 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002750 ins_redraw(FALSE);
2751
2752 /* When the match isn't there (to avoid matching itself) remove it
2753 * again after redrawing. */
2754 if (!had_match)
2755 ins_compl_delete();
2756 }
2757
2758 compl_used_match = FALSE;
2759 }
2760}
2761
2762/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 * Add an array of matches to the list of matches.
2764 * Frees matches[].
2765 */
2766 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002767ins_compl_add_matches(
2768 int num_matches,
2769 char_u **matches,
2770 int icase)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771{
2772 int i;
2773 int add_r = OK;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002774 int dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775
Bram Moolenaar572cb562005-08-05 21:35:02 +00002776 for (i = 0; i < num_matches && add_r != FAIL; i++)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002777 if ((add_r = ins_compl_add(matches[i], -1, icase,
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002778 NULL, NULL, dir, 0, FALSE)) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 /* if dir was BACKWARD then honor it just once */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002780 dir = FORWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 FreeWild(num_matches, matches);
2782}
2783
2784/* Make the completion list cyclic.
2785 * Return the number of matches (excluding the original).
2786 */
2787 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002788ins_compl_make_cyclic(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789{
Bram Moolenaar572cb562005-08-05 21:35:02 +00002790 compl_T *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 int count = 0;
2792
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002793 if (compl_first_match != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 {
2795 /*
2796 * Find the end of the list.
2797 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002798 match = compl_first_match;
2799 /* there's always an entry for the compl_orig_text, it doesn't count. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00002800 while (match->cp_next != NULL && match->cp_next != compl_first_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002802 match = match->cp_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 ++count;
2804 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00002805 match->cp_next = compl_first_match;
2806 compl_first_match->cp_prev = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 }
2808 return count;
2809}
2810
Bram Moolenaara94bc432006-03-10 21:42:59 +00002811/*
Bram Moolenaarc0200422016-04-20 12:02:02 +02002812 * Set variables that store noselect and noinsert behavior from the
2813 * 'completeopt' value.
2814 */
2815 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02002816completeopt_was_set(void)
Bram Moolenaarc0200422016-04-20 12:02:02 +02002817{
2818 compl_no_insert = FALSE;
2819 compl_no_select = FALSE;
2820 if (strstr((char *)p_cot, "noselect") != NULL)
2821 compl_no_select = TRUE;
2822 if (strstr((char *)p_cot, "noinsert") != NULL)
2823 compl_no_insert = TRUE;
2824}
2825
2826/*
Bram Moolenaara94bc432006-03-10 21:42:59 +00002827 * Start completion for the complete() function.
2828 * "startcol" is where the matched text starts (1 is first column).
2829 * "list" is the list of matches.
2830 */
2831 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002832set_completion(colnr_T startcol, list_T *list)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002833{
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01002834 int save_w_wrow = curwin->w_wrow;
Bram Moolenaarcb036422017-03-01 12:29:10 +01002835 int save_w_leftcol = curwin->w_leftcol;
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01002836
Bram Moolenaara94bc432006-03-10 21:42:59 +00002837 /* If already doing completions stop it. */
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01002838 if (ctrl_x_mode != CTRL_X_NORMAL)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002839 ins_compl_prep(' ');
2840 ins_compl_clear();
Bram Moolenaaraed6d0b2017-01-27 21:48:54 +01002841 ins_compl_free();
Bram Moolenaara94bc432006-03-10 21:42:59 +00002842
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01002843 compl_direction = FORWARD;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002844 if (startcol > curwin->w_cursor.col)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002845 startcol = curwin->w_cursor.col;
2846 compl_col = startcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002847 compl_length = (int)curwin->w_cursor.col - (int)startcol;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002848 /* compl_pattern doesn't need to be set */
2849 compl_orig_text = vim_strnsave(ml_get_curline() + compl_col, compl_length);
2850 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
Bram Moolenaare8c3a142006-08-29 14:30:35 +00002851 -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002852 return;
2853
Bram Moolenaare4214502015-03-05 18:08:43 +01002854 ctrl_x_mode = CTRL_X_EVAL;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002855
2856 ins_compl_add_list(list);
2857 compl_matches = ins_compl_make_cyclic();
2858 compl_started = TRUE;
2859 compl_used_match = TRUE;
Bram Moolenaar5495cc92006-08-16 14:23:04 +00002860 compl_cont_status = 0;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002861
2862 compl_curr_match = compl_first_match;
Bram Moolenaar8e42ae52016-04-20 16:39:19 +02002863 if (compl_no_insert || compl_no_select)
2864 {
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01002865 ins_complete(K_DOWN, FALSE);
Bram Moolenaar8e42ae52016-04-20 16:39:19 +02002866 if (compl_no_select)
2867 /* Down/Up has no real effect. */
2868 ins_complete(K_UP, FALSE);
2869 }
Bram Moolenaarb6be1e22015-07-10 18:18:40 +02002870 else
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01002871 ins_complete(Ctrl_N, FALSE);
Bram Moolenaar32b808a2016-07-09 21:57:20 +02002872 compl_enter_selects = compl_no_insert;
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01002873
2874 /* Lazily show the popup menu, unless we got interrupted. */
2875 if (!compl_interrupted)
Bram Moolenaarcb036422017-03-01 12:29:10 +01002876 show_pum(save_w_wrow, save_w_leftcol);
Bram Moolenaara94bc432006-03-10 21:42:59 +00002877 out_flush();
2878}
2879
2880
Bram Moolenaar9372a112005-12-06 19:59:18 +00002881/* "compl_match_array" points the currently displayed list of entries in the
2882 * popup menu. It is NULL when there is no popup menu. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002883static pumitem_T *compl_match_array = NULL;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002884static int compl_match_arraysize;
2885
2886/*
2887 * Update the screen and when there is any scrolling remove the popup menu.
2888 */
2889 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002890ins_compl_upd_pum(void)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002891{
2892 int h;
2893
2894 if (compl_match_array != NULL)
2895 {
2896 h = curwin->w_cline_height;
2897 update_screen(0);
2898 if (h != curwin->w_cline_height)
2899 ins_compl_del_pum();
2900 }
2901}
2902
2903/*
2904 * Remove any popup menu.
2905 */
2906 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002907ins_compl_del_pum(void)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002908{
2909 if (compl_match_array != NULL)
2910 {
2911 pum_undisplay();
Bram Moolenaard23a8232018-02-10 18:45:26 +01002912 VIM_CLEAR(compl_match_array);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002913 }
2914}
2915
2916/*
2917 * Return TRUE if the popup menu should be displayed.
2918 */
2919 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002920pum_wanted(void)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002921{
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002922 /* 'completeopt' must contain "menu" or "menuone" */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002923 if (vim_strchr(p_cot, 'm') == NULL)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002924 return FALSE;
2925
2926 /* The display looks bad on a B&W display. */
2927 if (t_colors < 8
2928#ifdef FEAT_GUI
2929 && !gui.in_use
2930#endif
2931 )
2932 return FALSE;
Bram Moolenaara6557602006-02-04 22:43:20 +00002933 return TRUE;
2934}
2935
2936/*
2937 * Return TRUE if there are two or more matches to be shown in the popup menu.
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002938 * One if 'completopt' contains "menuone".
Bram Moolenaara6557602006-02-04 22:43:20 +00002939 */
2940 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002941pum_enough_matches(void)
Bram Moolenaara6557602006-02-04 22:43:20 +00002942{
2943 compl_T *compl;
2944 int i;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002945
2946 /* Don't display the popup menu if there are no matches or there is only
2947 * one (ignoring the original text). */
2948 compl = compl_first_match;
2949 i = 0;
2950 do
2951 {
2952 if (compl == NULL
2953 || ((compl->cp_flags & ORIGINAL_TEXT) == 0 && ++i == 2))
2954 break;
2955 compl = compl->cp_next;
2956 } while (compl != compl_first_match);
2957
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002958 if (strstr((char *)p_cot, "menuone") != NULL)
2959 return (i >= 1);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002960 return (i >= 2);
2961}
2962
2963/*
2964 * Show the popup menu for the list of matches.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002965 * Also adjusts "compl_shown_match" to an entry that is actually displayed.
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002966 */
Bram Moolenaar280f1262006-01-30 00:14:18 +00002967 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002968ins_compl_show_pum(void)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002969{
2970 compl_T *compl;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002971 compl_T *shown_compl = NULL;
2972 int did_find_shown_match = FALSE;
2973 int shown_match_ok = FALSE;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002974 int i;
2975 int cur = -1;
2976 colnr_T col;
Bram Moolenaara6557602006-02-04 22:43:20 +00002977 int lead_len = 0;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002978
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002979 if (!pum_wanted() || !pum_enough_matches())
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002980 return;
2981
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002982#if defined(FEAT_EVAL)
2983 /* Dirty hard-coded hack: remove any matchparen highlighting. */
2984 do_cmdline_cmd((char_u *)"if exists('g:loaded_matchparen')|3match none|endif");
2985#endif
2986
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002987 /* Update the screen before drawing the popup menu over it. */
2988 update_screen(0);
2989
2990 if (compl_match_array == NULL)
2991 {
2992 /* Need to build the popup menu list. */
2993 compl_match_arraysize = 0;
2994 compl = compl_first_match;
Bram Moolenaara6557602006-02-04 22:43:20 +00002995 if (compl_leader != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002996 lead_len = (int)STRLEN(compl_leader);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002997 do
2998 {
Bram Moolenaara6557602006-02-04 22:43:20 +00002999 if ((compl->cp_flags & ORIGINAL_TEXT) == 0
3000 && (compl_leader == NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003001 || ins_compl_equal(compl, compl_leader, lead_len)))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003002 ++compl_match_arraysize;
3003 compl = compl->cp_next;
3004 } while (compl != NULL && compl != compl_first_match);
Bram Moolenaara6557602006-02-04 22:43:20 +00003005 if (compl_match_arraysize == 0)
3006 return;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003007 compl_match_array = (pumitem_T *)alloc_clear(
3008 (unsigned)(sizeof(pumitem_T)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003009 * compl_match_arraysize));
3010 if (compl_match_array != NULL)
3011 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00003012 /* If the current match is the original text don't find the first
3013 * match after it, don't highlight anything. */
3014 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
3015 shown_match_ok = TRUE;
3016
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003017 i = 0;
3018 compl = compl_first_match;
3019 do
3020 {
Bram Moolenaara6557602006-02-04 22:43:20 +00003021 if ((compl->cp_flags & ORIGINAL_TEXT) == 0
3022 && (compl_leader == NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00003023 || ins_compl_equal(compl, compl_leader, lead_len)))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003024 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003025 if (!shown_match_ok)
3026 {
3027 if (compl == compl_shown_match || did_find_shown_match)
3028 {
3029 /* This item is the shown match or this is the
3030 * first displayed item after the shown match. */
3031 compl_shown_match = compl;
3032 did_find_shown_match = TRUE;
3033 shown_match_ok = TRUE;
3034 }
3035 else
3036 /* Remember this displayed match for when the
3037 * shown match is just below it. */
3038 shown_compl = compl;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003039 cur = i;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003040 }
Bram Moolenaar39f05632006-03-19 22:15:26 +00003041
3042 if (compl->cp_text[CPT_ABBR] != NULL)
3043 compl_match_array[i].pum_text =
3044 compl->cp_text[CPT_ABBR];
3045 else
3046 compl_match_array[i].pum_text = compl->cp_str;
3047 compl_match_array[i].pum_kind = compl->cp_text[CPT_KIND];
3048 compl_match_array[i].pum_info = compl->cp_text[CPT_INFO];
3049 if (compl->cp_text[CPT_MENU] != NULL)
3050 compl_match_array[i++].pum_extra =
3051 compl->cp_text[CPT_MENU];
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003052 else
3053 compl_match_array[i++].pum_extra = compl->cp_fname;
3054 }
3055
3056 if (compl == compl_shown_match)
3057 {
3058 did_find_shown_match = TRUE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003059
3060 /* When the original text is the shown match don't set
3061 * compl_shown_match. */
3062 if (compl->cp_flags & ORIGINAL_TEXT)
3063 shown_match_ok = TRUE;
3064
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003065 if (!shown_match_ok && shown_compl != NULL)
3066 {
3067 /* The shown match isn't displayed, set it to the
3068 * previously displayed match. */
3069 compl_shown_match = shown_compl;
3070 shown_match_ok = TRUE;
3071 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003072 }
3073 compl = compl->cp_next;
3074 } while (compl != NULL && compl != compl_first_match);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003075
3076 if (!shown_match_ok) /* no displayed match at all */
3077 cur = -1;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003078 }
3079 }
3080 else
3081 {
3082 /* popup menu already exists, only need to find the current item.*/
Bram Moolenaara6557602006-02-04 22:43:20 +00003083 for (i = 0; i < compl_match_arraysize; ++i)
Bram Moolenaar39f05632006-03-19 22:15:26 +00003084 if (compl_match_array[i].pum_text == compl_shown_match->cp_str
3085 || compl_match_array[i].pum_text
3086 == compl_shown_match->cp_text[CPT_ABBR])
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00003087 {
3088 cur = i;
Bram Moolenaara6557602006-02-04 22:43:20 +00003089 break;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00003090 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003091 }
3092
3093 if (compl_match_array != NULL)
3094 {
Bram Moolenaar478c46e2015-03-31 19:18:00 +02003095 /* In Replace mode when a $ is displayed at the end of the line only
3096 * part of the screen would be updated. We do need to redraw here. */
3097 dollar_vcol = -1;
3098
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003099 /* Compute the screen column of the start of the completed text.
3100 * Use the cursor to get all wrapping and other settings right. */
3101 col = curwin->w_cursor.col;
3102 curwin->w_cursor.col = compl_col;
Bram Moolenaard289f132006-03-11 21:30:53 +00003103 pum_display(compl_match_array, compl_match_arraysize, cur);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003104 curwin->w_cursor.col = col;
3105 }
3106}
3107
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108#define DICT_FIRST (1) /* use just first element in "dict" */
3109#define DICT_EXACT (2) /* "dict" is the exact name of a file */
Bram Moolenaar280f1262006-01-30 00:14:18 +00003110
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111/*
Bram Moolenaar0b238792006-03-02 22:49:12 +00003112 * Add any identifiers that match the given pattern in the list of dictionary
3113 * files "dict_start" to the list of completions.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 */
3115 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003116ins_compl_dictionaries(
3117 char_u *dict_start,
3118 char_u *pat,
3119 int flags, /* DICT_FIRST and/or DICT_EXACT */
3120 int thesaurus) /* Thesaurus completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121{
Bram Moolenaar0b238792006-03-02 22:49:12 +00003122 char_u *dict = dict_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 char_u *ptr;
3124 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 regmatch_T regmatch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 char_u **files;
3127 int count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 int save_p_scs;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003129 int dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130
Bram Moolenaar0b238792006-03-02 22:49:12 +00003131 if (*dict == NUL)
3132 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003133#ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003134 /* When 'dictionary' is empty and spell checking is enabled use
3135 * "spell". */
3136 if (!thesaurus && curwin->w_p_spell)
3137 dict = (char_u *)"spell";
3138 else
3139#endif
3140 return;
3141 }
3142
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 buf = alloc(LSIZE);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003144 if (buf == NULL)
3145 return;
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00003146 regmatch.regprog = NULL; /* so that we can goto theend */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003147
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 /* If 'infercase' is set, don't use 'smartcase' here */
3149 save_p_scs = p_scs;
3150 if (curbuf->b_p_inf)
3151 p_scs = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003152
3153 /* When invoked to match whole lines for CTRL-X CTRL-L adjust the pattern
3154 * to only match at the start of a line. Otherwise just match the
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003155 * pattern. Also need to double backslashes. */
Bram Moolenaare4214502015-03-05 18:08:43 +01003156 if (CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003157 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003158 char_u *pat_esc = vim_strsave_escaped(pat, (char_u *)"\\");
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003159 size_t len;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003160
3161 if (pat_esc == NULL)
Bram Moolenaar6519ac82007-05-06 13:45:52 +00003162 goto theend;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003163 len = STRLEN(pat_esc) + 10;
3164 ptr = alloc((unsigned)len);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003165 if (ptr == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003166 {
3167 vim_free(pat_esc);
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00003168 goto theend;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003169 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003170 vim_snprintf((char *)ptr, len, "^\\s*\\zs\\V%s", pat_esc);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003171 regmatch.regprog = vim_regcomp(ptr, RE_MAGIC);
3172 vim_free(pat_esc);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003173 vim_free(ptr);
3174 }
3175 else
Bram Moolenaar0b238792006-03-02 22:49:12 +00003176 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003177 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003178 if (regmatch.regprog == NULL)
3179 goto theend;
3180 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003181
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 /* ignore case depends on 'ignorecase', 'smartcase' and "pat" */
3183 regmatch.rm_ic = ignorecase(pat);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003184 while (*dict != NUL && !got_int && !compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 {
3186 /* copy one dictionary file name into buf */
3187 if (flags == DICT_EXACT)
3188 {
3189 count = 1;
3190 files = &dict;
3191 }
3192 else
3193 {
3194 /* Expand wildcards in the dictionary name, but do not allow
3195 * backticks (for security, the 'dict' option may have been set in
3196 * a modeline). */
3197 copy_option_part(&dict, buf, LSIZE, ",");
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003198# ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003199 if (!thesaurus && STRCMP(buf, "spell") == 0)
3200 count = -1;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003201 else
3202# endif
3203 if (vim_strchr(buf, '`') != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 || expand_wildcards(1, &buf, &count, &files,
3205 EW_FILE|EW_SILENT) != OK)
3206 count = 0;
3207 }
3208
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003209# ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003210 if (count == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 {
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003212 /* Complete from active spelling. Skip "\<" in the pattern, we
3213 * don't use it as a RE. */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003214 if (pat[0] == '\\' && pat[1] == '<')
3215 ptr = pat + 2;
3216 else
3217 ptr = pat;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003218 spell_dump_compl(ptr, regmatch.rm_ic, &dir, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 }
Bram Moolenaar0b238792006-03-02 22:49:12 +00003220 else
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003221# endif
Bram Moolenaard7fd0c42006-08-22 17:55:55 +00003222 if (count > 0) /* avoid warning for using "files" uninit */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003223 {
3224 ins_compl_files(count, files, thesaurus, flags,
3225 &regmatch, buf, &dir);
3226 if (flags != DICT_EXACT)
3227 FreeWild(count, files);
3228 }
3229 if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 break;
3231 }
Bram Moolenaar0b238792006-03-02 22:49:12 +00003232
3233theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 p_scs = save_p_scs;
Bram Moolenaar473de612013-06-08 18:19:48 +02003235 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 vim_free(buf);
3237}
3238
Bram Moolenaar0b238792006-03-02 22:49:12 +00003239 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003240ins_compl_files(
3241 int count,
3242 char_u **files,
3243 int thesaurus,
3244 int flags,
3245 regmatch_T *regmatch,
3246 char_u *buf,
3247 int *dir)
Bram Moolenaar0b238792006-03-02 22:49:12 +00003248{
3249 char_u *ptr;
3250 int i;
3251 FILE *fp;
3252 int add_r;
3253
3254 for (i = 0; i < count && !got_int && !compl_interrupted; i++)
3255 {
3256 fp = mch_fopen((char *)files[i], "r"); /* open dictionary file */
3257 if (flags != DICT_EXACT)
3258 {
3259 vim_snprintf((char *)IObuff, IOSIZE,
3260 _("Scanning dictionary: %s"), (char *)files[i]);
Bram Moolenaar8820b482017-03-16 17:23:31 +01003261 (void)msg_trunc_attr(IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar0b238792006-03-02 22:49:12 +00003262 }
3263
3264 if (fp != NULL)
3265 {
3266 /*
3267 * Read dictionary file line by line.
3268 * Check each line for a match.
3269 */
3270 while (!got_int && !compl_interrupted
3271 && !vim_fgets(buf, LSIZE, fp))
3272 {
3273 ptr = buf;
3274 while (vim_regexec(regmatch, buf, (colnr_T)(ptr - buf)))
3275 {
3276 ptr = regmatch->startp[0];
Bram Moolenaare4214502015-03-05 18:08:43 +01003277 if (CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar0b238792006-03-02 22:49:12 +00003278 ptr = find_line_end(ptr);
3279 else
3280 ptr = find_word_end(ptr);
3281 add_r = ins_compl_add_infercase(regmatch->startp[0],
3282 (int)(ptr - regmatch->startp[0]),
Bram Moolenaare8c3a142006-08-29 14:30:35 +00003283 p_ic, files[i], *dir, 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003284 if (thesaurus)
3285 {
3286 char_u *wstart;
3287
3288 /*
3289 * Add the other matches on the line
3290 */
Bram Moolenaara2993e12007-08-12 14:38:46 +00003291 ptr = buf;
Bram Moolenaar0b238792006-03-02 22:49:12 +00003292 while (!got_int)
3293 {
3294 /* Find start of the next word. Skip white
3295 * space and punctuation. */
3296 ptr = find_word_start(ptr);
3297 if (*ptr == NUL || *ptr == NL)
3298 break;
3299 wstart = ptr;
3300
Bram Moolenaara2993e12007-08-12 14:38:46 +00003301 /* Find end of the word. */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003302#ifdef FEAT_MBYTE
3303 if (has_mbyte)
3304 /* Japanese words may have characters in
3305 * different classes, only separate words
3306 * with single-byte non-word characters. */
3307 while (*ptr != NUL)
3308 {
3309 int l = (*mb_ptr2len)(ptr);
3310
3311 if (l < 2 && !vim_iswordc(*ptr))
3312 break;
3313 ptr += l;
3314 }
3315 else
3316#endif
3317 ptr = find_word_end(ptr);
Bram Moolenaara2993e12007-08-12 14:38:46 +00003318
3319 /* Add the word. Skip the regexp match. */
3320 if (wstart != regmatch->startp[0])
3321 add_r = ins_compl_add_infercase(wstart,
3322 (int)(ptr - wstart),
3323 p_ic, files[i], *dir, 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003324 }
3325 }
3326 if (add_r == OK)
3327 /* if dir was BACKWARD then honor it just once */
3328 *dir = FORWARD;
3329 else if (add_r == FAIL)
3330 break;
3331 /* avoid expensive call to vim_regexec() when at end
3332 * of line */
3333 if (*ptr == '\n' || got_int)
3334 break;
3335 }
3336 line_breakcheck();
Bram Moolenaar472e8592016-10-15 17:06:47 +02003337 ins_compl_check_keys(50, FALSE);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003338 }
3339 fclose(fp);
3340 }
3341 }
3342}
3343
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344/*
3345 * Find the start of the next word.
3346 * Returns a pointer to the first char of the word. Also stops at a NUL.
3347 */
3348 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003349find_word_start(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350{
3351#ifdef FEAT_MBYTE
3352 if (has_mbyte)
3353 while (*ptr != NUL && *ptr != '\n' && mb_get_class(ptr) <= 1)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003354 ptr += (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 else
3356#endif
3357 while (*ptr != NUL && *ptr != '\n' && !vim_iswordc(*ptr))
3358 ++ptr;
3359 return ptr;
3360}
3361
3362/*
3363 * Find the end of the word. Assumes it starts inside a word.
3364 * Returns a pointer to just after the word.
3365 */
3366 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003367find_word_end(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368{
3369#ifdef FEAT_MBYTE
3370 int start_class;
3371
3372 if (has_mbyte)
3373 {
3374 start_class = mb_get_class(ptr);
3375 if (start_class > 1)
3376 while (*ptr != NUL)
3377 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003378 ptr += (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 if (mb_get_class(ptr) != start_class)
3380 break;
3381 }
3382 }
3383 else
3384#endif
3385 while (vim_iswordc(*ptr))
3386 ++ptr;
3387 return ptr;
3388}
3389
3390/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003391 * Find the end of the line, omitting CR and NL at the end.
3392 * Returns a pointer to just after the line.
3393 */
3394 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01003395find_line_end(char_u *ptr)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003396{
3397 char_u *s;
3398
3399 s = ptr + STRLEN(ptr);
3400 while (s > ptr && (s[-1] == CAR || s[-1] == NL))
3401 --s;
3402 return s;
3403}
3404
3405/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 * Free the list of completions
3407 */
3408 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003409ins_compl_free(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410{
Bram Moolenaar572cb562005-08-05 21:35:02 +00003411 compl_T *match;
Bram Moolenaar39f05632006-03-19 22:15:26 +00003412 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413
Bram Moolenaard23a8232018-02-10 18:45:26 +01003414 VIM_CLEAR(compl_pattern);
3415 VIM_CLEAR(compl_leader);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003417 if (compl_first_match == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 return;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003419
3420 ins_compl_del_pum();
3421 pum_clear();
3422
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003423 compl_curr_match = compl_first_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 do
3425 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003426 match = compl_curr_match;
Bram Moolenaar572cb562005-08-05 21:35:02 +00003427 compl_curr_match = compl_curr_match->cp_next;
3428 vim_free(match->cp_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 /* several entries may use the same fname, free it just once. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00003430 if (match->cp_flags & FREE_FNAME)
3431 vim_free(match->cp_fname);
Bram Moolenaar39f05632006-03-19 22:15:26 +00003432 for (i = 0; i < CPT_COUNT; ++i)
3433 vim_free(match->cp_text[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 vim_free(match);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003435 } while (compl_curr_match != NULL && compl_curr_match != compl_first_match);
3436 compl_first_match = compl_curr_match = NULL;
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00003437 compl_shown_match = NULL;
Bram Moolenaar4475b622017-05-01 20:46:52 +02003438 compl_old_match = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439}
3440
3441 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003442ins_compl_clear(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003444 compl_cont_status = 0;
3445 compl_started = FALSE;
3446 compl_matches = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003447 VIM_CLEAR(compl_pattern);
3448 VIM_CLEAR(compl_leader);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 edit_submode_extra = NULL;
Bram Moolenaard23a8232018-02-10 18:45:26 +01003450 VIM_CLEAR(compl_orig_text);
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003451 compl_enter_selects = FALSE;
Bram Moolenaar42a45122015-07-10 17:56:23 +02003452 /* clear v:completed_item */
Bram Moolenaara338adc2018-01-31 20:51:47 +01003453 set_vim_var_dict(VV_COMPLETED_ITEM, dict_alloc_lock(VAR_FIXED));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454}
3455
3456/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003457 * Return TRUE when Insert completion is active.
3458 */
3459 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003460ins_compl_active(void)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003461{
3462 return compl_started;
3463}
3464
3465/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003466 * Delete one character before the cursor and show the subset of the matches
3467 * that match the word that is now before the cursor.
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003468 * Returns the character to be used, NUL if the work is done and another char
3469 * to be got from the user.
Bram Moolenaara6557602006-02-04 22:43:20 +00003470 */
3471 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003472ins_compl_bs(void)
Bram Moolenaara6557602006-02-04 22:43:20 +00003473{
3474 char_u *line;
3475 char_u *p;
3476
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003477 line = ml_get_curline();
3478 p = line + curwin->w_cursor.col;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003479 MB_PTR_BACK(line, p);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003480
Bram Moolenaar711d5b52007-10-19 18:40:51 +00003481 /* Stop completion when the whole word was deleted. For Omni completion
Bram Moolenaar190b04c2017-02-09 17:37:03 +01003482 * allow the word to be deleted, we won't match everything.
3483 * Respect the 'backspace' option. */
Bram Moolenaar711d5b52007-10-19 18:40:51 +00003484 if ((int)(p - line) - (int)compl_col < 0
3485 || ((int)(p - line) - (int)compl_col == 0
Bram Moolenaar190b04c2017-02-09 17:37:03 +01003486 && ctrl_x_mode != CTRL_X_OMNI) || ctrl_x_mode == CTRL_X_EVAL
3487 || (!can_bs(BS_START) && (int)(p - line) - (int)compl_col
3488 - compl_length < 0))
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003489 return K_BS;
3490
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003491 /* Deleted more than what was used to find matches or didn't finish
3492 * finding all matches: need to look for matches all over again. */
3493 if (curwin->w_cursor.col <= compl_col + compl_length
Bram Moolenaar82139082011-09-14 16:52:09 +02003494 || ins_compl_need_restart())
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003495 ins_compl_restart();
Bram Moolenaara6557602006-02-04 22:43:20 +00003496
Bram Moolenaara6557602006-02-04 22:43:20 +00003497 vim_free(compl_leader);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003498 compl_leader = vim_strnsave(line + compl_col, (int)(p - line) - compl_col);
Bram Moolenaara6557602006-02-04 22:43:20 +00003499 if (compl_leader != NULL)
3500 {
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003501 ins_compl_new_leader();
Bram Moolenaar3978e082013-03-07 19:38:54 +01003502 if (compl_shown_match != NULL)
3503 /* Make sure current match is not a hidden item. */
3504 compl_curr_match = compl_shown_match;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003505 return NUL;
3506 }
3507 return K_BS;
3508}
Bram Moolenaara6557602006-02-04 22:43:20 +00003509
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003510/*
Bram Moolenaar82139082011-09-14 16:52:09 +02003511 * Return TRUE when we need to find matches again, ins_compl_restart() is to
3512 * be called.
3513 */
3514 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003515ins_compl_need_restart(void)
Bram Moolenaar82139082011-09-14 16:52:09 +02003516{
3517 /* Return TRUE if we didn't complete finding matches or when the
3518 * 'completefunc' returned "always" in the "refresh" dictionary item. */
3519 return compl_was_interrupted
3520 || ((ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
3521 && compl_opt_refresh_always);
3522}
3523
3524/*
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003525 * Called after changing "compl_leader".
3526 * Show the popup menu with a different set of matches.
3527 * May also search for matches again if the previous search was interrupted.
3528 */
3529 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003530ins_compl_new_leader(void)
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003531{
3532 ins_compl_del_pum();
3533 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003534 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003535 compl_used_match = FALSE;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003536
3537 if (compl_started)
3538 ins_compl_set_original_text(compl_leader);
3539 else
3540 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003541#ifdef FEAT_SPELL
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003542 spell_bad_len = 0; /* need to redetect bad word */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003543#endif
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003544 /*
3545 * Matches were cleared, need to search for them now. First display
3546 * the changed text before the cursor. Set "compl_restarting" to
3547 * avoid that the first match is inserted.
3548 */
3549 update_screen(0);
3550#ifdef FEAT_GUI
3551 if (gui.in_use)
3552 {
3553 /* Show the cursor after the match, not after the redrawn text. */
3554 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01003555 out_flush_cursor(FALSE, FALSE);
Bram Moolenaara6557602006-02-04 22:43:20 +00003556 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003557#endif
3558 compl_restarting = TRUE;
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01003559 if (ins_complete(Ctrl_N, TRUE) == FAIL)
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003560 compl_cont_status = 0;
3561 compl_restarting = FALSE;
3562 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003563
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003564 compl_enter_selects = !compl_used_match;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003565
3566 /* Show the popup menu with a different set of matches. */
3567 ins_compl_show_pum();
Bram Moolenaar7073cc82006-08-29 16:33:06 +00003568
3569 /* Don't let Enter select the original text when there is no popup menu. */
3570 if (compl_match_array == NULL)
3571 compl_enter_selects = FALSE;
Bram Moolenaara6557602006-02-04 22:43:20 +00003572}
3573
3574/*
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003575 * Return the length of the completion, from the completion start column to
3576 * the cursor column. Making sure it never goes below zero.
3577 */
3578 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003579ins_compl_len(void)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003580{
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003581 int off = (int)curwin->w_cursor.col - (int)compl_col;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003582
3583 if (off < 0)
3584 return 0;
3585 return off;
3586}
3587
3588/*
Bram Moolenaara6557602006-02-04 22:43:20 +00003589 * Append one character to the match leader. May reduce the number of
3590 * matches.
3591 */
3592 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003593ins_compl_addleader(int c)
Bram Moolenaara6557602006-02-04 22:43:20 +00003594{
3595#ifdef FEAT_MBYTE
3596 int cc;
Bram Moolenaard56a79d2017-02-19 15:26:18 +01003597#endif
Bram Moolenaara6557602006-02-04 22:43:20 +00003598
Bram Moolenaard56a79d2017-02-19 15:26:18 +01003599 if (stop_arrow() == FAIL)
3600 return;
3601#ifdef FEAT_MBYTE
Bram Moolenaara6557602006-02-04 22:43:20 +00003602 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
3603 {
3604 char_u buf[MB_MAXBYTES + 1];
3605
3606 (*mb_char2bytes)(c, buf);
3607 buf[cc] = NUL;
3608 ins_char_bytes(buf, cc);
Bram Moolenaar22189a42012-06-20 22:56:02 +02003609 if (compl_opt_refresh_always)
3610 AppendToRedobuff(buf);
Bram Moolenaara6557602006-02-04 22:43:20 +00003611 }
3612 else
3613#endif
Bram Moolenaar5e1a0a92012-06-20 14:26:35 +02003614 {
Bram Moolenaara6557602006-02-04 22:43:20 +00003615 ins_char(c);
Bram Moolenaar22189a42012-06-20 22:56:02 +02003616 if (compl_opt_refresh_always)
3617 AppendCharToRedobuff(c);
Bram Moolenaar5e1a0a92012-06-20 14:26:35 +02003618 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003619
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003620 /* If we didn't complete finding matches we must search again. */
Bram Moolenaar82139082011-09-14 16:52:09 +02003621 if (ins_compl_need_restart())
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003622 ins_compl_restart();
3623
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003624 /* When 'always' is set, don't reset compl_leader. While completing,
Bram Moolenaar22189a42012-06-20 22:56:02 +02003625 * cursor doesn't point original position, changing compl_leader would
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003626 * break redo. */
3627 if (!compl_opt_refresh_always)
3628 {
3629 vim_free(compl_leader);
3630 compl_leader = vim_strnsave(ml_get_curline() + compl_col,
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003631 (int)(curwin->w_cursor.col - compl_col));
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003632 if (compl_leader != NULL)
3633 ins_compl_new_leader();
3634 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003635}
3636
3637/*
3638 * Setup for finding completions again without leaving CTRL-X mode. Used when
3639 * BS or a key was typed while still searching for matches.
3640 */
3641 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003642ins_compl_restart(void)
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003643{
3644 ins_compl_free();
3645 compl_started = FALSE;
3646 compl_matches = 0;
3647 compl_cont_status = 0;
3648 compl_cont_mode = 0;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003649}
3650
3651/*
3652 * Set the first match, the original text.
3653 */
3654 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003655ins_compl_set_original_text(char_u *str)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003656{
3657 char_u *p;
3658
Bram Moolenaare87edf32018-04-17 22:14:32 +02003659 /* Replace the original text entry.
3660 * The ORIGINAL_TEXT flag is either at the first item or might possibly be
3661 * at the last item for backward completion */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003662 if (compl_first_match->cp_flags & ORIGINAL_TEXT) /* safety check */
3663 {
3664 p = vim_strsave(str);
3665 if (p != NULL)
3666 {
3667 vim_free(compl_first_match->cp_str);
3668 compl_first_match->cp_str = p;
3669 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003670 }
Bram Moolenaare87edf32018-04-17 22:14:32 +02003671 else if (compl_first_match->cp_prev != NULL
3672 && (compl_first_match->cp_prev->cp_flags & ORIGINAL_TEXT))
3673 {
3674 p = vim_strsave(str);
3675 if (p != NULL)
3676 {
3677 vim_free(compl_first_match->cp_prev->cp_str);
3678 compl_first_match->cp_prev->cp_str = p;
3679 }
3680 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003681}
3682
3683/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003684 * Append one character to the match leader. May reduce the number of
3685 * matches.
3686 */
3687 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01003688ins_compl_addfrommatch(void)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003689{
3690 char_u *p;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003691 int len = (int)curwin->w_cursor.col - (int)compl_col;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003692 int c;
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003693 compl_T *cp;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003694
3695 p = compl_shown_match->cp_str;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003696 if ((int)STRLEN(p) <= len) /* the match is too short */
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003697 {
3698 /* When still at the original match use the first entry that matches
3699 * the leader. */
3700 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
3701 {
3702 p = NULL;
3703 for (cp = compl_shown_match->cp_next; cp != NULL
3704 && cp != compl_first_match; cp = cp->cp_next)
3705 {
Bram Moolenaar132283f2006-10-03 13:22:23 +00003706 if (compl_leader == NULL
3707 || ins_compl_equal(cp, compl_leader,
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003708 (int)STRLEN(compl_leader)))
3709 {
3710 p = cp->cp_str;
3711 break;
3712 }
3713 }
3714 if (p == NULL || (int)STRLEN(p) <= len)
3715 return;
3716 }
3717 else
3718 return;
3719 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003720 p += len;
Bram Moolenaare659c952011-05-19 17:25:41 +02003721 c = PTR2CHAR(p);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003722 ins_compl_addleader(c);
3723}
3724
3725/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 * Prepare for Insert mode completion, or stop it.
Bram Moolenaar572cb562005-08-05 21:35:02 +00003727 * Called just after typing a character in Insert mode.
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003728 * Returns TRUE when the character is not to be inserted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003730 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01003731ins_compl_prep(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732{
3733 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 int want_cindent;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003735 int retval = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736
3737 /* Forget any previous 'special' messages if this is actually
3738 * a ^X mode key - bar ^R, in which case we wait to see what it gives us.
3739 */
3740 if (c != Ctrl_R && vim_is_ctrl_x_key(c))
3741 edit_submode_extra = NULL;
3742
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00003743 /* Ignore end of Select mode mapping and mouse scroll buttons. */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003744 if (c == K_SELECT || c == K_MOUSEDOWN || c == K_MOUSEUP
3745 || c == K_MOUSELEFT || c == K_MOUSERIGHT)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003746 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003748 /* Set "compl_get_longest" when finding the first matches. */
3749 if (ctrl_x_mode == CTRL_X_NOT_DEFINED_YET
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01003750 || (ctrl_x_mode == CTRL_X_NORMAL && !compl_started))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003751 {
Bram Moolenaarb6be1e22015-07-10 18:18:40 +02003752 compl_get_longest = (strstr((char *)p_cot, "longest") != NULL);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003753 compl_used_match = TRUE;
Bram Moolenaarb6be1e22015-07-10 18:18:40 +02003754
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003755 }
3756
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 if (ctrl_x_mode == CTRL_X_NOT_DEFINED_YET)
3758 {
3759 /*
3760 * We have just typed CTRL-X and aren't quite sure which CTRL-X mode
3761 * it will be yet. Now we decide.
3762 */
3763 switch (c)
3764 {
3765 case Ctrl_E:
3766 case Ctrl_Y:
3767 ctrl_x_mode = CTRL_X_SCROLL;
3768 if (!(State & REPLACE_FLAG))
3769 edit_submode = (char_u *)_(" (insert) Scroll (^E/^Y)");
3770 else
3771 edit_submode = (char_u *)_(" (replace) Scroll (^E/^Y)");
3772 edit_submode_pre = NULL;
3773 showmode();
3774 break;
3775 case Ctrl_L:
3776 ctrl_x_mode = CTRL_X_WHOLE_LINE;
3777 break;
3778 case Ctrl_F:
3779 ctrl_x_mode = CTRL_X_FILES;
3780 break;
3781 case Ctrl_K:
3782 ctrl_x_mode = CTRL_X_DICTIONARY;
3783 break;
3784 case Ctrl_R:
3785 /* Simply allow ^R to happen without affecting ^X mode */
3786 break;
3787 case Ctrl_T:
3788 ctrl_x_mode = CTRL_X_THESAURUS;
3789 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003790#ifdef FEAT_COMPL_FUNC
3791 case Ctrl_U:
3792 ctrl_x_mode = CTRL_X_FUNCTION;
3793 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003794 case Ctrl_O:
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003795 ctrl_x_mode = CTRL_X_OMNI;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003796 break;
Bram Moolenaare344bea2005-09-01 20:46:49 +00003797#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00003798 case 's':
3799 case Ctrl_S:
3800 ctrl_x_mode = CTRL_X_SPELL;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003801#ifdef FEAT_SPELL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003802 ++emsg_off; /* Avoid getting the E756 error twice. */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00003803 spell_back_to_badword();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003804 --emsg_off;
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00003805#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00003806 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 case Ctrl_RSB:
3808 ctrl_x_mode = CTRL_X_TAGS;
3809 break;
3810#ifdef FEAT_FIND_ID
3811 case Ctrl_I:
3812 case K_S_TAB:
3813 ctrl_x_mode = CTRL_X_PATH_PATTERNS;
3814 break;
3815 case Ctrl_D:
3816 ctrl_x_mode = CTRL_X_PATH_DEFINES;
3817 break;
3818#endif
3819 case Ctrl_V:
3820 case Ctrl_Q:
3821 ctrl_x_mode = CTRL_X_CMDLINE;
3822 break;
3823 case Ctrl_P:
3824 case Ctrl_N:
3825 /* ^X^P means LOCAL expansion if nothing interrupted (eg we
3826 * just started ^X mode, or there were enough ^X's to cancel
3827 * the previous mode, say ^X^F^X^X^P or ^P^X^X^X^P, see below)
3828 * do normal expansion when interrupting a different mode (say
3829 * ^X^F^X^P or ^P^X^X^P, see below)
3830 * nothing changes if interrupting mode 0, (eg, the flag
3831 * doesn't change when going to ADDING mode -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003832 if (!(compl_cont_status & CONT_INTRPT))
3833 compl_cont_status |= CONT_LOCAL;
3834 else if (compl_cont_mode != 0)
3835 compl_cont_status &= ~CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 /* FALLTHROUGH */
3837 default:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003838 /* If we have typed at least 2 ^X's... for modes != 0, we set
3839 * compl_cont_status = 0 (eg, as if we had just started ^X
3840 * mode).
3841 * For mode 0, we set "compl_cont_mode" to an impossible
3842 * value, in both cases ^X^X can be used to restart the same
3843 * mode (avoiding ADDING mode).
3844 * Undocumented feature: In a mode != 0 ^X^P and ^X^X^P start
3845 * 'complete' and local ^P expansions respectively.
3846 * In mode 0 an extra ^X is needed since ^X^P goes to ADDING
3847 * mode -- Acevedo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 if (c == Ctrl_X)
3849 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003850 if (compl_cont_mode != 0)
3851 compl_cont_status = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003853 compl_cont_mode = CTRL_X_NOT_DEFINED_YET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 }
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01003855 ctrl_x_mode = CTRL_X_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 edit_submode = NULL;
3857 showmode();
3858 break;
3859 }
3860 }
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01003861 else if (ctrl_x_mode != CTRL_X_NORMAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 {
3863 /* We're already in CTRL-X mode, do we stay in it? */
3864 if (!vim_is_ctrl_x_key(c))
3865 {
3866 if (ctrl_x_mode == CTRL_X_SCROLL)
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01003867 ctrl_x_mode = CTRL_X_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 else
3869 ctrl_x_mode = CTRL_X_FINISHED;
3870 edit_submode = NULL;
3871 }
3872 showmode();
3873 }
3874
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003875 if (compl_started || ctrl_x_mode == CTRL_X_FINISHED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 {
3877 /* Show error message from attempted keyword completion (probably
3878 * 'Pattern not found') until another key is hit, then go back to
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003879 * showing what mode we are in. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 showmode();
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01003881 if ((ctrl_x_mode == CTRL_X_NORMAL && c != Ctrl_N && c != Ctrl_P
3882 && c != Ctrl_R && !ins_compl_pum_key(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 || ctrl_x_mode == CTRL_X_FINISHED)
3884 {
3885 /* Get here when we have finished typing a sequence of ^N and
3886 * ^P or other completion characters in CTRL-X mode. Free up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003887 * memory that was used, and make sure we can redo the insert. */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003888 if (compl_curr_match != NULL || compl_leader != NULL || c == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 {
3890 /*
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003891 * If any of the original typed text has been changed, eg when
3892 * ignorecase is set, we must add back-spaces to the redo
3893 * buffer. We add as few as necessary to delete just the part
3894 * of the original text that has changed.
3895 * When using the longest match, edited the match or used
3896 * CTRL-E then don't use the current match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003898 if (compl_curr_match != NULL && compl_used_match && c != Ctrl_E)
3899 ptr = compl_curr_match->cp_str;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003900 else
Bram Moolenaar62951b12011-09-21 18:23:05 +02003901 ptr = NULL;
3902 ins_compl_fixRedoBufForLeader(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 }
3904
3905#ifdef FEAT_CINDENT
3906 want_cindent = (can_cindent && cindent_on());
3907#endif
3908 /*
3909 * When completing whole lines: fix indent for 'cindent'.
3910 * Otherwise, break line if it's too long.
3911 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003912 if (compl_cont_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 {
3914#ifdef FEAT_CINDENT
3915 /* re-indent the current line */
3916 if (want_cindent)
3917 {
3918 do_c_expr_indent();
3919 want_cindent = FALSE; /* don't do it again */
3920 }
3921#endif
3922 }
3923 else
3924 {
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003925 int prev_col = curwin->w_cursor.col;
3926
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 /* put the cursor on the last char, for 'tw' formatting */
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003928 if (prev_col > 0)
3929 dec_cursor();
Bram Moolenaar869e3522016-10-16 15:35:47 +02003930 /* only format when something was inserted */
Bram Moolenaar73fd4982016-12-09 19:36:56 +01003931 if (!arrow_used && !ins_need_undo && c != Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 insertchar(NUL, 0, -1);
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003933 if (prev_col > 0
3934 && ml_get_curline()[curwin->w_cursor.col] != NUL)
3935 inc_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 }
3937
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003938 /* If the popup menu is displayed pressing CTRL-Y means accepting
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003939 * the selection without inserting anything. When
3940 * compl_enter_selects is set the Enter key does the same. */
3941 if ((c == Ctrl_Y || (compl_enter_selects
3942 && (c == CAR || c == K_KENTER || c == NL)))
3943 && pum_visible())
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003944 retval = TRUE;
3945
Bram Moolenaar47247282016-08-02 22:36:02 +02003946 /* CTRL-E means completion is Ended, go back to the typed text.
3947 * but only do this, if the Popup is still visible */
Bram Moolenaarc9fb77c2016-08-09 21:51:40 +02003948 if (c == Ctrl_E)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003949 {
3950 ins_compl_delete();
3951 if (compl_leader != NULL)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003952 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003953 else if (compl_first_match != NULL)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003954 ins_bytes(compl_orig_text + ins_compl_len());
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003955 retval = TRUE;
3956 }
3957
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003958 auto_format(FALSE, TRUE);
3959
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 ins_compl_free();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003961 compl_started = FALSE;
3962 compl_matches = 0;
Bram Moolenaarf1924a92014-07-16 14:42:46 +02003963 if (!shortmess(SHM_COMPLETIONMENU))
3964 msg_clr_cmdline(); /* necessary for "noshowmode" */
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01003965 ctrl_x_mode = CTRL_X_NORMAL;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003966 compl_enter_selects = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 if (edit_submode != NULL)
3968 {
3969 edit_submode = NULL;
3970 showmode();
3971 }
3972
Bram Moolenaar5f1fea22015-09-25 19:12:22 +02003973#ifdef FEAT_CMDWIN
3974 if (c == Ctrl_C && cmdwin_type != 0)
3975 /* Avoid the popup menu remains displayed when leaving the
3976 * command line window. */
3977 update_screen(0);
3978#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979#ifdef FEAT_CINDENT
3980 /*
3981 * Indent now if a key was typed that is in 'cinkeys'.
3982 */
3983 if (want_cindent && in_cinkeys(KEY_COMPLETE, ' ', inindent(0)))
3984 do_c_expr_indent();
3985#endif
Bram Moolenaarcfa3cae2012-07-10 17:14:56 +02003986 /* Trigger the CompleteDone event to give scripts a chance to act
3987 * upon the completion. */
3988 apply_autocmds(EVENT_COMPLETEDONE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 }
3990 }
Bram Moolenaara3914322013-02-13 16:30:21 +01003991 else if (ctrl_x_mode == CTRL_X_LOCAL_MSG)
3992 /* Trigger the CompleteDone event to give scripts a chance to act
3993 * upon the (possibly failed) completion. */
3994 apply_autocmds(EVENT_COMPLETEDONE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995
3996 /* reset continue_* if we left expansion-mode, if we stay they'll be
3997 * (re)set properly in ins_complete() */
3998 if (!vim_is_ctrl_x_key(c))
3999 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004000 compl_cont_status = 0;
4001 compl_cont_mode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004003
4004 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005}
4006
4007/*
Bram Moolenaar62951b12011-09-21 18:23:05 +02004008 * Fix the redo buffer for the completion leader replacing some of the typed
4009 * text. This inserts backspaces and appends the changed text.
4010 * "ptr" is the known leader text or NUL.
4011 */
4012 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004013ins_compl_fixRedoBufForLeader(char_u *ptr_arg)
Bram Moolenaar62951b12011-09-21 18:23:05 +02004014{
4015 int len;
4016 char_u *p;
4017 char_u *ptr = ptr_arg;
4018
4019 if (ptr == NULL)
4020 {
4021 if (compl_leader != NULL)
4022 ptr = compl_leader;
4023 else
4024 return; /* nothing to do */
4025 }
4026 if (compl_orig_text != NULL)
4027 {
4028 p = compl_orig_text;
4029 for (len = 0; p[len] != NUL && p[len] == ptr[len]; ++len)
4030 ;
4031#ifdef FEAT_MBYTE
4032 if (len > 0)
4033 len -= (*mb_head_off)(p, p + len);
4034#endif
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004035 for (p += len; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar62951b12011-09-21 18:23:05 +02004036 AppendCharToRedobuff(K_BS);
4037 }
4038 else
4039 len = 0;
4040 if (ptr != NULL)
4041 AppendToRedobuffLit(ptr + len, -1);
4042}
4043
4044/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 * Loops through the list of windows, loaded-buffers or non-loaded-buffers
4046 * (depending on flag) starting from buf and looking for a non-scanned
4047 * buffer (other than curbuf). curbuf is special, if it is called with
4048 * buf=curbuf then it has to be the first call for a given flag/expansion.
4049 *
4050 * Returns the buffer to scan, if any, otherwise returns curbuf -- Acevedo
4051 */
4052 static buf_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +01004053ins_compl_next_buf(buf_T *buf, int flag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 static win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056
4057 if (flag == 'w') /* just windows */
4058 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 if (buf == curbuf) /* first call for this flag/expansion */
4060 wp = curwin;
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +00004061 while ((wp = (wp->w_next != NULL ? wp->w_next : firstwin)) != curwin
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 && wp->w_buffer->b_scanned)
4063 ;
4064 buf = wp->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065 }
4066 else
4067 /* 'b' (just loaded buffers), 'u' (just non-loaded buffers) or 'U'
4068 * (unlisted buffers)
4069 * When completing whole lines skip unloaded buffers. */
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +00004070 while ((buf = (buf->b_next != NULL ? buf->b_next : firstbuf)) != curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 && ((flag == 'U'
4072 ? buf->b_p_bl
4073 : (!buf->b_p_bl
4074 || (buf->b_ml.ml_mfp == NULL) != (flag == 'u')))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004075 || buf->b_scanned))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 ;
4077 return buf;
4078}
4079
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004080#ifdef FEAT_COMPL_FUNC
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004081/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004082 * Execute user defined complete function 'completefunc' or 'omnifunc', and
Bram Moolenaare344bea2005-09-01 20:46:49 +00004083 * get matches in "matches".
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004084 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004085 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004086expand_by_function(
4087 int type, /* CTRL_X_OMNI or CTRL_X_FUNCTION */
4088 char_u *base)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004089{
Bram Moolenaar82139082011-09-14 16:52:09 +02004090 list_T *matchlist = NULL;
4091 dict_T *matchdict = NULL;
Bram Moolenaare344bea2005-09-01 20:46:49 +00004092 char_u *args[2];
Bram Moolenaare344bea2005-09-01 20:46:49 +00004093 char_u *funcname;
4094 pos_T pos;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004095 win_T *curwin_save;
4096 buf_T *curbuf_save;
Bram Moolenaar82139082011-09-14 16:52:09 +02004097 typval_T rettv;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004098
Bram Moolenaare344bea2005-09-01 20:46:49 +00004099 funcname = (type == CTRL_X_FUNCTION) ? curbuf->b_p_cfu : curbuf->b_p_ofu;
4100 if (*funcname == NUL)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004101 return;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004102
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00004103 /* Call 'completefunc' to obtain the list of matches. */
4104 args[0] = (char_u *)"0";
Bram Moolenaare344bea2005-09-01 20:46:49 +00004105 args[1] = base;
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00004106
Bram Moolenaare344bea2005-09-01 20:46:49 +00004107 pos = curwin->w_cursor;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004108 curwin_save = curwin;
4109 curbuf_save = curbuf;
Bram Moolenaar82139082011-09-14 16:52:09 +02004110
4111 /* Call a function, which returns a list or dict. */
Bram Moolenaar0cbba942012-07-25 16:47:03 +02004112 if (call_vim_function(funcname, 2, args, FALSE, FALSE, &rettv) == OK)
Bram Moolenaar82139082011-09-14 16:52:09 +02004113 {
4114 switch (rettv.v_type)
4115 {
4116 case VAR_LIST:
4117 matchlist = rettv.vval.v_list;
4118 break;
4119 case VAR_DICT:
4120 matchdict = rettv.vval.v_dict;
4121 break;
4122 default:
4123 /* TODO: Give error message? */
4124 clear_tv(&rettv);
4125 break;
4126 }
4127 }
4128
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004129 if (curwin_save != curwin || curbuf_save != curbuf)
4130 {
4131 EMSG(_(e_complwin));
4132 goto theend;
4133 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00004134 curwin->w_cursor = pos; /* restore the cursor position */
Bram Moolenaar834def32014-09-09 18:29:33 +02004135 validate_cursor();
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004136 if (!EQUAL_POS(curwin->w_cursor, pos))
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004137 {
4138 EMSG(_(e_compldel));
4139 goto theend;
4140 }
Bram Moolenaar82139082011-09-14 16:52:09 +02004141
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004142 if (matchlist != NULL)
4143 ins_compl_add_list(matchlist);
Bram Moolenaar82139082011-09-14 16:52:09 +02004144 else if (matchdict != NULL)
4145 ins_compl_add_dict(matchdict);
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00004146
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004147theend:
Bram Moolenaar82139082011-09-14 16:52:09 +02004148 if (matchdict != NULL)
4149 dict_unref(matchdict);
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004150 if (matchlist != NULL)
4151 list_unref(matchlist);
Bram Moolenaara94bc432006-03-10 21:42:59 +00004152}
4153#endif /* FEAT_COMPL_FUNC */
4154
Bram Moolenaar39f05632006-03-19 22:15:26 +00004155#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004156/*
4157 * Add completions from a list.
Bram Moolenaara94bc432006-03-10 21:42:59 +00004158 */
4159 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004160ins_compl_add_list(list_T *list)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004161{
4162 listitem_T *li;
Bram Moolenaara94bc432006-03-10 21:42:59 +00004163 int dir = compl_direction;
4164
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004165 /* Go through the List with matches and add each of them. */
Bram Moolenaara94bc432006-03-10 21:42:59 +00004166 for (li = list->lv_first; li != NULL; li = li->li_next)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004167 {
Bram Moolenaar39f05632006-03-19 22:15:26 +00004168 if (ins_compl_add_tv(&li->li_tv, dir) == OK)
4169 /* if dir was BACKWARD then honor it just once */
4170 dir = FORWARD;
Bram Moolenaar280f1262006-01-30 00:14:18 +00004171 else if (did_emsg)
4172 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004173 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004174}
Bram Moolenaar39f05632006-03-19 22:15:26 +00004175
4176/*
Bram Moolenaar82139082011-09-14 16:52:09 +02004177 * Add completions from a dict.
4178 */
4179 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004180ins_compl_add_dict(dict_T *dict)
Bram Moolenaar82139082011-09-14 16:52:09 +02004181{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004182 dictitem_T *di_refresh;
4183 dictitem_T *di_words;
Bram Moolenaar82139082011-09-14 16:52:09 +02004184
4185 /* Check for optional "refresh" item. */
4186 compl_opt_refresh_always = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004187 di_refresh = dict_find(dict, (char_u *)"refresh", 7);
4188 if (di_refresh != NULL && di_refresh->di_tv.v_type == VAR_STRING)
Bram Moolenaar82139082011-09-14 16:52:09 +02004189 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004190 char_u *v = di_refresh->di_tv.vval.v_string;
Bram Moolenaar82139082011-09-14 16:52:09 +02004191
4192 if (v != NULL && STRCMP(v, (char_u *)"always") == 0)
4193 compl_opt_refresh_always = TRUE;
4194 }
4195
4196 /* Add completions from a "words" list. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004197 di_words = dict_find(dict, (char_u *)"words", 5);
4198 if (di_words != NULL && di_words->di_tv.v_type == VAR_LIST)
4199 ins_compl_add_list(di_words->di_tv.vval.v_list);
Bram Moolenaar82139082011-09-14 16:52:09 +02004200}
4201
4202/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00004203 * Add a match to the list of matches from a typeval_T.
4204 * If the given string is already in the list of completions, then return
4205 * NOTDONE, otherwise add it to the list and return OK. If there is an error,
4206 * maybe because alloc() returns NULL, then FAIL is returned.
4207 */
4208 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004209ins_compl_add_tv(typval_T *tv, int dir)
Bram Moolenaar39f05632006-03-19 22:15:26 +00004210{
4211 char_u *word;
Bram Moolenaar91170f82006-05-05 21:15:17 +00004212 int icase = FALSE;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004213 int adup = FALSE;
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004214 int aempty = FALSE;
Bram Moolenaar39f05632006-03-19 22:15:26 +00004215 char_u *(cptext[CPT_COUNT]);
4216
4217 if (tv->v_type == VAR_DICT && tv->vval.v_dict != NULL)
4218 {
4219 word = get_dict_string(tv->vval.v_dict, (char_u *)"word", FALSE);
4220 cptext[CPT_ABBR] = get_dict_string(tv->vval.v_dict,
4221 (char_u *)"abbr", FALSE);
4222 cptext[CPT_MENU] = get_dict_string(tv->vval.v_dict,
4223 (char_u *)"menu", FALSE);
4224 cptext[CPT_KIND] = get_dict_string(tv->vval.v_dict,
4225 (char_u *)"kind", FALSE);
4226 cptext[CPT_INFO] = get_dict_string(tv->vval.v_dict,
4227 (char_u *)"info", FALSE);
Bram Moolenaar9b56a572018-02-10 16:19:32 +01004228 cptext[CPT_USER_DATA] = get_dict_string(tv->vval.v_dict,
4229 (char_u *)"user_data", FALSE);
Bram Moolenaar39f05632006-03-19 22:15:26 +00004230 if (get_dict_string(tv->vval.v_dict, (char_u *)"icase", FALSE) != NULL)
4231 icase = get_dict_number(tv->vval.v_dict, (char_u *)"icase");
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004232 if (get_dict_string(tv->vval.v_dict, (char_u *)"dup", FALSE) != NULL)
Bram Moolenaar89d40322006-08-29 15:30:07 +00004233 adup = get_dict_number(tv->vval.v_dict, (char_u *)"dup");
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004234 if (get_dict_string(tv->vval.v_dict, (char_u *)"empty", FALSE) != NULL)
4235 aempty = get_dict_number(tv->vval.v_dict, (char_u *)"empty");
Bram Moolenaar39f05632006-03-19 22:15:26 +00004236 }
4237 else
4238 {
4239 word = get_tv_string_chk(tv);
4240 vim_memset(cptext, 0, sizeof(cptext));
4241 }
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004242 if (word == NULL || (!aempty && *word == NUL))
Bram Moolenaar39f05632006-03-19 22:15:26 +00004243 return FAIL;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004244 return ins_compl_add(word, -1, icase, NULL, cptext, dir, 0, adup);
Bram Moolenaar39f05632006-03-19 22:15:26 +00004245}
Bram Moolenaara94bc432006-03-10 21:42:59 +00004246#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004247
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004248/*
4249 * Get the next expansion(s), using "compl_pattern".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004250 * The search starts at position "ini" in curbuf and in the direction
4251 * compl_direction.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004252 * When "compl_started" is FALSE start at that position, otherwise continue
4253 * where we stopped searching before.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004254 * This may return before finding all the matches.
4255 * Return the total number of matches or -1 if still unknown -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 */
4257 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004258ins_compl_get_exp(pos_T *ini)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259{
4260 static pos_T first_match_pos;
4261 static pos_T last_match_pos;
4262 static char_u *e_cpt = (char_u *)""; /* curr. entry in 'complete' */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004263 static int found_all = FALSE; /* Found all matches of a
4264 certain type. */
4265 static buf_T *ins_buf = NULL; /* buffer being scanned */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266
Bram Moolenaar572cb562005-08-05 21:35:02 +00004267 pos_T *pos;
4268 char_u **matches;
4269 int save_p_scs;
4270 int save_p_ws;
4271 int save_p_ic;
4272 int i;
4273 int num_matches;
4274 int len;
4275 int found_new_match;
4276 int type = ctrl_x_mode;
4277 char_u *ptr;
4278 char_u *dict = NULL;
4279 int dict_f = 0;
Bram Moolenaar361aa502014-01-23 22:45:58 +01004280 int set_match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004282 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 {
Bram Moolenaar29323592016-07-24 22:04:11 +02004284 FOR_ALL_BUFFERS(ins_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 ins_buf->b_scanned = 0;
4286 found_all = FALSE;
4287 ins_buf = curbuf;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004288 e_cpt = (compl_cont_status & CONT_LOCAL)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004289 ? (char_u *)"." : curbuf->b_p_cpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 last_match_pos = first_match_pos = *ini;
4291 }
4292
Bram Moolenaar4475b622017-05-01 20:46:52 +02004293 compl_old_match = compl_curr_match; /* remember the last current match */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004294 pos = (compl_direction == FORWARD) ? &last_match_pos : &first_match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 /* For ^N/^P loop over all the flags/windows/buffers in 'complete' */
4296 for (;;)
4297 {
4298 found_new_match = FAIL;
Bram Moolenaar361aa502014-01-23 22:45:58 +01004299 set_match_pos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004301 /* For ^N/^P pick a new entry from e_cpt if compl_started is off,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 * or if found_all says this entry is done. For ^X^L only use the
4303 * entries from 'complete' that look in loaded buffers. */
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01004304 if ((ctrl_x_mode == CTRL_X_NORMAL
4305 || CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004306 && (!compl_started || found_all))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 {
4308 found_all = FALSE;
4309 while (*e_cpt == ',' || *e_cpt == ' ')
4310 e_cpt++;
4311 if (*e_cpt == '.' && !curbuf->b_scanned)
4312 {
4313 ins_buf = curbuf;
4314 first_match_pos = *ini;
Bram Moolenaar24a9e342017-06-24 15:39:07 +02004315 /* Move the cursor back one character so that ^N can match the
4316 * word immediately after the cursor. */
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01004317 if (ctrl_x_mode == CTRL_X_NORMAL && dec(&first_match_pos) < 0)
Bram Moolenaar24a9e342017-06-24 15:39:07 +02004318 {
4319 /* Move the cursor to after the last character in the
4320 * buffer, so that word at start of buffer is found
4321 * correctly. */
4322 first_match_pos.lnum = ins_buf->b_ml.ml_line_count;
4323 first_match_pos.col =
4324 (colnr_T)STRLEN(ml_get(first_match_pos.lnum));
4325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 last_match_pos = first_match_pos;
4327 type = 0;
Bram Moolenaar361aa502014-01-23 22:45:58 +01004328
4329 /* Remember the first match so that the loop stops when we
4330 * wrap and come back there a second time. */
4331 set_match_pos = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 }
4333 else if (vim_strchr((char_u *)"buwU", *e_cpt) != NULL
4334 && (ins_buf = ins_compl_next_buf(ins_buf, *e_cpt)) != curbuf)
4335 {
4336 /* Scan a buffer, but not the current one. */
4337 if (ins_buf->b_ml.ml_mfp != NULL) /* loaded buffer */
4338 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004339 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 first_match_pos.col = last_match_pos.col = 0;
4341 first_match_pos.lnum = ins_buf->b_ml.ml_line_count + 1;
4342 last_match_pos.lnum = 0;
4343 type = 0;
4344 }
4345 else /* unloaded buffer, scan like dictionary */
4346 {
4347 found_all = TRUE;
4348 if (ins_buf->b_fname == NULL)
4349 continue;
4350 type = CTRL_X_DICTIONARY;
4351 dict = ins_buf->b_fname;
4352 dict_f = DICT_EXACT;
4353 }
Bram Moolenaar555b2802005-05-19 21:08:39 +00004354 vim_snprintf((char *)IObuff, IOSIZE, _("Scanning: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 ins_buf->b_fname == NULL
4356 ? buf_spname(ins_buf)
4357 : ins_buf->b_sfname == NULL
Bram Moolenaar4ccb2652012-10-04 22:38:37 +02004358 ? ins_buf->b_fname
4359 : ins_buf->b_sfname);
Bram Moolenaar8820b482017-03-16 17:23:31 +01004360 (void)msg_trunc_attr(IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 }
4362 else if (*e_cpt == NUL)
4363 break;
4364 else
4365 {
Bram Moolenaare4214502015-03-05 18:08:43 +01004366 if (CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 type = -1;
4368 else if (*e_cpt == 'k' || *e_cpt == 's')
4369 {
4370 if (*e_cpt == 'k')
4371 type = CTRL_X_DICTIONARY;
4372 else
4373 type = CTRL_X_THESAURUS;
4374 if (*++e_cpt != ',' && *e_cpt != NUL)
4375 {
4376 dict = e_cpt;
4377 dict_f = DICT_FIRST;
4378 }
4379 }
4380#ifdef FEAT_FIND_ID
4381 else if (*e_cpt == 'i')
4382 type = CTRL_X_PATH_PATTERNS;
4383 else if (*e_cpt == 'd')
4384 type = CTRL_X_PATH_DEFINES;
4385#endif
4386 else if (*e_cpt == ']' || *e_cpt == 't')
4387 {
4388 type = CTRL_X_TAGS;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004389 vim_snprintf((char *)IObuff, IOSIZE, _("Scanning tags."));
Bram Moolenaar8820b482017-03-16 17:23:31 +01004390 (void)msg_trunc_attr(IObuff, TRUE, HL_ATTR(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 }
4392 else
4393 type = -1;
4394
4395 /* in any case e_cpt is advanced to the next entry */
4396 (void)copy_option_part(&e_cpt, IObuff, IOSIZE, ",");
4397
4398 found_all = TRUE;
4399 if (type == -1)
4400 continue;
4401 }
4402 }
4403
Bram Moolenaar4475b622017-05-01 20:46:52 +02004404 /* If complete() was called then compl_pattern has been reset. The
4405 * following won't work then, bail out. */
4406 if (compl_pattern == NULL)
4407 break;
4408
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 switch (type)
4410 {
4411 case -1:
4412 break;
4413#ifdef FEAT_FIND_ID
4414 case CTRL_X_PATH_PATTERNS:
4415 case CTRL_X_PATH_DEFINES:
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004416 find_pattern_in_path(compl_pattern, compl_direction,
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004417 (int)STRLEN(compl_pattern), FALSE, FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 (type == CTRL_X_PATH_DEFINES
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004419 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 ? FIND_DEFINE : FIND_ANY, 1L, ACTION_EXPAND,
4421 (linenr_T)1, (linenr_T)MAXLNUM);
4422 break;
4423#endif
4424
4425 case CTRL_X_DICTIONARY:
4426 case CTRL_X_THESAURUS:
4427 ins_compl_dictionaries(
Bram Moolenaar0b238792006-03-02 22:49:12 +00004428 dict != NULL ? dict
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 : (type == CTRL_X_THESAURUS
4430 ? (*curbuf->b_p_tsr == NUL
4431 ? p_tsr
4432 : curbuf->b_p_tsr)
4433 : (*curbuf->b_p_dict == NUL
4434 ? p_dict
4435 : curbuf->b_p_dict)),
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004436 compl_pattern,
Bram Moolenaar0b238792006-03-02 22:49:12 +00004437 dict != NULL ? dict_f
4438 : 0, type == CTRL_X_THESAURUS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 dict = NULL;
4440 break;
4441
4442 case CTRL_X_TAGS:
4443 /* set p_ic according to p_ic, p_scs and pat for find_tags(). */
4444 save_p_ic = p_ic;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004445 p_ic = ignorecase(compl_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01004447 /* Find up to TAG_MANY matches. Avoids that an enormous number
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004448 * of matches is found when compl_pattern is empty */
4449 if (find_tags(compl_pattern, &num_matches, &matches,
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01004450 TAG_REGEXP | TAG_NAMES | TAG_NOIC | TAG_INS_COMP
4451 | (ctrl_x_mode != CTRL_X_NORMAL ? TAG_VERBOSE : 0),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 TAG_MANY, curbuf->b_ffname) == OK && num_matches > 0)
4453 {
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004454 ins_compl_add_matches(num_matches, matches, p_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 }
4456 p_ic = save_p_ic;
4457 break;
4458
4459 case CTRL_X_FILES:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004460 if (expand_wildcards(1, &compl_pattern, &num_matches, &matches,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 EW_FILE|EW_DIR|EW_ADDSLASH|EW_SILENT) == OK)
4462 {
4463
4464 /* May change home directory back to "~". */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004465 tilde_replace(compl_pattern, num_matches, matches);
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01004466 ins_compl_add_matches(num_matches, matches, p_fic || p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
4468 break;
4469
4470 case CTRL_X_CMDLINE:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004471 if (expand_cmdline(&compl_xp, compl_pattern,
4472 (int)STRLEN(compl_pattern),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 &num_matches, &matches) == EXPAND_OK)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004474 ins_compl_add_matches(num_matches, matches, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 break;
4476
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004477#ifdef FEAT_COMPL_FUNC
4478 case CTRL_X_FUNCTION:
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004479 case CTRL_X_OMNI:
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004480 expand_by_function(type, compl_pattern);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004481 break;
4482#endif
4483
Bram Moolenaar488c6512005-08-11 20:09:58 +00004484 case CTRL_X_SPELL:
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00004485#ifdef FEAT_SPELL
Bram Moolenaar488c6512005-08-11 20:09:58 +00004486 num_matches = expand_spelling(first_match_pos.lnum,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004487 compl_pattern, &matches);
Bram Moolenaar488c6512005-08-11 20:09:58 +00004488 if (num_matches > 0)
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004489 ins_compl_add_matches(num_matches, matches, p_ic);
Bram Moolenaar488c6512005-08-11 20:09:58 +00004490#endif
4491 break;
4492
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 default: /* normal ^P/^N and ^X^L */
4494 /*
4495 * If 'infercase' is set, don't use 'smartcase' here
4496 */
4497 save_p_scs = p_scs;
4498 if (ins_buf->b_p_inf)
4499 p_scs = FALSE;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004500
Bram Moolenaar361aa502014-01-23 22:45:58 +01004501 /* Buffers other than curbuf are scanned from the beginning or the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 * end but never from the middle, thus setting nowrapscan in this
4503 * buffers is a good idea, on the other hand, we always set
4504 * wrapscan for curbuf to avoid missing matches -- Acevedo,Webb */
4505 save_p_ws = p_ws;
4506 if (ins_buf != curbuf)
4507 p_ws = FALSE;
4508 else if (*e_cpt == '.')
4509 p_ws = TRUE;
4510 for (;;)
4511 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00004512 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004514 ++msg_silent; /* Don't want messages for wrapscan. */
4515
Bram Moolenaare4214502015-03-05 18:08:43 +01004516 /* CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode)
4517 * || word-wise search that
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004518 * has added a word that was at the beginning of the line */
Bram Moolenaare4214502015-03-05 18:08:43 +01004519 if (CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004520 || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 found_new_match = search_for_exact_line(ins_buf, pos,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004522 compl_direction, compl_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 else
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004524 found_new_match = searchit(NULL, ins_buf, pos,
4525 compl_direction,
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004526 compl_pattern, 1L, SEARCH_KEEP + SEARCH_NFMSG,
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02004527 RE_LAST, (linenr_T)0, NULL, NULL);
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004528 --msg_silent;
Bram Moolenaar361aa502014-01-23 22:45:58 +01004529 if (!compl_started || set_match_pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004531 /* set "compl_started" even on fail */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004532 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 first_match_pos = *pos;
4534 last_match_pos = *pos;
Bram Moolenaar361aa502014-01-23 22:45:58 +01004535 set_match_pos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 }
4537 else if (first_match_pos.lnum == last_match_pos.lnum
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004538 && first_match_pos.col == last_match_pos.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 found_new_match = FAIL;
4540 if (found_new_match == FAIL)
4541 {
4542 if (ins_buf == curbuf)
4543 found_all = TRUE;
4544 break;
4545 }
4546
4547 /* when ADDING, the text before the cursor matches, skip it */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004548 if ( (compl_cont_status & CONT_ADDING) && ins_buf == curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 && ini->lnum == pos->lnum
4550 && ini->col == pos->col)
4551 continue;
4552 ptr = ml_get_buf(ins_buf, pos->lnum, FALSE) + pos->col;
Bram Moolenaare4214502015-03-05 18:08:43 +01004553 if (CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004555 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 {
4557 if (pos->lnum >= ins_buf->b_ml.ml_line_count)
4558 continue;
4559 ptr = ml_get_buf(ins_buf, pos->lnum + 1, FALSE);
4560 if (!p_paste)
4561 ptr = skipwhite(ptr);
4562 }
4563 len = (int)STRLEN(ptr);
4564 }
4565 else
4566 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004567 char_u *tmp_ptr = ptr;
4568
4569 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004571 tmp_ptr += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 /* Skip if already inside a word. */
4573 if (vim_iswordp(tmp_ptr))
4574 continue;
4575 /* Find start of next word. */
4576 tmp_ptr = find_word_start(tmp_ptr);
4577 }
4578 /* Find end of this word. */
4579 tmp_ptr = find_word_end(tmp_ptr);
4580 len = (int)(tmp_ptr - ptr);
4581
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004582 if ((compl_cont_status & CONT_ADDING)
4583 && len == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 {
4585 if (pos->lnum < ins_buf->b_ml.ml_line_count)
4586 {
4587 /* Try next line, if any. the new word will be
4588 * "join" as if the normal command "J" was used.
4589 * IOSIZE is always greater than
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004590 * compl_length, so the next STRNCPY always
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 * works -- Acevedo */
4592 STRNCPY(IObuff, ptr, len);
4593 ptr = ml_get_buf(ins_buf, pos->lnum + 1, FALSE);
4594 tmp_ptr = ptr = skipwhite(ptr);
4595 /* Find start of next word. */
4596 tmp_ptr = find_word_start(tmp_ptr);
4597 /* Find end of next word. */
4598 tmp_ptr = find_word_end(tmp_ptr);
4599 if (tmp_ptr > ptr)
4600 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004601 if (*ptr != ')' && IObuff[len - 1] != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004603 if (IObuff[len - 1] != ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 IObuff[len++] = ' ';
4605 /* IObuf =~ "\k.* ", thus len >= 2 */
4606 if (p_js
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004607 && (IObuff[len - 2] == '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 || (vim_strchr(p_cpo, CPO_JOINSP)
4609 == NULL
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004610 && (IObuff[len - 2] == '?'
4611 || IObuff[len - 2] == '!'))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612 IObuff[len++] = ' ';
4613 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01004614 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 if (tmp_ptr - ptr >= IOSIZE - len)
4616 tmp_ptr = ptr + IOSIZE - len - 1;
4617 STRNCPY(IObuff + len, ptr, tmp_ptr - ptr);
4618 len += (int)(tmp_ptr - ptr);
Bram Moolenaar572cb562005-08-05 21:35:02 +00004619 flags |= CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 }
4621 IObuff[len] = NUL;
4622 ptr = IObuff;
4623 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004624 if (len == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 continue;
4626 }
4627 }
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004628 if (ins_compl_add_infercase(ptr, len, p_ic,
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004629 ins_buf == curbuf ? NULL : ins_buf->b_sfname,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004630 0, flags) != NOTDONE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 {
4632 found_new_match = OK;
4633 break;
4634 }
4635 }
4636 p_scs = save_p_scs;
4637 p_ws = save_p_ws;
4638 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004639
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004640 /* check if compl_curr_match has changed, (e.g. other type of
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00004641 * expansion added something) */
Bram Moolenaar4475b622017-05-01 20:46:52 +02004642 if (type != 0 && compl_curr_match != compl_old_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 found_new_match = OK;
4644
4645 /* break the loop for specialized modes (use 'complete' just for the
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01004646 * generic ctrl_x_mode == CTRL_X_NORMAL) or when we've found a new
4647 * match */
4648 if ((ctrl_x_mode != CTRL_X_NORMAL
4649 && !CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004650 || found_new_match != FAIL)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004651 {
4652 if (got_int)
4653 break;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004654 /* Fill the popup menu as soon as possible. */
Bram Moolenaar5948a572006-10-03 13:49:29 +00004655 if (type != -1)
Bram Moolenaar472e8592016-10-15 17:06:47 +02004656 ins_compl_check_keys(0, FALSE);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004657
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01004658 if ((ctrl_x_mode != CTRL_X_NORMAL
4659 && !CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004660 || compl_interrupted)
4661 break;
4662 compl_started = TRUE;
4663 }
4664 else
4665 {
4666 /* Mark a buffer scanned when it has been scanned completely */
4667 if (type == 0 || type == CTRL_X_PATH_PATTERNS)
4668 ins_buf->b_scanned = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004670 compl_started = FALSE;
4671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004673 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01004675 if ((ctrl_x_mode == CTRL_X_NORMAL || CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 && *e_cpt == NUL) /* Got to end of 'complete' */
4677 found_new_match = FAIL;
4678
4679 i = -1; /* total of matches, unknown */
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01004680 if (found_new_match == FAIL || (ctrl_x_mode != CTRL_X_NORMAL
4681 && !CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 i = ins_compl_make_cyclic();
4683
Bram Moolenaar4475b622017-05-01 20:46:52 +02004684 if (compl_old_match != NULL)
4685 {
4686 /* If several matches were added (FORWARD) or the search failed and has
4687 * just been made cyclic then we have to move compl_curr_match to the
4688 * next or previous entry (if any) -- Acevedo */
4689 compl_curr_match = compl_direction == FORWARD ? compl_old_match->cp_next
4690 : compl_old_match->cp_prev;
4691 if (compl_curr_match == NULL)
4692 compl_curr_match = compl_old_match;
4693 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 return i;
4695}
4696
4697/* Delete the old text being completed. */
4698 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01004699ins_compl_delete(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700{
Bram Moolenaar9ec7fa82016-10-18 13:06:41 +02004701 int col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702
4703 /*
4704 * In insert mode: Delete the typed part.
4705 * In replace mode: Put the old characters back, if any.
4706 */
Bram Moolenaar9ec7fa82016-10-18 13:06:41 +02004707 col = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0);
4708 if ((int)curwin->w_cursor.col > col)
4709 {
4710 if (stop_arrow() == FAIL)
4711 return;
4712 backspace_until_column(col);
4713 }
Bram Moolenaarf1924a92014-07-16 14:42:46 +02004714
Bram Moolenaar674fffe2014-07-23 13:50:46 +02004715 /* TODO: is this sufficient for redrawing? Redrawing everything causes
4716 * flicker, thus we can't do that. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 changed_cline_bef_curs();
Bram Moolenaar42a45122015-07-10 17:56:23 +02004718 /* clear v:completed_item */
Bram Moolenaara338adc2018-01-31 20:51:47 +01004719 set_vim_var_dict(VV_COMPLETED_ITEM, dict_alloc_lock(VAR_FIXED));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720}
4721
Bram Moolenaar472e8592016-10-15 17:06:47 +02004722/*
4723 * Insert the new text being completed.
4724 * "in_compl_func" is TRUE when called from complete_check().
4725 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 static void
Bram Moolenaar472e8592016-10-15 17:06:47 +02004727ins_compl_insert(int in_compl_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728{
Bram Moolenaar42a45122015-07-10 17:56:23 +02004729 dict_T *dict;
4730
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00004731 ins_bytes(compl_shown_match->cp_str + ins_compl_len());
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004732 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
4733 compl_used_match = FALSE;
4734 else
4735 compl_used_match = TRUE;
Bram Moolenaar42a45122015-07-10 17:56:23 +02004736
4737 /* Set completed item. */
4738 /* { word, abbr, menu, kind, info } */
Bram Moolenaara338adc2018-01-31 20:51:47 +01004739 dict = dict_alloc_lock(VAR_FIXED);
Bram Moolenaar42a45122015-07-10 17:56:23 +02004740 if (dict != NULL)
4741 {
4742 dict_add_nr_str(dict, "word", 0L,
4743 EMPTY_IF_NULL(compl_shown_match->cp_str));
4744 dict_add_nr_str(dict, "abbr", 0L,
4745 EMPTY_IF_NULL(compl_shown_match->cp_text[CPT_ABBR]));
4746 dict_add_nr_str(dict, "menu", 0L,
4747 EMPTY_IF_NULL(compl_shown_match->cp_text[CPT_MENU]));
4748 dict_add_nr_str(dict, "kind", 0L,
4749 EMPTY_IF_NULL(compl_shown_match->cp_text[CPT_KIND]));
4750 dict_add_nr_str(dict, "info", 0L,
4751 EMPTY_IF_NULL(compl_shown_match->cp_text[CPT_INFO]));
Bram Moolenaar9b56a572018-02-10 16:19:32 +01004752 dict_add_nr_str(dict, "user_data", 0L,
4753 EMPTY_IF_NULL(compl_shown_match->cp_text[CPT_USER_DATA]));
Bram Moolenaar42a45122015-07-10 17:56:23 +02004754 }
4755 set_vim_var_dict(VV_COMPLETED_ITEM, dict);
Bram Moolenaar472e8592016-10-15 17:06:47 +02004756 if (!in_compl_func)
4757 compl_curr_match = compl_shown_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758}
4759
4760/*
4761 * Fill in the next completion in the current direction.
Bram Moolenaar572cb562005-08-05 21:35:02 +00004762 * If "allow_get_expansion" is TRUE, then we may call ins_compl_get_exp() to
4763 * get more completions. If it is FALSE, then we just do nothing when there
4764 * are no more completions in a given direction. The latter case is used when
4765 * we are still in the middle of finding completions, to allow browsing
4766 * through the ones found so far.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 * Return the total number of matches, or -1 if still unknown -- webb.
4768 *
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004769 * compl_curr_match is currently being used by ins_compl_get_exp(), so we use
4770 * compl_shown_match here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 *
4772 * Note that this function may be called recursively once only. First with
Bram Moolenaar572cb562005-08-05 21:35:02 +00004773 * "allow_get_expansion" TRUE, which calls ins_compl_get_exp(), which in turn
4774 * calls this function with "allow_get_expansion" FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 */
4776 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01004777ins_compl_next(
4778 int allow_get_expansion,
4779 int count, /* repeat completion this many times; should
Bram Moolenaare3226be2005-12-18 22:10:00 +00004780 be at least 1 */
Bram Moolenaar472e8592016-10-15 17:06:47 +02004781 int insert_match, /* Insert the newly selected match */
4782 int in_compl_func) /* called from complete_check() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783{
4784 int num_matches = -1;
Bram Moolenaare3226be2005-12-18 22:10:00 +00004785 int todo = count;
Bram Moolenaara6557602006-02-04 22:43:20 +00004786 compl_T *found_compl = NULL;
4787 int found_end = FALSE;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004788 int advance;
Bram Moolenaarb6be1e22015-07-10 18:18:40 +02004789 int started = compl_started;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01004791 /* When user complete function return -1 for findstart which is next
4792 * time of 'always', compl_shown_match become NULL. */
4793 if (compl_shown_match == NULL)
4794 return -1;
4795
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004796 if (compl_leader != NULL
4797 && (compl_shown_match->cp_flags & ORIGINAL_TEXT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004799 /* Set "compl_shown_match" to the actually shown match, it may differ
4800 * when "compl_leader" is used to omit some of the matches. */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004801 while (!ins_compl_equal(compl_shown_match,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004802 compl_leader, (int)STRLEN(compl_leader))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004803 && compl_shown_match->cp_next != NULL
4804 && compl_shown_match->cp_next != compl_first_match)
4805 compl_shown_match = compl_shown_match->cp_next;
Bram Moolenaar0440ca32006-05-13 13:24:33 +00004806
4807 /* If we didn't find it searching forward, and compl_shows_dir is
4808 * backward, find the last match. */
4809 if (compl_shows_dir == BACKWARD
4810 && !ins_compl_equal(compl_shown_match,
4811 compl_leader, (int)STRLEN(compl_leader))
4812 && (compl_shown_match->cp_next == NULL
4813 || compl_shown_match->cp_next == compl_first_match))
4814 {
4815 while (!ins_compl_equal(compl_shown_match,
4816 compl_leader, (int)STRLEN(compl_leader))
4817 && compl_shown_match->cp_prev != NULL
4818 && compl_shown_match->cp_prev != compl_first_match)
4819 compl_shown_match = compl_shown_match->cp_prev;
4820 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004821 }
4822
4823 if (allow_get_expansion && insert_match
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004824 && (!(compl_get_longest || compl_restarting) || compl_used_match))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 /* Delete old text to be replaced */
4826 ins_compl_delete();
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004827
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004828 /* When finding the longest common text we stick at the original text,
4829 * don't let CTRL-N or CTRL-P move to the first match. */
4830 advance = count != 1 || !allow_get_expansion || !compl_get_longest;
4831
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004832 /* When restarting the search don't insert the first match either. */
4833 if (compl_restarting)
4834 {
4835 advance = FALSE;
4836 compl_restarting = FALSE;
4837 }
4838
Bram Moolenaare3226be2005-12-18 22:10:00 +00004839 /* Repeat this for when <PageUp> or <PageDown> is typed. But don't wrap
4840 * around. */
4841 while (--todo >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 {
Bram Moolenaare3226be2005-12-18 22:10:00 +00004843 if (compl_shows_dir == FORWARD && compl_shown_match->cp_next != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 {
Bram Moolenaare3226be2005-12-18 22:10:00 +00004845 compl_shown_match = compl_shown_match->cp_next;
Bram Moolenaara6557602006-02-04 22:43:20 +00004846 found_end = (compl_first_match != NULL
4847 && (compl_shown_match->cp_next == compl_first_match
4848 || compl_shown_match == compl_first_match));
Bram Moolenaare3226be2005-12-18 22:10:00 +00004849 }
4850 else if (compl_shows_dir == BACKWARD
4851 && compl_shown_match->cp_prev != NULL)
4852 {
Bram Moolenaara6557602006-02-04 22:43:20 +00004853 found_end = (compl_shown_match == compl_first_match);
Bram Moolenaare3226be2005-12-18 22:10:00 +00004854 compl_shown_match = compl_shown_match->cp_prev;
Bram Moolenaara6557602006-02-04 22:43:20 +00004855 found_end |= (compl_shown_match == compl_first_match);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 }
4857 else
Bram Moolenaare3226be2005-12-18 22:10:00 +00004858 {
Bram Moolenaara260a972006-06-23 19:36:29 +00004859 if (!allow_get_expansion)
4860 {
4861 if (advance)
4862 {
4863 if (compl_shows_dir == BACKWARD)
4864 compl_pending -= todo + 1;
4865 else
4866 compl_pending += todo + 1;
4867 }
4868 return -1;
4869 }
4870
Bram Moolenaarb6be1e22015-07-10 18:18:40 +02004871 if (!compl_no_select && advance)
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004872 {
4873 if (compl_shows_dir == BACKWARD)
4874 --compl_pending;
4875 else
4876 ++compl_pending;
4877 }
Bram Moolenaara6557602006-02-04 22:43:20 +00004878
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004879 /* Find matches. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004880 num_matches = ins_compl_get_exp(&compl_startpos);
Bram Moolenaara260a972006-06-23 19:36:29 +00004881
4882 /* handle any pending completions */
4883 while (compl_pending != 0 && compl_direction == compl_shows_dir
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004884 && advance)
Bram Moolenaara260a972006-06-23 19:36:29 +00004885 {
4886 if (compl_pending > 0 && compl_shown_match->cp_next != NULL)
4887 {
4888 compl_shown_match = compl_shown_match->cp_next;
4889 --compl_pending;
4890 }
4891 if (compl_pending < 0 && compl_shown_match->cp_prev != NULL)
4892 {
4893 compl_shown_match = compl_shown_match->cp_prev;
4894 ++compl_pending;
4895 }
4896 else
4897 break;
4898 }
Bram Moolenaara6557602006-02-04 22:43:20 +00004899 found_end = FALSE;
4900 }
4901 if ((compl_shown_match->cp_flags & ORIGINAL_TEXT) == 0
4902 && compl_leader != NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004903 && !ins_compl_equal(compl_shown_match,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004904 compl_leader, (int)STRLEN(compl_leader)))
Bram Moolenaara6557602006-02-04 22:43:20 +00004905 ++todo;
4906 else
4907 /* Remember a matching item. */
4908 found_compl = compl_shown_match;
4909
4910 /* Stop at the end of the list when we found a usable match. */
4911 if (found_end)
4912 {
4913 if (found_compl != NULL)
4914 {
4915 compl_shown_match = found_compl;
4916 break;
4917 }
4918 todo = 1; /* use first usable match after wrapping around */
Bram Moolenaare3226be2005-12-18 22:10:00 +00004919 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 }
4921
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004922 /* Insert the text of the new completion, or the compl_leader. */
Bram Moolenaarb6be1e22015-07-10 18:18:40 +02004923 if (compl_no_insert && !started)
4924 {
4925 ins_bytes(compl_orig_text + ins_compl_len());
4926 compl_used_match = FALSE;
4927 }
4928 else if (insert_match)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004929 {
4930 if (!compl_get_longest || compl_used_match)
Bram Moolenaar472e8592016-10-15 17:06:47 +02004931 ins_compl_insert(in_compl_func);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004932 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00004933 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004934 }
4935 else
4936 compl_used_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937
4938 if (!allow_get_expansion)
4939 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004940 /* may undisplay the popup menu first */
4941 ins_compl_upd_pum();
4942
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004943 /* redraw to show the user what was inserted */
4944 update_screen(0);
4945
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004946 /* display the updated popup menu */
4947 ins_compl_show_pum();
Bram Moolenaar14716812006-05-04 21:54:08 +00004948#ifdef FEAT_GUI
4949 if (gui.in_use)
4950 {
4951 /* Show the cursor after the match, not after the redrawn text. */
4952 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01004953 out_flush_cursor(FALSE, FALSE);
Bram Moolenaar14716812006-05-04 21:54:08 +00004954 }
4955#endif
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004956
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 /* Delete old text to be replaced, since we're still searching and
4958 * don't want to match ourselves! */
4959 ins_compl_delete();
4960 }
4961
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004962 /* Enter will select a match when the match wasn't inserted and the popup
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00004963 * menu is visible. */
Bram Moolenaarb6be1e22015-07-10 18:18:40 +02004964 if (compl_no_insert && !started)
4965 compl_enter_selects = TRUE;
4966 else
4967 compl_enter_selects = !insert_match && compl_match_array != NULL;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004968
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 /*
4970 * Show the file name for the match (if any)
4971 * Truncate the file name to avoid a wait for return.
4972 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00004973 if (compl_shown_match->cp_fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 {
Bram Moolenaar658a3a22017-03-31 22:27:12 +02004975 char *lead = _("match in file");
4976 int space = sc_col - vim_strsize((char_u *)lead) - 2;
4977 char_u *s;
4978 char_u *e;
4979
4980 if (space > 0)
4981 {
4982 /* We need the tail that fits. With double-byte encoding going
4983 * back from the end is very slow, thus go from the start and keep
4984 * the text that fits in "space" between "s" and "e". */
4985 for (s = e = compl_shown_match->cp_fname; *e != NUL; MB_PTR_ADV(e))
4986 {
4987 space -= ptr2cells(e);
4988 while (space < 0)
4989 {
4990 space += ptr2cells(s);
4991 MB_PTR_ADV(s);
4992 }
4993 }
4994 vim_snprintf((char *)IObuff, IOSIZE, "%s %s%s", lead,
4995 s > compl_shown_match->cp_fname ? "<" : "", s);
4996 msg(IObuff);
4997 redraw_cmdline = FALSE; /* don't overwrite! */
4998 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 }
5000
5001 return num_matches;
5002}
5003
5004/*
5005 * Call this while finding completions, to check whether the user has hit a key
5006 * that should change the currently displayed completion, or exit completion
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005007 * mode. Also, when compl_pending is not zero, show a completion as soon as
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 * possible. -- webb
Bram Moolenaar572cb562005-08-05 21:35:02 +00005009 * "frequency" specifies out of how many calls we actually check.
Bram Moolenaar472e8592016-10-15 17:06:47 +02005010 * "in_compl_func" is TRUE when called from complete_check(), don't set
5011 * compl_curr_match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 */
5013 void
Bram Moolenaar472e8592016-10-15 17:06:47 +02005014ins_compl_check_keys(int frequency, int in_compl_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015{
5016 static int count = 0;
Bram Moolenaar02ae9b42018-02-09 15:06:02 +01005017 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018
Bram Moolenaar02ae9b42018-02-09 15:06:02 +01005019 /* Don't check when reading keys from a script, :normal or feedkeys().
5020 * That would break the test scripts. But do check for keys when called
5021 * from complete_check(). */
5022 if (!in_compl_func && (using_script() || ex_normal_busy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 return;
5024
5025 /* Only do this at regular intervals */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005026 if (++count < frequency)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 return;
5028 count = 0;
5029
Bram Moolenaara260a972006-06-23 19:36:29 +00005030 /* Check for a typed key. Do use mappings, otherwise vim_is_ctrl_x_key()
5031 * can't do its work correctly. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 c = vpeekc_any();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 if (c != NUL)
5034 {
5035 if (vim_is_ctrl_x_key(c) && c != Ctrl_X && c != Ctrl_R)
5036 {
5037 c = safe_vgetc(); /* Eat the character */
Bram Moolenaare3226be2005-12-18 22:10:00 +00005038 compl_shows_dir = ins_compl_key2dir(c);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005039 (void)ins_compl_next(FALSE, ins_compl_key2count(c),
Bram Moolenaar472e8592016-10-15 17:06:47 +02005040 c != K_UP && c != K_DOWN, in_compl_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 }
Bram Moolenaara260a972006-06-23 19:36:29 +00005042 else
5043 {
5044 /* Need to get the character to have KeyTyped set. We'll put it
Bram Moolenaard4e20a72008-01-22 16:50:03 +00005045 * back with vungetc() below. But skip K_IGNORE. */
Bram Moolenaara260a972006-06-23 19:36:29 +00005046 c = safe_vgetc();
Bram Moolenaard4e20a72008-01-22 16:50:03 +00005047 if (c != K_IGNORE)
5048 {
5049 /* Don't interrupt completion when the character wasn't typed,
5050 * e.g., when doing @q to replay keys. */
5051 if (c != Ctrl_R && KeyTyped)
5052 compl_interrupted = TRUE;
Bram Moolenaara260a972006-06-23 19:36:29 +00005053
Bram Moolenaard4e20a72008-01-22 16:50:03 +00005054 vungetc(c);
5055 }
Bram Moolenaara260a972006-06-23 19:36:29 +00005056 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 }
Bram Moolenaarb6be1e22015-07-10 18:18:40 +02005058 if (compl_pending != 0 && !got_int && !compl_no_insert)
Bram Moolenaara260a972006-06-23 19:36:29 +00005059 {
5060 int todo = compl_pending > 0 ? compl_pending : -compl_pending;
5061
5062 compl_pending = 0;
Bram Moolenaar472e8592016-10-15 17:06:47 +02005063 (void)ins_compl_next(FALSE, todo, TRUE, in_compl_func);
Bram Moolenaara260a972006-06-23 19:36:29 +00005064 }
Bram Moolenaare3226be2005-12-18 22:10:00 +00005065}
5066
5067/*
5068 * Decide the direction of Insert mode complete from the key typed.
5069 * Returns BACKWARD or FORWARD.
5070 */
5071 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005072ins_compl_key2dir(int c)
Bram Moolenaare3226be2005-12-18 22:10:00 +00005073{
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005074 if (c == Ctrl_P || c == Ctrl_L
Bram Moolenaar8e42ae52016-04-20 16:39:19 +02005075 || c == K_PAGEUP || c == K_KPAGEUP || c == K_S_UP || c == K_UP)
Bram Moolenaare3226be2005-12-18 22:10:00 +00005076 return BACKWARD;
5077 return FORWARD;
5078}
5079
5080/*
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005081 * Return TRUE for keys that are used for completion only when the popup menu
5082 * is visible.
5083 */
5084 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005085ins_compl_pum_key(int c)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005086{
5087 return pum_visible() && (c == K_PAGEUP || c == K_KPAGEUP || c == K_S_UP
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005088 || c == K_PAGEDOWN || c == K_KPAGEDOWN || c == K_S_DOWN
5089 || c == K_UP || c == K_DOWN);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005090}
5091
5092/*
Bram Moolenaare3226be2005-12-18 22:10:00 +00005093 * Decide the number of completions to move forward.
5094 * Returns 1 for most keys, height of the popup menu for page-up/down keys.
5095 */
5096 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005097ins_compl_key2count(int c)
Bram Moolenaare3226be2005-12-18 22:10:00 +00005098{
5099 int h;
5100
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005101 if (ins_compl_pum_key(c) && c != K_UP && c != K_DOWN)
Bram Moolenaare3226be2005-12-18 22:10:00 +00005102 {
5103 h = pum_get_height();
5104 if (h > 3)
5105 h -= 2; /* keep some context */
5106 return h;
5107 }
5108 return 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109}
5110
5111/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005112 * Return TRUE if completion with "c" should insert the match, FALSE if only
5113 * to change the currently selected completion.
5114 */
5115 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005116ins_compl_use_match(int c)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005117{
5118 switch (c)
5119 {
5120 case K_UP:
5121 case K_DOWN:
5122 case K_PAGEDOWN:
5123 case K_KPAGEDOWN:
5124 case K_S_DOWN:
5125 case K_PAGEUP:
5126 case K_KPAGEUP:
5127 case K_S_UP:
5128 return FALSE;
5129 }
5130 return TRUE;
5131}
5132
5133/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 * Do Insert mode completion.
5135 * Called when character "c" was typed, which has a meaning for completion.
5136 * Returns OK if completion was done, FAIL if something failed (out of mem).
5137 */
5138 static int
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01005139ins_complete(int c, int enable_pum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005141 char_u *line;
5142 int startcol = 0; /* column where searched text starts */
5143 colnr_T curs_col; /* cursor column */
5144 int n;
Bram Moolenaarbe678f82010-03-10 14:15:54 +01005145 int save_w_wrow;
Bram Moolenaarcb036422017-03-01 12:29:10 +01005146 int save_w_leftcol;
Bram Moolenaar9ec7fa82016-10-18 13:06:41 +02005147 int insert_match;
Bram Moolenaard099e032017-02-21 23:00:36 +01005148 int save_did_ai = did_ai;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149
Bram Moolenaare3226be2005-12-18 22:10:00 +00005150 compl_direction = ins_compl_key2dir(c);
Bram Moolenaar9ec7fa82016-10-18 13:06:41 +02005151 insert_match = ins_compl_use_match(c);
5152
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005153 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 {
5155 /* First time we hit ^N or ^P (in a row, I mean) */
5156
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 did_ai = FALSE;
5158#ifdef FEAT_SMARTINDENT
5159 did_si = FALSE;
5160 can_si = FALSE;
5161 can_si_back = FALSE;
5162#endif
5163 if (stop_arrow() == FAIL)
5164 return FAIL;
5165
5166 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005167 curs_col = curwin->w_cursor.col;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00005168 compl_pending = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169
Bram Moolenaar711d5b52007-10-19 18:40:51 +00005170 /* If this same ctrl_x_mode has been interrupted use the text from
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005171 * "compl_startpos" to the cursor as a pattern to add a new word
5172 * instead of expand the one before the cursor, in word-wise if
Bram Moolenaar711d5b52007-10-19 18:40:51 +00005173 * "compl_startpos" is not in the same line as the cursor then fix it
5174 * (the line has been split because it was longer than 'tw'). if SOL
5175 * is set then skip the previous pattern, a word at the beginning of
5176 * the line has been inserted, we'll look for that -- Acevedo. */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005177 if ((compl_cont_status & CONT_INTRPT) == CONT_INTRPT
5178 && compl_cont_mode == ctrl_x_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 {
5180 /*
5181 * it is a continued search
5182 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005183 compl_cont_status &= ~CONT_INTRPT; /* remove INTRPT */
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01005184 if (ctrl_x_mode == CTRL_X_NORMAL
5185 || ctrl_x_mode == CTRL_X_PATH_PATTERNS
5186 || ctrl_x_mode == CTRL_X_PATH_DEFINES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005188 if (compl_startpos.lnum != curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005190 /* line (probably) wrapped, set compl_startpos to the
5191 * first non_blank in the line, if it is not a wordchar
5192 * include it to get a better pattern, but then we don't
5193 * want the "\\<" prefix, check it bellow */
Bram Moolenaare2e69e42017-09-02 20:30:35 +02005194 compl_col = (colnr_T)getwhitecols(line);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005195 compl_startpos.col = compl_col;
5196 compl_startpos.lnum = curwin->w_cursor.lnum;
5197 compl_cont_status &= ~CONT_SOL; /* clear SOL if present */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 }
5199 else
5200 {
5201 /* S_IPOS was set when we inserted a word that was at the
5202 * beginning of the line, which means that we'll go to SOL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005203 * mode but first we need to redefine compl_startpos */
5204 if (compl_cont_status & CONT_S_IPOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005206 compl_cont_status |= CONT_SOL;
5207 compl_startpos.col = (colnr_T)(skipwhite(
5208 line + compl_length
5209 + compl_startpos.col) - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005211 compl_col = compl_startpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005213 compl_length = curwin->w_cursor.col - (int)compl_col;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005214 /* IObuff is used to add a "word from the next line" would we
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00005215 * have enough space? just being paranoid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216#define MIN_SPACE 75
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005217 if (compl_length > (IOSIZE - MIN_SPACE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005219 compl_cont_status &= ~CONT_SOL;
5220 compl_length = (IOSIZE - MIN_SPACE);
5221 compl_col = curwin->w_cursor.col - compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005223 compl_cont_status |= CONT_ADDING | CONT_N_ADDS;
5224 if (compl_length < 1)
5225 compl_cont_status &= CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 }
Bram Moolenaare4214502015-03-05 18:08:43 +01005227 else if (CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005228 compl_cont_status = CONT_ADDING | CONT_N_ADDS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005230 compl_cont_status = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 }
5232 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005233 compl_cont_status &= CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005235 if (!(compl_cont_status & CONT_ADDING)) /* normal expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005237 compl_cont_mode = ctrl_x_mode;
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01005238 if (ctrl_x_mode != CTRL_X_NORMAL)
5239 /* Remove LOCAL if ctrl_x_mode != CTRL_X_NORMAL */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005240 compl_cont_status = 0;
5241 compl_cont_status |= CONT_N_ADDS;
5242 compl_startpos = curwin->w_cursor;
5243 startcol = (int)curs_col;
5244 compl_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 }
5246
5247 /* Work out completion pattern and original text -- webb */
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01005248 if (ctrl_x_mode == CTRL_X_NORMAL || (ctrl_x_mode & CTRL_X_WANT_IDENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005250 if ((compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 || ctrl_x_mode == CTRL_X_PATH_DEFINES)
5252 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005253 if (!(compl_cont_status & CONT_ADDING))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005255 while (--startcol >= 0 && vim_isIDc(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005257 compl_col += ++startcol;
5258 compl_length = curs_col - startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 }
5260 if (p_ic)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005261 compl_pattern = str_foldcase(line + compl_col,
5262 compl_length, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005264 compl_pattern = vim_strnsave(line + compl_col,
5265 compl_length);
5266 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 return FAIL;
5268 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005269 else if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 {
5271 char_u *prefix = (char_u *)"\\<";
5272
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005273 /* we need up to 2 extra chars for the prefix */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005274 compl_pattern = alloc(quote_meta(NULL, line + compl_col,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005275 compl_length) + 2);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005276 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005278 if (!vim_iswordp(line + compl_col)
5279 || (compl_col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 && (
5281#ifdef FEAT_MBYTE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005282 vim_iswordp(mb_prevptr(line, line + compl_col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005284 vim_iswordc(line[compl_col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285#endif
5286 )))
5287 prefix = (char_u *)"";
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005288 STRCPY((char *)compl_pattern, prefix);
5289 (void)quote_meta(compl_pattern + STRLEN(prefix),
5290 line + compl_col, compl_length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005292 else if (--startcol < 0 ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293#ifdef FEAT_MBYTE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005294 !vim_iswordp(mb_prevptr(line, line + startcol + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005296 !vim_iswordc(line[startcol])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297#endif
5298 )
5299 {
5300 /* Match any word of at least two chars */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005301 compl_pattern = vim_strsave((char_u *)"\\<\\k\\k");
5302 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005304 compl_col += curs_col;
5305 compl_length = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 }
5307 else
5308 {
5309#ifdef FEAT_MBYTE
5310 /* Search the point of change class of multibyte character
5311 * or not a word single byte character backward. */
5312 if (has_mbyte)
5313 {
5314 int base_class;
5315 int head_off;
5316
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005317 startcol -= (*mb_head_off)(line, line + startcol);
5318 base_class = mb_get_class(line + startcol);
5319 while (--startcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005321 head_off = (*mb_head_off)(line, line + startcol);
5322 if (base_class != mb_get_class(line + startcol
5323 - head_off))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005325 startcol -= head_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 }
5327 }
5328 else
5329#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005330 while (--startcol >= 0 && vim_iswordc(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005332 compl_col += ++startcol;
5333 compl_length = (int)curs_col - startcol;
5334 if (compl_length == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 {
5336 /* Only match word with at least two chars -- webb
5337 * there's no need to call quote_meta,
5338 * alloc(7) is enough -- Acevedo
5339 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005340 compl_pattern = alloc(7);
5341 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005343 STRCPY((char *)compl_pattern, "\\<");
5344 (void)quote_meta(compl_pattern + 2, line + compl_col, 1);
5345 STRCAT((char *)compl_pattern, "\\k");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 }
5347 else
5348 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005349 compl_pattern = alloc(quote_meta(NULL, line + compl_col,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005350 compl_length) + 2);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005351 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005353 STRCPY((char *)compl_pattern, "\\<");
5354 (void)quote_meta(compl_pattern + 2, line + compl_col,
5355 compl_length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 }
5357 }
5358 }
Bram Moolenaare4214502015-03-05 18:08:43 +01005359 else if (CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02005361 compl_col = (colnr_T)getwhitecols(line);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005362 compl_length = (int)curs_col - (int)compl_col;
5363 if (compl_length < 0) /* cursor in indent: empty pattern */
5364 compl_length = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 if (p_ic)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005366 compl_pattern = str_foldcase(line + compl_col, compl_length,
5367 NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005369 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5370 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 return FAIL;
5372 }
5373 else if (ctrl_x_mode == CTRL_X_FILES)
5374 {
Bram Moolenaar00b764a2013-09-05 13:50:53 +02005375 /* Go back to just before the first filename character. */
Bram Moolenaardd407342013-09-08 20:00:48 +02005376 if (startcol > 0)
5377 {
5378 char_u *p = line + startcol;
5379
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005380 MB_PTR_BACK(line, p);
Bram Moolenaardd407342013-09-08 20:00:48 +02005381 while (p > line && vim_isfilec(PTR2CHAR(p)))
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005382 MB_PTR_BACK(line, p);
Bram Moolenaardd407342013-09-08 20:00:48 +02005383 if (p == line && vim_isfilec(PTR2CHAR(p)))
5384 startcol = 0;
5385 else
5386 startcol = (int)(p - line) + 1;
5387 }
Bram Moolenaar00b764a2013-09-05 13:50:53 +02005388
Bram Moolenaar0300e462013-09-08 16:03:45 +02005389 compl_col += startcol;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005390 compl_length = (int)curs_col - startcol;
5391 compl_pattern = addstar(line + compl_col, compl_length,
5392 EXPAND_FILES);
5393 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 return FAIL;
5395 }
5396 else if (ctrl_x_mode == CTRL_X_CMDLINE)
5397 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005398 compl_pattern = vim_strnsave(line, curs_col);
5399 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005401 set_cmd_context(&compl_xp, compl_pattern,
Bram Moolenaar33a80ee2016-09-05 21:51:14 +02005402 (int)STRLEN(compl_pattern), curs_col, FALSE);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005403 if (compl_xp.xp_context == EXPAND_UNSUCCESSFUL
5404 || compl_xp.xp_context == EXPAND_NOTHING)
Bram Moolenaarf83c5c02006-08-16 19:24:22 +00005405 /* No completion possible, use an empty pattern to get a
5406 * "pattern not found" message. */
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005407 compl_col = curs_col;
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005408 else
Bram Moolenaarf83c5c02006-08-16 19:24:22 +00005409 compl_col = (int)(compl_xp.xp_pattern - compl_pattern);
5410 compl_length = curs_col - compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005412 else if (ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005413 {
Bram Moolenaare344bea2005-09-01 20:46:49 +00005414#ifdef FEAT_COMPL_FUNC
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005415 /*
Bram Moolenaare344bea2005-09-01 20:46:49 +00005416 * Call user defined function 'completefunc' with "a:findstart"
5417 * set to 1 to obtain the length of text to use for completion.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005418 */
Bram Moolenaare344bea2005-09-01 20:46:49 +00005419 char_u *args[2];
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005420 int col;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005421 char_u *funcname;
5422 pos_T pos;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005423 win_T *curwin_save;
5424 buf_T *curbuf_save;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005425
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005426 /* Call 'completefunc' or 'omnifunc' and get pattern length as a
Bram Moolenaare344bea2005-09-01 20:46:49 +00005427 * string */
5428 funcname = ctrl_x_mode == CTRL_X_FUNCTION
5429 ? curbuf->b_p_cfu : curbuf->b_p_ofu;
5430 if (*funcname == NUL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005431 {
5432 EMSG2(_(e_notset), ctrl_x_mode == CTRL_X_FUNCTION
5433 ? "completefunc" : "omnifunc");
Bram Moolenaard099e032017-02-21 23:00:36 +01005434 /* restore did_ai, so that adding comment leader works */
5435 did_ai = save_did_ai;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005436 return FAIL;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005437 }
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005438
5439 args[0] = (char_u *)"1";
Bram Moolenaare344bea2005-09-01 20:46:49 +00005440 args[1] = NULL;
5441 pos = curwin->w_cursor;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005442 curwin_save = curwin;
5443 curbuf_save = curbuf;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005444 col = call_func_retnr(funcname, 2, args, FALSE);
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005445 if (curwin_save != curwin || curbuf_save != curbuf)
5446 {
5447 EMSG(_(e_complwin));
5448 return FAIL;
5449 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00005450 curwin->w_cursor = pos; /* restore the cursor position */
Bram Moolenaar834def32014-09-09 18:29:33 +02005451 validate_cursor();
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005452 if (!EQUAL_POS(curwin->w_cursor, pos))
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005453 {
5454 EMSG(_(e_compldel));
5455 return FAIL;
5456 }
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005457
Bram Moolenaar6110a002012-01-26 18:58:38 +01005458 /* Return value -2 means the user complete function wants to
Bram Moolenaar8a4c1362012-05-18 16:35:21 +02005459 * cancel the complete without an error.
5460 * Return value -3 does the same as -2 and leaves CTRL-X mode.*/
Bram Moolenaar6110a002012-01-26 18:58:38 +01005461 if (col == -2)
5462 return FAIL;
Bram Moolenaar8a4c1362012-05-18 16:35:21 +02005463 if (col == -3)
5464 {
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01005465 ctrl_x_mode = CTRL_X_NORMAL;
Bram Moolenaar8a4c1362012-05-18 16:35:21 +02005466 edit_submode = NULL;
Bram Moolenaarea389e92014-05-28 21:40:52 +02005467 if (!shortmess(SHM_COMPLETIONMENU))
5468 msg_clr_cmdline();
Bram Moolenaar8a4c1362012-05-18 16:35:21 +02005469 return FAIL;
5470 }
Bram Moolenaar6110a002012-01-26 18:58:38 +01005471
Bram Moolenaar82139082011-09-14 16:52:09 +02005472 /*
5473 * Reset extended parameters of completion, when start new
5474 * completion.
5475 */
5476 compl_opt_refresh_always = FALSE;
5477
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005478 if (col < 0)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005479 col = curs_col;
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005480 compl_col = col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005481 if (compl_col > curs_col)
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005482 compl_col = curs_col;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005483
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005484 /* Setup variables for completion. Need to obtain "line" again,
5485 * it may have become invalid. */
5486 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005487 compl_length = curs_col - compl_col;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005488 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5489 if (compl_pattern == NULL)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005490#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005491 return FAIL;
5492 }
Bram Moolenaar488c6512005-08-11 20:09:58 +00005493 else if (ctrl_x_mode == CTRL_X_SPELL)
5494 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005495#ifdef FEAT_SPELL
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00005496 if (spell_bad_len > 0)
5497 compl_col = curs_col - spell_bad_len;
5498 else
5499 compl_col = spell_word_start(startcol);
5500 if (compl_col >= (colnr_T)startcol)
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005501 {
5502 compl_length = 0;
5503 compl_col = curs_col;
5504 }
5505 else
5506 {
5507 spell_expand_check_cap(compl_col);
5508 compl_length = (int)curs_col - compl_col;
5509 }
Bram Moolenaare2f98b92006-03-29 21:18:24 +00005510 /* Need to obtain "line" again, it may have become invalid. */
5511 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar488c6512005-08-11 20:09:58 +00005512 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5513 if (compl_pattern == NULL)
5514#endif
5515 return FAIL;
5516 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005517 else
5518 {
Bram Moolenaar95f09602016-11-10 20:01:45 +01005519 internal_error("ins_complete()");
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005520 return FAIL;
5521 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005523 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 {
5525 edit_submode_pre = (char_u *)_(" Adding");
Bram Moolenaare4214502015-03-05 18:08:43 +01005526 if (CTRL_X_MODE_LINE_OR_EVAL(ctrl_x_mode))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 {
5528 /* Insert a new line, keep indentation but ignore 'comments' */
5529#ifdef FEAT_COMMENTS
5530 char_u *old = curbuf->b_p_com;
5531
5532 curbuf->b_p_com = (char_u *)"";
5533#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005534 compl_startpos.lnum = curwin->w_cursor.lnum;
5535 compl_startpos.col = compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 ins_eol('\r');
5537#ifdef FEAT_COMMENTS
5538 curbuf->b_p_com = old;
5539#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005540 compl_length = 0;
5541 compl_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 }
5543 }
5544 else
5545 {
5546 edit_submode_pre = NULL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005547 compl_startpos.col = compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 }
5549
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005550 if (compl_cont_status & CONT_LOCAL)
5551 edit_submode = (char_u *)_(ctrl_x_msgs[CTRL_X_LOCAL_MSG]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 else
5553 edit_submode = (char_u *)_(CTRL_X_MSG(ctrl_x_mode));
5554
Bram Moolenaar62951b12011-09-21 18:23:05 +02005555 /* If any of the original typed text has been changed we need to fix
5556 * the redo buffer. */
5557 ins_compl_fixRedoBufForLeader(NULL);
5558
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005559 /* Always add completion for the original text. */
5560 vim_free(compl_orig_text);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005561 compl_orig_text = vim_strnsave(line + compl_col, compl_length);
5562 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005563 -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01005565 VIM_CLEAR(compl_pattern);
5566 VIM_CLEAR(compl_orig_text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 return FAIL;
5568 }
5569
5570 /* showmode might reset the internal line pointers, so it must
5571 * be called before line = ml_get(), or when this address is no
5572 * longer needed. -- Acevedo.
5573 */
5574 edit_submode_extra = (char_u *)_("-- Searching...");
5575 edit_submode_highl = HLF_COUNT;
5576 showmode();
5577 edit_submode_extra = NULL;
5578 out_flush();
5579 }
Bram Moolenaar9ec7fa82016-10-18 13:06:41 +02005580 else if (insert_match && stop_arrow() == FAIL)
5581 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005583 compl_shown_match = compl_curr_match;
5584 compl_shows_dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585
5586 /*
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005587 * Find next match (and following matches).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 */
Bram Moolenaarbe678f82010-03-10 14:15:54 +01005589 save_w_wrow = curwin->w_wrow;
Bram Moolenaarcb036422017-03-01 12:29:10 +01005590 save_w_leftcol = curwin->w_leftcol;
Bram Moolenaar9ec7fa82016-10-18 13:06:41 +02005591 n = ins_compl_next(TRUE, ins_compl_key2count(c), insert_match, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005593 /* may undisplay the popup menu */
5594 ins_compl_upd_pum();
5595
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005596 if (n > 1) /* all matches have been found */
5597 compl_matches = n;
5598 compl_curr_match = compl_shown_match;
5599 compl_direction = compl_shows_dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600
Bram Moolenaard68071d2006-05-02 22:08:30 +00005601 /* Eat the ESC that vgetc() returns after a CTRL-C to avoid leaving Insert
5602 * mode. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 if (got_int && !global_busy)
5604 {
5605 (void)vgetc();
5606 got_int = FALSE;
5607 }
5608
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005609 /* we found no match if the list has only the "compl_orig_text"-entry */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005610 if (compl_first_match == compl_first_match->cp_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005612 edit_submode_extra = (compl_cont_status & CONT_ADDING)
5613 && compl_length > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 ? (char_u *)_(e_hitend) : (char_u *)_(e_patnotf);
5615 edit_submode_highl = HLF_E;
5616 /* remove N_ADDS flag, so next ^X<> won't try to go to ADDING mode,
5617 * because we couldn't expand anything at first place, but if we used
5618 * ^P, ^N, ^X^I or ^X^D we might want to add-expand a single-char-word
5619 * (such as M in M'exico) if not tried already. -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005620 if ( compl_length > 1
5621 || (compl_cont_status & CONT_ADDING)
Bram Moolenaarbc0e9ad2018-02-09 12:13:34 +01005622 || (ctrl_x_mode != CTRL_X_NORMAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 && ctrl_x_mode != CTRL_X_PATH_PATTERNS
5624 && ctrl_x_mode != CTRL_X_PATH_DEFINES))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005625 compl_cont_status &= ~CONT_N_ADDS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626 }
5627
Bram Moolenaar572cb562005-08-05 21:35:02 +00005628 if (compl_curr_match->cp_flags & CONT_S_IPOS)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005629 compl_cont_status |= CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005631 compl_cont_status &= ~CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632
5633 if (edit_submode_extra == NULL)
5634 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005635 if (compl_curr_match->cp_flags & ORIGINAL_TEXT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 {
5637 edit_submode_extra = (char_u *)_("Back at original");
5638 edit_submode_highl = HLF_W;
5639 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005640 else if (compl_cont_status & CONT_S_IPOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641 {
5642 edit_submode_extra = (char_u *)_("Word from other line");
5643 edit_submode_highl = HLF_COUNT;
5644 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00005645 else if (compl_curr_match->cp_next == compl_curr_match->cp_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 {
5647 edit_submode_extra = (char_u *)_("The only match");
5648 edit_submode_highl = HLF_COUNT;
5649 }
5650 else
5651 {
5652 /* Update completion sequence number when needed. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005653 if (compl_curr_match->cp_number == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005655 int number = 0;
5656 compl_T *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005658 if (compl_direction == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 {
5660 /* search backwards for the first valid (!= -1) number.
5661 * This should normally succeed already at the first loop
5662 * cycle, so it's fast! */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005663 for (match = compl_curr_match->cp_prev; match != NULL
5664 && match != compl_first_match;
5665 match = match->cp_prev)
5666 if (match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005668 number = match->cp_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 break;
5670 }
5671 if (match != NULL)
5672 /* go up and assign all numbers which are not assigned
5673 * yet */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005674 for (match = match->cp_next;
5675 match != NULL && match->cp_number == -1;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005676 match = match->cp_next)
5677 match->cp_number = ++number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 }
5679 else /* BACKWARD */
5680 {
5681 /* search forwards (upwards) for the first valid (!= -1)
5682 * number. This should normally succeed already at the
5683 * first loop cycle, so it's fast! */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005684 for (match = compl_curr_match->cp_next; match != NULL
5685 && match != compl_first_match;
5686 match = match->cp_next)
5687 if (match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005689 number = match->cp_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690 break;
5691 }
5692 if (match != NULL)
5693 /* go down and assign all numbers which are not
5694 * assigned yet */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005695 for (match = match->cp_prev; match
5696 && match->cp_number == -1;
5697 match = match->cp_prev)
5698 match->cp_number = ++number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 }
5700 }
5701
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005702 /* The match should always have a sequence number now, this is
5703 * just a safety check. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005704 if (compl_curr_match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 {
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005706 /* Space for 10 text chars. + 2x10-digit no.s = 31.
5707 * Translations may need more than twice that. */
5708 static char_u match_ref[81];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005710 if (compl_matches > 0)
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005711 vim_snprintf((char *)match_ref, sizeof(match_ref),
5712 _("match %d of %d"),
Bram Moolenaar572cb562005-08-05 21:35:02 +00005713 compl_curr_match->cp_number, compl_matches);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714 else
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005715 vim_snprintf((char *)match_ref, sizeof(match_ref),
5716 _("match %d"),
5717 compl_curr_match->cp_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718 edit_submode_extra = match_ref;
5719 edit_submode_highl = HLF_R;
Bram Moolenaar76b9b362012-02-04 23:35:00 +01005720 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721 curs_columns(FALSE);
5722 }
5723 }
5724 }
5725
5726 /* Show a message about what (completion) mode we're in. */
5727 showmode();
Bram Moolenaarea389e92014-05-28 21:40:52 +02005728 if (!shortmess(SHM_COMPLETIONMENU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 {
Bram Moolenaarea389e92014-05-28 21:40:52 +02005730 if (edit_submode_extra != NULL)
5731 {
5732 if (!p_smd)
5733 msg_attr(edit_submode_extra,
5734 edit_submode_highl < HLF_COUNT
Bram Moolenaar8820b482017-03-16 17:23:31 +01005735 ? HL_ATTR(edit_submode_highl) : 0);
Bram Moolenaarea389e92014-05-28 21:40:52 +02005736 }
5737 else
5738 msg_clr_cmdline(); /* necessary for "noshowmode" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740
Bram Moolenaard68071d2006-05-02 22:08:30 +00005741 /* Show the popup menu, unless we got interrupted. */
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01005742 if (enable_pum && !compl_interrupted)
Bram Moolenaarcb036422017-03-01 12:29:10 +01005743 show_pum(save_w_wrow, save_w_leftcol);
5744
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00005745 compl_was_interrupted = compl_interrupted;
Bram Moolenaard68071d2006-05-02 22:08:30 +00005746 compl_interrupted = FALSE;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005747
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 return OK;
5749}
5750
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01005751 static void
Bram Moolenaarcb036422017-03-01 12:29:10 +01005752show_pum(int prev_w_wrow, int prev_w_leftcol)
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01005753{
Bram Moolenaarcb036422017-03-01 12:29:10 +01005754 /* RedrawingDisabled may be set when invoked through complete(). */
5755 int n = RedrawingDisabled;
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01005756
Bram Moolenaarcb036422017-03-01 12:29:10 +01005757 RedrawingDisabled = 0;
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01005758
Bram Moolenaarcb036422017-03-01 12:29:10 +01005759 /* If the cursor moved or the display scrolled we need to remove the pum
5760 * first. */
5761 setcursor();
5762 if (prev_w_wrow != curwin->w_wrow || prev_w_leftcol != curwin->w_leftcol)
5763 ins_compl_del_pum();
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01005764
Bram Moolenaarcb036422017-03-01 12:29:10 +01005765 ins_compl_show_pum();
5766 setcursor();
5767 RedrawingDisabled = n;
Bram Moolenaar8aefbe02016-02-23 20:13:16 +01005768}
5769
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770/*
5771 * Looks in the first "len" chars. of "src" for search-metachars.
5772 * If dest is not NULL the chars. are copied there quoting (with
5773 * a backslash) the metachars, and dest would be NUL terminated.
5774 * Returns the length (needed) of dest
5775 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005776 static unsigned
Bram Moolenaar7454a062016-01-30 15:14:10 +01005777quote_meta(char_u *dest, char_u *src, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005779 unsigned m = (unsigned)len + 1; /* one extra for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005781 for ( ; --len >= 0; src++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 {
5783 switch (*src)
5784 {
5785 case '.':
5786 case '*':
5787 case '[':
5788 if (ctrl_x_mode == CTRL_X_DICTIONARY
5789 || ctrl_x_mode == CTRL_X_THESAURUS)
5790 break;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005791 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 case '~':
5793 if (!p_magic) /* quote these only if magic is set */
5794 break;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005795 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 case '\\':
5797 if (ctrl_x_mode == CTRL_X_DICTIONARY
5798 || ctrl_x_mode == CTRL_X_THESAURUS)
5799 break;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005800 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 case '^': /* currently it's not needed. */
5802 case '$':
5803 m++;
5804 if (dest != NULL)
5805 *dest++ = '\\';
5806 break;
5807 }
5808 if (dest != NULL)
5809 *dest++ = *src;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005810# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 /* Copy remaining bytes of a multibyte character. */
5812 if (has_mbyte)
5813 {
5814 int i, mb_len;
5815
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005816 mb_len = (*mb_ptr2len)(src) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 if (mb_len > 0 && len >= mb_len)
5818 for (i = 0; i < mb_len; ++i)
5819 {
5820 --len;
5821 ++src;
5822 if (dest != NULL)
5823 *dest++ = *src;
5824 }
5825 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00005826# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 }
5828 if (dest != NULL)
5829 *dest = NUL;
5830
5831 return m;
5832}
5833#endif /* FEAT_INS_EXPAND */
5834
5835/*
5836 * Next character is interpreted literally.
5837 * A one, two or three digit decimal number is interpreted as its byte value.
5838 * If one or two digits are entered, the next character is given to vungetc().
5839 * For Unicode a character > 255 may be returned.
5840 */
5841 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01005842get_literal(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843{
5844 int cc;
5845 int nc;
5846 int i;
5847 int hex = FALSE;
5848 int octal = FALSE;
5849#ifdef FEAT_MBYTE
5850 int unicode = 0;
5851#endif
5852
5853 if (got_int)
5854 return Ctrl_C;
5855
5856#ifdef FEAT_GUI
5857 /*
5858 * In GUI there is no point inserting the internal code for a special key.
5859 * It is more useful to insert the string "<KEY>" instead. This would
5860 * probably be useful in a text window too, but it would not be
5861 * vi-compatible (maybe there should be an option for it?) -- webb
5862 */
5863 if (gui.in_use)
5864 ++allow_keys;
5865#endif
5866#ifdef USE_ON_FLY_SCROLL
5867 dont_scroll = TRUE; /* disallow scrolling here */
5868#endif
5869 ++no_mapping; /* don't map the next key hits */
5870 cc = 0;
5871 i = 0;
5872 for (;;)
5873 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005874 nc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875#ifdef FEAT_CMDL_INFO
5876 if (!(State & CMDLINE)
5877# ifdef FEAT_MBYTE
5878 && MB_BYTE2LEN_CHECK(nc) == 1
5879# endif
5880 )
5881 add_to_showcmd(nc);
5882#endif
5883 if (nc == 'x' || nc == 'X')
5884 hex = TRUE;
5885 else if (nc == 'o' || nc == 'O')
5886 octal = TRUE;
5887#ifdef FEAT_MBYTE
5888 else if (nc == 'u' || nc == 'U')
5889 unicode = nc;
5890#endif
5891 else
5892 {
5893 if (hex
5894#ifdef FEAT_MBYTE
5895 || unicode != 0
5896#endif
5897 )
5898 {
5899 if (!vim_isxdigit(nc))
5900 break;
5901 cc = cc * 16 + hex2nr(nc);
5902 }
5903 else if (octal)
5904 {
5905 if (nc < '0' || nc > '7')
5906 break;
5907 cc = cc * 8 + nc - '0';
5908 }
5909 else
5910 {
5911 if (!VIM_ISDIGIT(nc))
5912 break;
5913 cc = cc * 10 + nc - '0';
5914 }
5915
5916 ++i;
5917 }
5918
5919 if (cc > 255
5920#ifdef FEAT_MBYTE
5921 && unicode == 0
5922#endif
5923 )
5924 cc = 255; /* limit range to 0-255 */
5925 nc = 0;
5926
5927 if (hex) /* hex: up to two chars */
5928 {
5929 if (i >= 2)
5930 break;
5931 }
5932#ifdef FEAT_MBYTE
5933 else if (unicode) /* Unicode: up to four or eight chars */
5934 {
5935 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
5936 break;
5937 }
5938#endif
5939 else if (i >= 3) /* decimal or octal: up to three chars */
5940 break;
5941 }
5942 if (i == 0) /* no number entered */
5943 {
5944 if (nc == K_ZERO) /* NUL is stored as NL */
5945 {
5946 cc = '\n';
5947 nc = 0;
5948 }
5949 else
5950 {
5951 cc = nc;
5952 nc = 0;
5953 }
5954 }
5955
5956 if (cc == 0) /* NUL is stored as NL */
5957 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00005958#ifdef FEAT_MBYTE
5959 if (enc_dbcs && (cc & 0xff) == 0)
5960 cc = '?'; /* don't accept an illegal DBCS char, the NUL in the
5961 second byte will cause trouble! */
5962#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963
5964 --no_mapping;
5965#ifdef FEAT_GUI
5966 if (gui.in_use)
5967 --allow_keys;
5968#endif
5969 if (nc)
5970 vungetc(nc);
5971 got_int = FALSE; /* CTRL-C typed after CTRL-V is not an interrupt */
5972 return cc;
5973}
5974
5975/*
5976 * Insert character, taking care of special keys and mod_mask
5977 */
5978 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01005979insert_special(
5980 int c,
5981 int allow_modmask,
5982 int ctrlv) /* c was typed after CTRL-V */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983{
5984 char_u *p;
5985 int len;
5986
5987 /*
5988 * Special function key, translate into "<Key>". Up to the last '>' is
5989 * inserted with ins_str(), so as not to replace characters in replace
5990 * mode.
5991 * Only use mod_mask for special keys, to avoid things like <S-Space>,
5992 * unless 'allow_modmask' is TRUE.
5993 */
Bram Moolenaard0573012017-10-28 21:11:06 +02005994#ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 /* Command-key never produces a normal key */
5996 if (mod_mask & MOD_MASK_CMD)
5997 allow_modmask = TRUE;
5998#endif
5999 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
6000 {
6001 p = get_special_key_name(c, mod_mask);
6002 len = (int)STRLEN(p);
6003 c = p[len - 1];
6004 if (len > 2)
6005 {
6006 if (stop_arrow() == FAIL)
6007 return;
6008 p[len - 1] = NUL;
6009 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00006010 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 ctrlv = FALSE;
6012 }
6013 }
6014 if (stop_arrow() == OK)
6015 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
6016}
6017
6018/*
6019 * Special characters in this context are those that need processing other
6020 * than the simple insertion that can be performed here. This includes ESC
6021 * which terminates the insert, and CR/NL which need special processing to
6022 * open up a new line. This routine tries to optimize insertions performed by
6023 * the "redo", "undo" or "put" commands, so it needs to know when it should
6024 * stop and defer processing to the "normal" mechanism.
6025 * '0' and '^' are special, because they can be followed by CTRL-D.
6026 */
6027#ifdef EBCDIC
6028# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
6029#else
6030# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
6031#endif
6032
6033#ifdef FEAT_MBYTE
Bram Moolenaar1c465442017-03-12 20:10:05 +01006034# define WHITECHAR(cc) (VIM_ISWHITE(cc) && (!enc_utf8 || !utf_iscomposing(utf_ptr2char(ml_get_cursor() + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035#else
Bram Moolenaar1c465442017-03-12 20:10:05 +01006036# define WHITECHAR(cc) VIM_ISWHITE(cc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037#endif
6038
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006039/*
6040 * "flags": INSCHAR_FORMAT - force formatting
6041 * INSCHAR_CTRLV - char typed just after CTRL-V
6042 * INSCHAR_NO_FEX - don't use 'formatexpr'
6043 *
6044 * NOTE: passes the flags value straight through to internal_format() which,
6045 * beside INSCHAR_FORMAT (above), is also looking for these:
6046 * INSCHAR_DO_COM - format comments
6047 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
6048 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006049 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006050insertchar(
6051 int c, /* character to insert or NUL */
6052 int flags, /* INSCHAR_FORMAT, etc. */
6053 int second_indent) /* indent for second line if >= 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055 int textwidth;
6056#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 int fo_ins_blank;
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01006060 int force_format = flags & INSCHAR_FORMAT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01006062 textwidth = comp_textwidth(force_format);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064
6065 /*
6066 * Try to break the line in two or more pieces when:
6067 * - Always do this if we have been called to do formatting only.
6068 * - Always do this when 'formatoptions' has the 'a' flag and the line
6069 * ends in white space.
6070 * - Otherwise:
6071 * - Don't do this if inserting a blank
6072 * - Don't do this if an existing character is being replaced, unless
6073 * we're in VREPLACE mode.
6074 * - Do this if the cursor is not on the line where insert started
6075 * or - 'formatoptions' doesn't have 'l' or the line was not too long
6076 * before the insert.
6077 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
6078 * before 'textwidth'
6079 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006080 if (textwidth > 0
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01006081 && (force_format
Bram Moolenaar1c465442017-03-12 20:10:05 +01006082 || (!VIM_ISWHITE(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083 && !((State & REPLACE_FLAG)
6084#ifdef FEAT_VREPLACE
6085 && !(State & VREPLACE_FLAG)
6086#endif
6087 && *ml_get_cursor() != NUL)
6088 && (curwin->w_cursor.lnum != Insstart.lnum
6089 || ((!has_format_option(FO_INS_LONG)
6090 || Insstart_textlen <= (colnr_T)textwidth)
6091 && (!fo_ins_blank
6092 || Insstart_blank_vcol <= (colnr_T)textwidth
6093 ))))))
6094 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006095 /* Format with 'formatexpr' when it's set. Use internal formatting
6096 * when 'formatexpr' isn't set or it returns non-zero. */
6097#if defined(FEAT_EVAL)
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01006098 int do_internal = TRUE;
6099 colnr_T virtcol = get_nolist_virtcol()
6100 + char2cells(c != NUL ? c : gchar_cursor());
Bram Moolenaarf3442e72006-10-10 13:49:10 +00006101
Bram Moolenaar0f8dd842015-03-08 14:48:49 +01006102 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0
6103 && (force_format || virtcol > (colnr_T)textwidth))
Bram Moolenaarf3442e72006-10-10 13:49:10 +00006104 {
6105 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
6106 /* It may be required to save for undo again, e.g. when setline()
6107 * was called. */
6108 ins_need_undo = TRUE;
6109 }
6110 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00006112 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006114
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 if (c == NUL) /* only formatting was wanted */
6116 return;
6117
6118#ifdef FEAT_COMMENTS
6119 /* Check whether this character should end a comment. */
6120 if (did_ai && (int)c == end_comment_pending)
6121 {
6122 char_u *line;
6123 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
6124 int middle_len, end_len;
6125 int i;
6126
6127 /*
6128 * Need to remove existing (middle) comment leader and insert end
6129 * comment leader. First, check what comment leader we can find.
6130 */
Bram Moolenaar81340392012-06-06 16:12:59 +02006131 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) /* Just checking */
6133 {
6134 /* Skip middle-comment string */
6135 while (*p && p[-1] != ':') /* find end of middle flags */
6136 ++p;
6137 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
6138 /* Don't count trailing white space for middle_len */
Bram Moolenaar1c465442017-03-12 20:10:05 +01006139 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140 --middle_len;
6141
6142 /* Find the end-comment string */
6143 while (*p && p[-1] != ':') /* find end of end flags */
6144 ++p;
6145 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
6146
6147 /* Skip white space before the cursor */
6148 i = curwin->w_cursor.col;
Bram Moolenaar1c465442017-03-12 20:10:05 +01006149 while (--i >= 0 && VIM_ISWHITE(line[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 ;
6151 i++;
6152
6153 /* Skip to before the middle leader */
6154 i -= middle_len;
6155
6156 /* Check some expected things before we go on */
6157 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
6158 {
6159 /* Backspace over all the stuff we want to replace */
6160 backspace_until_column(i);
6161
6162 /*
6163 * Insert the end-comment string, except for the last
6164 * character, which will get inserted as normal later.
6165 */
6166 ins_bytes_len(lead_end, end_len - 1);
6167 }
6168 }
6169 }
6170 end_comment_pending = NUL;
6171#endif
6172
6173 did_ai = FALSE;
6174#ifdef FEAT_SMARTINDENT
6175 did_si = FALSE;
6176 can_si = FALSE;
6177 can_si_back = FALSE;
6178#endif
6179
6180 /*
6181 * If there's any pending input, grab up to INPUT_BUFLEN at once.
6182 * This speeds up normal text input considerably.
6183 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
6184 * need to re-indent at a ':', or any other character (but not what
6185 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01006186 * Don't do this when there an InsertCharPre autocommand is defined,
6187 * because we need to fire the event for every character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 */
6189#ifdef USE_ON_FLY_SCROLL
6190 dont_scroll = FALSE; /* allow scrolling here */
6191#endif
6192
6193 if ( !ISSPECIAL(c)
6194#ifdef FEAT_MBYTE
6195 && (!has_mbyte || (*mb_char2len)(c) == 1)
6196#endif
6197 && vpeekc() != NUL
6198 && !(State & REPLACE_FLAG)
6199#ifdef FEAT_CINDENT
6200 && !cindent_on()
6201#endif
6202#ifdef FEAT_RIGHTLEFT
6203 && !p_ri
6204#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006205 && !has_insertcharpre())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 {
6207#define INPUT_BUFLEN 100
6208 char_u buf[INPUT_BUFLEN + 1];
6209 int i;
6210 colnr_T virtcol = 0;
6211
6212 buf[0] = c;
6213 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006214 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 virtcol = get_nolist_virtcol();
6216 /*
6217 * Stop the string when:
6218 * - no more chars available
6219 * - finding a special character (command key)
6220 * - buffer is full
6221 * - running into the 'textwidth' boundary
6222 * - need to check for abbreviation: A non-word char after a word-char
6223 */
6224 while ( (c = vpeekc()) != NUL
6225 && !ISSPECIAL(c)
6226#ifdef FEAT_MBYTE
6227 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
6228#endif
6229 && i < INPUT_BUFLEN
Bram Moolenaarddf662a2017-01-29 17:59:12 +01006230# ifdef FEAT_FKMAP
6231 && !(p_fkmap && KeyTyped) /* Farsi mode mapping moves cursor */
6232# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 && (textwidth == 0
6234 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
6235 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
6236 {
6237#ifdef FEAT_RIGHTLEFT
6238 c = vgetc();
6239 if (p_hkmap && KeyTyped)
6240 c = hkmap(c); /* Hebrew mode mapping */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 buf[i++] = c;
6242#else
6243 buf[i++] = vgetc();
6244#endif
6245 }
6246
6247#ifdef FEAT_DIGRAPHS
6248 do_digraph(-1); /* clear digraphs */
6249 do_digraph(buf[i-1]); /* may be the start of a digraph */
6250#endif
6251 buf[i] = NUL;
6252 ins_str(buf);
6253 if (flags & INSCHAR_CTRLV)
6254 {
6255 redo_literal(*buf);
6256 i = 1;
6257 }
6258 else
6259 i = 0;
6260 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00006261 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262 }
6263 else
6264 {
6265#ifdef FEAT_MBYTE
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006266 int cc;
6267
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
6269 {
6270 char_u buf[MB_MAXBYTES + 1];
6271
6272 (*mb_char2bytes)(c, buf);
6273 buf[cc] = NUL;
6274 ins_char_bytes(buf, cc);
6275 AppendCharToRedobuff(c);
6276 }
6277 else
6278#endif
6279 {
6280 ins_char(c);
6281 if (flags & INSCHAR_CTRLV)
6282 redo_literal(c);
6283 else
6284 AppendCharToRedobuff(c);
6285 }
6286 }
6287}
6288
6289/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006290 * Format text at the current insert position.
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006291 *
6292 * If the INSCHAR_COM_LIST flag is present, then the value of second_indent
6293 * will be the comment leader length sent to open_line().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006294 */
6295 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006296internal_format(
6297 int textwidth,
6298 int second_indent,
6299 int flags,
6300 int format_only,
6301 int c) /* character to be inserted (can be NUL) */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006302{
6303 int cc;
6304 int save_char = NUL;
6305 int haveto_redraw = FALSE;
6306 int fo_ins_blank = has_format_option(FO_INS_BLANK);
6307#ifdef FEAT_MBYTE
6308 int fo_multibyte = has_format_option(FO_MBYTE_BREAK);
6309#endif
6310 int fo_white_par = has_format_option(FO_WHITE_PAR);
6311 int first_line = TRUE;
6312#ifdef FEAT_COMMENTS
6313 colnr_T leader_len;
6314 int no_leader = FALSE;
6315 int do_comments = (flags & INSCHAR_DO_COM);
6316#endif
Bram Moolenaar0026d472014-09-09 16:32:39 +02006317#ifdef FEAT_LINEBREAK
6318 int has_lbr = curwin->w_p_lbr;
6319
6320 /* make sure win_lbr_chartabsize() counts correctly */
6321 curwin->w_p_lbr = FALSE;
6322#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006323
6324 /*
6325 * When 'ai' is off we don't want a space under the cursor to be
6326 * deleted. Replace it with an 'x' temporarily.
6327 */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006328 if (!curbuf->b_p_ai
6329#ifdef FEAT_VREPLACE
6330 && !(State & VREPLACE_FLAG)
6331#endif
6332 )
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006333 {
6334 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01006335 if (VIM_ISWHITE(cc))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006336 {
6337 save_char = cc;
6338 pchar_cursor('x');
6339 }
6340 }
6341
6342 /*
6343 * Repeat breaking lines, until the current line is not too long.
6344 */
6345 while (!got_int)
6346 {
6347 int startcol; /* Cursor column at entry */
6348 int wantcol; /* column at textwidth border */
6349 int foundcol; /* column for start of spaces */
6350 int end_foundcol = 0; /* column for start of word */
6351 colnr_T len;
6352 colnr_T virtcol;
6353#ifdef FEAT_VREPLACE
6354 int orig_col = 0;
6355 char_u *saved_text = NULL;
6356#endif
6357 colnr_T col;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006358 colnr_T end_col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006359
Bram Moolenaar97b98102009-11-17 16:41:01 +00006360 virtcol = get_nolist_virtcol()
6361 + char2cells(c != NUL ? c : gchar_cursor());
6362 if (virtcol <= (colnr_T)textwidth)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006363 break;
6364
6365#ifdef FEAT_COMMENTS
6366 if (no_leader)
6367 do_comments = FALSE;
6368 else if (!(flags & INSCHAR_FORMAT)
6369 && has_format_option(FO_WRAP_COMS))
6370 do_comments = TRUE;
6371
6372 /* Don't break until after the comment leader */
6373 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02006374 leader_len = get_leader_len(ml_get_curline(), NULL, FALSE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006375 else
6376 leader_len = 0;
6377
6378 /* If the line doesn't start with a comment leader, then don't
6379 * start one in a following broken line. Avoids that a %word
6380 * moved to the start of the next line causes all following lines
6381 * to start with %. */
6382 if (leader_len == 0)
6383 no_leader = TRUE;
6384#endif
6385 if (!(flags & INSCHAR_FORMAT)
6386#ifdef FEAT_COMMENTS
6387 && leader_len == 0
6388#endif
6389 && !has_format_option(FO_WRAP))
6390
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006391 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006392 if ((startcol = curwin->w_cursor.col) == 0)
6393 break;
6394
6395 /* find column of textwidth border */
6396 coladvance((colnr_T)textwidth);
6397 wantcol = curwin->w_cursor.col;
6398
Bram Moolenaar97b98102009-11-17 16:41:01 +00006399 curwin->w_cursor.col = startcol;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006400 foundcol = 0;
6401
6402 /*
6403 * Find position to break at.
6404 * Stop at first entered white when 'formatoptions' has 'v'
6405 */
6406 while ((!fo_ins_blank && !has_format_option(FO_INS_VI))
Bram Moolenaara27ad5a2011-10-26 17:04:29 +02006407 || (flags & INSCHAR_FORMAT)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006408 || curwin->w_cursor.lnum != Insstart.lnum
6409 || curwin->w_cursor.col >= Insstart.col)
6410 {
Bram Moolenaar97b98102009-11-17 16:41:01 +00006411 if (curwin->w_cursor.col == startcol && c != NUL)
6412 cc = c;
6413 else
6414 cc = gchar_cursor();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006415 if (WHITECHAR(cc))
6416 {
6417 /* remember position of blank just before text */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006418 end_col = curwin->w_cursor.col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006419
6420 /* find start of sequence of blanks */
6421 while (curwin->w_cursor.col > 0 && WHITECHAR(cc))
6422 {
6423 dec_cursor();
6424 cc = gchar_cursor();
6425 }
6426 if (curwin->w_cursor.col == 0 && WHITECHAR(cc))
6427 break; /* only spaces in front of text */
6428#ifdef FEAT_COMMENTS
6429 /* Don't break until after the comment leader */
6430 if (curwin->w_cursor.col < leader_len)
6431 break;
6432#endif
6433 if (has_format_option(FO_ONE_LETTER))
6434 {
6435 /* do not break after one-letter words */
6436 if (curwin->w_cursor.col == 0)
6437 break; /* one-letter word at begin */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006438#ifdef FEAT_COMMENTS
6439 /* do not break "#a b" when 'tw' is 2 */
6440 if (curwin->w_cursor.col <= leader_len)
6441 break;
6442#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006443 col = curwin->w_cursor.col;
6444 dec_cursor();
6445 cc = gchar_cursor();
6446
6447 if (WHITECHAR(cc))
6448 continue; /* one-letter, continue */
6449 curwin->w_cursor.col = col;
6450 }
Bram Moolenaar97b98102009-11-17 16:41:01 +00006451
6452 inc_cursor();
6453
6454 end_foundcol = end_col + 1;
6455 foundcol = curwin->w_cursor.col;
6456 if (curwin->w_cursor.col <= (colnr_T)wantcol)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006457 break;
6458 }
6459#ifdef FEAT_MBYTE
Bram Moolenaar97b98102009-11-17 16:41:01 +00006460 else if (cc >= 0x100 && fo_multibyte)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006461 {
6462 /* Break after or before a multi-byte character. */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006463 if (curwin->w_cursor.col != startcol)
6464 {
6465#ifdef FEAT_COMMENTS
6466 /* Don't break until after the comment leader */
6467 if (curwin->w_cursor.col < leader_len)
6468 break;
6469#endif
6470 col = curwin->w_cursor.col;
6471 inc_cursor();
6472 /* Don't change end_foundcol if already set. */
6473 if (foundcol != curwin->w_cursor.col)
6474 {
6475 foundcol = curwin->w_cursor.col;
6476 end_foundcol = foundcol;
6477 if (curwin->w_cursor.col <= (colnr_T)wantcol)
6478 break;
6479 }
6480 curwin->w_cursor.col = col;
6481 }
6482
6483 if (curwin->w_cursor.col == 0)
6484 break;
6485
6486 col = curwin->w_cursor.col;
6487
6488 dec_cursor();
6489 cc = gchar_cursor();
6490
6491 if (WHITECHAR(cc))
6492 continue; /* break with space */
6493#ifdef FEAT_COMMENTS
6494 /* Don't break until after the comment leader */
6495 if (curwin->w_cursor.col < leader_len)
6496 break;
6497#endif
6498
6499 curwin->w_cursor.col = col;
6500
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006501 foundcol = curwin->w_cursor.col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006502 end_foundcol = foundcol;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006503 if (curwin->w_cursor.col <= (colnr_T)wantcol)
6504 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006505 }
6506#endif
6507 if (curwin->w_cursor.col == 0)
6508 break;
6509 dec_cursor();
6510 }
6511
6512 if (foundcol == 0) /* no spaces, cannot break line */
6513 {
6514 curwin->w_cursor.col = startcol;
6515 break;
6516 }
6517
6518 /* Going to break the line, remove any "$" now. */
6519 undisplay_dollar();
6520
6521 /*
6522 * Offset between cursor position and line break is used by replace
6523 * stack functions. VREPLACE does not use this, and backspaces
6524 * over the text instead.
6525 */
6526#ifdef FEAT_VREPLACE
6527 if (State & VREPLACE_FLAG)
6528 orig_col = startcol; /* Will start backspacing from here */
6529 else
6530#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00006531 replace_offset = startcol - end_foundcol;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006532
6533 /*
6534 * adjust startcol for spaces that will be deleted and
6535 * characters that will remain on top line
6536 */
6537 curwin->w_cursor.col = foundcol;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006538 while ((cc = gchar_cursor(), WHITECHAR(cc))
6539 && (!fo_white_par || curwin->w_cursor.col < startcol))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006540 inc_cursor();
6541 startcol -= curwin->w_cursor.col;
6542 if (startcol < 0)
6543 startcol = 0;
6544
6545#ifdef FEAT_VREPLACE
6546 if (State & VREPLACE_FLAG)
6547 {
6548 /*
6549 * In VREPLACE mode, we will backspace over the text to be
6550 * wrapped, so save a copy now to put on the next line.
6551 */
6552 saved_text = vim_strsave(ml_get_cursor());
6553 curwin->w_cursor.col = orig_col;
6554 if (saved_text == NULL)
6555 break; /* Can't do it, out of memory */
6556 saved_text[startcol] = NUL;
6557
6558 /* Backspace over characters that will move to the next line */
6559 if (!fo_white_par)
6560 backspace_until_column(foundcol);
6561 }
6562 else
6563#endif
6564 {
6565 /* put cursor after pos. to break line */
6566 if (!fo_white_par)
6567 curwin->w_cursor.col = foundcol;
6568 }
6569
6570 /*
6571 * Split the line just before the margin.
6572 * Only insert/delete lines, but don't really redraw the window.
6573 */
6574 open_line(FORWARD, OPENLINE_DELSPACES + OPENLINE_MARKFIX
6575 + (fo_white_par ? OPENLINE_KEEPTRAIL : 0)
6576#ifdef FEAT_COMMENTS
6577 + (do_comments ? OPENLINE_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006578 + ((flags & INSCHAR_COM_LIST) ? OPENLINE_COM_LIST : 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006579#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006580 , ((flags & INSCHAR_COM_LIST) ? second_indent : old_indent));
6581 if (!(flags & INSCHAR_COM_LIST))
6582 old_indent = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006583
6584 replace_offset = 0;
6585 if (first_line)
6586 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006587 if (!(flags & INSCHAR_COM_LIST))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006588 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006589 /*
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006590 * This section is for auto-wrap of numeric lists. When not
6591 * in insert mode (i.e. format_lines()), the INSCHAR_COM_LIST
6592 * flag will be set and open_line() will handle it (as seen
6593 * above). The code here (and in get_number_indent()) will
6594 * recognize comments if needed...
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006595 */
6596 if (second_indent < 0 && has_format_option(FO_Q_NUMBER))
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006597 second_indent =
6598 get_number_indent(curwin->w_cursor.lnum - 1);
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006599 if (second_indent >= 0)
6600 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006601#ifdef FEAT_VREPLACE
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006602 if (State & VREPLACE_FLAG)
6603 change_indent(INDENT_SET, second_indent,
6604 FALSE, NUL, TRUE);
6605 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006606#endif
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006607#ifdef FEAT_COMMENTS
6608 if (leader_len > 0 && second_indent - leader_len > 0)
6609 {
6610 int i;
6611 int padding = second_indent - leader_len;
6612
6613 /* We started at the first_line of a numbered list
6614 * that has a comment. the open_line() function has
6615 * inserted the proper comment leader and positioned
6616 * the cursor at the end of the split line. Now we
6617 * add the additional whitespace needed after the
6618 * comment leader for the numbered list. */
6619 for (i = 0; i < padding; i++)
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006620 ins_str((char_u *)" ");
Bram Moolenaar5967abb2012-07-06 13:36:48 +02006621 changed_bytes(curwin->w_cursor.lnum, leader_len);
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006622 }
6623 else
6624 {
6625#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006626 (void)set_indent(second_indent, SIN_CHANGED);
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006627#ifdef FEAT_COMMENTS
6628 }
6629#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006630 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006631 }
6632 first_line = FALSE;
6633 }
6634
6635#ifdef FEAT_VREPLACE
6636 if (State & VREPLACE_FLAG)
6637 {
6638 /*
6639 * In VREPLACE mode we have backspaced over the text to be
6640 * moved, now we re-insert it into the new line.
6641 */
6642 ins_bytes(saved_text);
6643 vim_free(saved_text);
6644 }
6645 else
6646#endif
6647 {
6648 /*
6649 * Check if cursor is not past the NUL off the line, cindent
6650 * may have added or removed indent.
6651 */
6652 curwin->w_cursor.col += startcol;
6653 len = (colnr_T)STRLEN(ml_get_curline());
6654 if (curwin->w_cursor.col > len)
6655 curwin->w_cursor.col = len;
6656 }
6657
6658 haveto_redraw = TRUE;
6659#ifdef FEAT_CINDENT
6660 can_cindent = TRUE;
6661#endif
6662 /* moved the cursor, don't autoindent or cindent now */
6663 did_ai = FALSE;
6664#ifdef FEAT_SMARTINDENT
6665 did_si = FALSE;
6666 can_si = FALSE;
6667 can_si_back = FALSE;
6668#endif
6669 line_breakcheck();
6670 }
6671
6672 if (save_char != NUL) /* put back space after cursor */
6673 pchar_cursor(save_char);
6674
Bram Moolenaar0026d472014-09-09 16:32:39 +02006675#ifdef FEAT_LINEBREAK
6676 curwin->w_p_lbr = has_lbr;
6677#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006678 if (!format_only && haveto_redraw)
6679 {
6680 update_topline();
6681 redraw_curbuf_later(VALID);
6682 }
6683}
6684
6685/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 * Called after inserting or deleting text: When 'formatoptions' includes the
6687 * 'a' flag format from the current line until the end of the paragraph.
6688 * Keep the cursor at the same position relative to the text.
6689 * The caller must have saved the cursor line for undo, following ones will be
6690 * saved here.
6691 */
6692 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006693auto_format(
6694 int trailblank, /* when TRUE also format with trailing blank */
6695 int prev_line) /* may start in previous line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696{
6697 pos_T pos;
6698 colnr_T len;
6699 char_u *old;
6700 char_u *new, *pnew;
6701 int wasatend;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006702 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006703
6704 if (!has_format_option(FO_AUTO))
6705 return;
6706
6707 pos = curwin->w_cursor;
6708 old = ml_get_curline();
6709
6710 /* may remove added space */
6711 check_auto_format(FALSE);
6712
6713 /* Don't format in Insert mode when the cursor is on a trailing blank, the
6714 * user might insert normal text next. Also skip formatting when "1" is
6715 * in 'formatoptions' and there is a single character before the cursor.
6716 * Otherwise the line would be broken and when typing another non-white
6717 * next they are not joined back together. */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006718 wasatend = (pos.col == (colnr_T)STRLEN(old));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719 if (*old != NUL && !trailblank && wasatend)
6720 {
6721 dec_cursor();
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006722 cc = gchar_cursor();
6723 if (!WHITECHAR(cc) && curwin->w_cursor.col > 0
6724 && has_format_option(FO_ONE_LETTER))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006725 dec_cursor();
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006726 cc = gchar_cursor();
6727 if (WHITECHAR(cc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728 {
6729 curwin->w_cursor = pos;
6730 return;
6731 }
6732 curwin->w_cursor = pos;
6733 }
6734
6735#ifdef FEAT_COMMENTS
6736 /* With the 'c' flag in 'formatoptions' and 't' missing: only format
6737 * comments. */
6738 if (has_format_option(FO_WRAP_COMS) && !has_format_option(FO_WRAP)
Bram Moolenaar81340392012-06-06 16:12:59 +02006739 && get_leader_len(old, NULL, FALSE, TRUE) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 return;
6741#endif
6742
6743 /*
6744 * May start formatting in a previous line, so that after "x" a word is
6745 * moved to the previous line if it fits there now. Only when this is not
6746 * the start of a paragraph.
6747 */
6748 if (prev_line && !paragraph_start(curwin->w_cursor.lnum))
6749 {
6750 --curwin->w_cursor.lnum;
6751 if (u_save_cursor() == FAIL)
6752 return;
6753 }
6754
6755 /*
6756 * Do the formatting and restore the cursor position. "saved_cursor" will
6757 * be adjusted for the text formatting.
6758 */
6759 saved_cursor = pos;
Bram Moolenaar81a82092008-03-12 16:27:00 +00006760 format_lines((linenr_T)-1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006761 curwin->w_cursor = saved_cursor;
6762 saved_cursor.lnum = 0;
6763
6764 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6765 {
6766 /* "cannot happen" */
6767 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6768 coladvance((colnr_T)MAXCOL);
6769 }
6770 else
6771 check_cursor_col();
6772
6773 /* Insert mode: If the cursor is now after the end of the line while it
6774 * previously wasn't, the line was broken. Because of the rule above we
6775 * need to add a space when 'w' is in 'formatoptions' to keep a paragraph
6776 * formatted. */
6777 if (!wasatend && has_format_option(FO_WHITE_PAR))
6778 {
6779 new = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006780 len = (colnr_T)STRLEN(new);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781 if (curwin->w_cursor.col == len)
6782 {
6783 pnew = vim_strnsave(new, len + 2);
6784 pnew[len] = ' ';
6785 pnew[len + 1] = NUL;
6786 ml_replace(curwin->w_cursor.lnum, pnew, FALSE);
6787 /* remove the space later */
6788 did_add_space = TRUE;
6789 }
6790 else
6791 /* may remove added space */
6792 check_auto_format(FALSE);
6793 }
6794
6795 check_cursor();
6796}
6797
6798/*
6799 * When an extra space was added to continue a paragraph for auto-formatting,
6800 * delete it now. The space must be under the cursor, just after the insert
6801 * position.
6802 */
6803 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006804check_auto_format(
6805 int end_insert) /* TRUE when ending Insert mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806{
6807 int c = ' ';
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006808 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809
6810 if (did_add_space)
6811 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006812 cc = gchar_cursor();
6813 if (!WHITECHAR(cc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006814 /* Somehow the space was removed already. */
6815 did_add_space = FALSE;
6816 else
6817 {
6818 if (!end_insert)
6819 {
6820 inc_cursor();
6821 c = gchar_cursor();
6822 dec_cursor();
6823 }
6824 if (c != NUL)
6825 {
6826 /* The space is no longer at the end of the line, delete it. */
6827 del_char(FALSE);
6828 did_add_space = FALSE;
6829 }
6830 }
6831 }
6832}
6833
6834/*
6835 * Find out textwidth to be used for formatting:
6836 * if 'textwidth' option is set, use it
Bram Moolenaar02631462017-09-22 15:20:32 +02006837 * else if 'wrapmargin' option is set, use curwin->w_width - 'wrapmargin'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 * if invalid value, use 0.
6839 * Set default to window width (maximum 79) for "gq" operator.
6840 */
6841 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006842comp_textwidth(
6843 int ff) /* force formatting (for "gq" command) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844{
6845 int textwidth;
6846
6847 textwidth = curbuf->b_p_tw;
6848 if (textwidth == 0 && curbuf->b_p_wm)
6849 {
6850 /* The width is the window width minus 'wrapmargin' minus all the
6851 * things that add to the margin. */
Bram Moolenaar02631462017-09-22 15:20:32 +02006852 textwidth = curwin->w_width - curbuf->b_p_wm;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006853#ifdef FEAT_CMDWIN
6854 if (cmdwin_type != 0)
6855 textwidth -= 1;
6856#endif
6857#ifdef FEAT_FOLDING
6858 textwidth -= curwin->w_p_fdc;
6859#endif
6860#ifdef FEAT_SIGNS
Bram Moolenaar95ec9d62016-08-12 18:29:59 +02006861 if (signcolumn_on(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862 textwidth -= 1;
6863#endif
Bram Moolenaar64486672010-05-16 15:46:46 +02006864 if (curwin->w_p_nu || curwin->w_p_rnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865 textwidth -= 8;
6866 }
6867 if (textwidth < 0)
6868 textwidth = 0;
6869 if (ff && textwidth == 0)
6870 {
Bram Moolenaar02631462017-09-22 15:20:32 +02006871 textwidth = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006872 if (textwidth > 79)
6873 textwidth = 79;
6874 }
6875 return textwidth;
6876}
6877
6878/*
6879 * Put a character in the redo buffer, for when just after a CTRL-V.
6880 */
6881 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006882redo_literal(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883{
6884 char_u buf[10];
6885
6886 /* Only digits need special treatment. Translate them into a string of
6887 * three digits. */
6888 if (VIM_ISDIGIT(c))
6889 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006890 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891 AppendToRedobuff(buf);
6892 }
6893 else
6894 AppendCharToRedobuff(c);
6895}
6896
6897/*
6898 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006899 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900 */
6901 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006902start_arrow(
6903 pos_T *end_insert_pos) /* can be NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006904{
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02006905 start_arrow_common(end_insert_pos, TRUE);
6906}
6907
6908/*
6909 * Like start_arrow() but with end_change argument.
6910 * Will prepare for redo of CTRL-G U if "end_change" is FALSE.
6911 */
6912 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006913start_arrow_with_change(
6914 pos_T *end_insert_pos, /* can be NULL */
6915 int end_change) /* end undoable change */
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02006916{
6917 start_arrow_common(end_insert_pos, end_change);
6918 if (!end_change)
6919 {
6920 AppendCharToRedobuff(Ctrl_G);
6921 AppendCharToRedobuff('U');
6922 }
6923}
6924
6925 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006926start_arrow_common(
6927 pos_T *end_insert_pos, /* can be NULL */
6928 int end_change) /* end undoable change */
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02006929{
6930 if (!arrow_used && end_change) /* something has been inserted */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006931 {
6932 AppendToRedobuff(ESC_STR);
Bram Moolenaarf332a652013-11-04 04:20:33 +01006933 stop_insert(end_insert_pos, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 arrow_used = TRUE; /* this means we stopped the current insert */
6935 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006936#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00006937 check_spell_redraw();
6938#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939}
6940
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006941#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00006942/*
6943 * If we skipped highlighting word at cursor, do it now.
6944 * It may be skipped again, thus reset spell_redraw_lnum first.
6945 */
6946 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006947check_spell_redraw(void)
Bram Moolenaar217ad922005-03-20 22:37:15 +00006948{
6949 if (spell_redraw_lnum != 0)
6950 {
6951 linenr_T lnum = spell_redraw_lnum;
6952
6953 spell_redraw_lnum = 0;
6954 redrawWinline(lnum, FALSE);
6955 }
6956}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006957
6958/*
6959 * Called when starting CTRL_X_SPELL mode: Move backwards to a previous badly
6960 * spelled word, if there is one.
6961 */
6962 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01006963spell_back_to_badword(void)
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006964{
6965 pos_T tpos = curwin->w_cursor;
6966
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00006967 spell_bad_len = spell_move_to(curwin, BACKWARD, TRUE, TRUE, NULL);
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006968 if (curwin->w_cursor.col != tpos.col)
6969 start_arrow(&tpos);
6970}
Bram Moolenaar217ad922005-03-20 22:37:15 +00006971#endif
6972
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973/*
6974 * stop_arrow() is called before a change is made in insert mode.
6975 * If an arrow key has been used, start a new insertion.
6976 * Returns FAIL if undo is impossible, shouldn't insert then.
6977 */
6978 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01006979stop_arrow(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980{
6981 if (arrow_used)
6982 {
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02006983 Insstart = curwin->w_cursor; /* new insertion starts here */
6984 if (Insstart.col > Insstart_orig.col && !ins_need_undo)
6985 /* Don't update the original insert position when moved to the
6986 * right, except when nothing was inserted yet. */
6987 update_Insstart_orig = FALSE;
6988 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
6989
Bram Moolenaar071d4272004-06-13 20:20:40 +00006990 if (u_save_cursor() == OK)
6991 {
6992 arrow_used = FALSE;
6993 ins_need_undo = FALSE;
6994 }
Bram Moolenaar1fc7e972014-08-16 18:13:03 +02006995
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 ai_col = 0;
6997#ifdef FEAT_VREPLACE
6998 if (State & VREPLACE_FLAG)
6999 {
7000 orig_line_count = curbuf->b_ml.ml_line_count;
7001 vr_lines_changed = 1;
7002 }
7003#endif
7004 ResetRedobuff();
7005 AppendToRedobuff((char_u *)"1i"); /* pretend we start an insertion */
Bram Moolenaara9b1e742005-12-19 22:14:58 +00007006 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007 }
7008 else if (ins_need_undo)
7009 {
7010 if (u_save_cursor() == OK)
7011 ins_need_undo = FALSE;
7012 }
7013
7014#ifdef FEAT_FOLDING
7015 /* Always open fold at the cursor line when inserting something. */
7016 foldOpenCursor();
7017#endif
7018
7019 return (arrow_used || ins_need_undo ? FAIL : OK);
7020}
7021
7022/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007023 * Do a few things to stop inserting.
7024 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
7025 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 */
7027 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007028stop_insert(
7029 pos_T *end_insert_pos,
7030 int esc, /* called by ins_esc() */
7031 int nomove) /* <c-\><c-o>, don't move cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00007033 int cc;
7034 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035
7036 stop_redo_ins();
7037 replace_flush(); /* abandon replace stack */
7038
7039 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00007040 * Save the inserted text for later redo with ^@ and CTRL-A.
7041 * Don't do it when "restart_edit" was set and nothing was inserted,
7042 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00007044 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00007045 if (did_restart_edit == 0 || (ptr != NULL
7046 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00007047 {
7048 vim_free(last_insert);
7049 last_insert = ptr;
7050 last_insert_skip = new_insert_skip;
7051 }
7052 else
7053 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007055 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056 {
7057 /* Auto-format now. It may seem strange to do this when stopping an
7058 * insertion (or moving the cursor), but it's required when appending
7059 * a line and having it end in a space. But only do it when something
7060 * was actually inserted, otherwise undo won't work. */
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007061 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007063 pos_T tpos = curwin->w_cursor;
7064
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 /* When the cursor is at the end of the line after a space the
7066 * formatting will move it to the following word. Avoid that by
7067 * moving the cursor onto the space. */
7068 cc = 'x';
7069 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
7070 {
7071 dec_cursor();
7072 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01007073 if (!VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007074 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 }
7076
7077 auto_format(TRUE, FALSE);
7078
Bram Moolenaar1c465442017-03-12 20:10:05 +01007079 if (VIM_ISWHITE(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007080 {
7081 if (gchar_cursor() != NUL)
7082 inc_cursor();
7083#ifdef FEAT_VIRTUALEDIT
7084 /* If the cursor is still at the same character, also keep
7085 * the "coladd". */
7086 if (gchar_cursor() == NUL
7087 && curwin->w_cursor.lnum == tpos.lnum
7088 && curwin->w_cursor.col == tpos.col)
7089 curwin->w_cursor.coladd = tpos.coladd;
7090#endif
7091 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092 }
7093
7094 /* If a space was inserted for auto-formatting, remove it now. */
7095 check_auto_format(TRUE);
7096
7097 /* If we just did an auto-indent, remove the white space from the end
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007098 * of the line, and put the cursor back.
Bram Moolenaar4be50682009-05-26 09:02:10 +00007099 * Do this when ESC was used or moving the cursor up/down.
7100 * Check for the old position still being valid, just in case the text
7101 * got changed unexpectedly. */
Bram Moolenaarf332a652013-11-04 04:20:33 +01007102 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00007103 && curwin->w_cursor.lnum != end_insert_pos->lnum))
7104 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007106 pos_T tpos = curwin->w_cursor;
7107
7108 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar4be50682009-05-26 09:02:10 +00007109 check_cursor_col(); /* make sure it is not past the line */
Bram Moolenaar39f05632006-03-19 22:15:26 +00007110 for (;;)
7111 {
7112 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
7113 --curwin->w_cursor.col;
7114 cc = gchar_cursor();
Bram Moolenaar1c465442017-03-12 20:10:05 +01007115 if (!VIM_ISWHITE(cc))
Bram Moolenaar39f05632006-03-19 22:15:26 +00007116 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00007117 if (del_char(TRUE) == FAIL)
7118 break; /* should not happen */
Bram Moolenaar39f05632006-03-19 22:15:26 +00007119 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007120 if (curwin->w_cursor.lnum != tpos.lnum)
7121 curwin->w_cursor = tpos;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01007122 else
7123 {
Bram Moolenaaref6875b2014-11-12 18:59:25 +01007124 /* reset tpos, could have been invalidated in the loop above */
7125 tpos = curwin->w_cursor;
Bram Moolenaar2f31e392014-10-31 19:20:36 +01007126 tpos.col++;
7127 if (cc != NUL && gchar_pos(&tpos) == NUL)
7128 ++curwin->w_cursor.col; /* put cursor back on the NUL */
7129 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007130
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 /* <C-S-Right> may have started Visual mode, adjust the position for
7132 * deleted characters. */
7133 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
7134 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00007135 int len = (int)STRLEN(ml_get_curline());
7136
7137 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00007139 VIsual.col = len;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007140#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141 VIsual.coladd = 0;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 }
7144 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 }
7146 }
7147 did_ai = FALSE;
7148#ifdef FEAT_SMARTINDENT
7149 did_si = FALSE;
7150 can_si = FALSE;
7151 can_si_back = FALSE;
7152#endif
7153
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007154 /* Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
7155 * now in a different buffer. */
7156 if (end_insert_pos != NULL)
7157 {
7158 curbuf->b_op_start = Insstart;
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01007159 curbuf->b_op_start_orig = Insstart_orig;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007160 curbuf->b_op_end = *end_insert_pos;
7161 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162}
7163
7164/*
7165 * Set the last inserted text to a single character.
7166 * Used for the replace command.
7167 */
7168 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007169set_last_insert(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007170{
7171 char_u *s;
7172
7173 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 if (last_insert != NULL)
7176 {
7177 s = last_insert;
7178 /* Use the CTRL-V only when entering a special char */
7179 if (c < ' ' || c == DEL)
7180 *s++ = Ctrl_V;
7181 s = add_char2buf(c, s);
7182 *s++ = ESC;
7183 *s++ = NUL;
7184 last_insert_skip = 0;
7185 }
7186}
7187
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00007188#if defined(EXITFREE) || defined(PROTO)
7189 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007190free_last_insert(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00007191{
Bram Moolenaard23a8232018-02-10 18:45:26 +01007192 VIM_CLEAR(last_insert);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00007193# ifdef FEAT_INS_EXPAND
Bram Moolenaard23a8232018-02-10 18:45:26 +01007194 VIM_CLEAR(compl_orig_text);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00007195# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00007196}
7197#endif
7198
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199/*
7200 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
7201 * and CSI. Handle multi-byte characters.
7202 * Returns a pointer to after the added bytes.
7203 */
7204 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01007205add_char2buf(int c, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206{
7207#ifdef FEAT_MBYTE
Bram Moolenaar9a920d82012-06-01 15:21:02 +02007208 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209 int i;
7210 int len;
7211
7212 len = (*mb_char2bytes)(c, temp);
7213 for (i = 0; i < len; ++i)
7214 {
7215 c = temp[i];
7216#endif
7217 /* Need to escape K_SPECIAL and CSI like in the typeahead buffer. */
7218 if (c == K_SPECIAL)
7219 {
7220 *s++ = K_SPECIAL;
7221 *s++ = KS_SPECIAL;
7222 *s++ = KE_FILLER;
7223 }
7224#ifdef FEAT_GUI
7225 else if (c == CSI)
7226 {
7227 *s++ = CSI;
7228 *s++ = KS_EXTRA;
7229 *s++ = (int)KE_CSI;
7230 }
7231#endif
7232 else
7233 *s++ = c;
7234#ifdef FEAT_MBYTE
7235 }
7236#endif
7237 return s;
7238}
7239
7240/*
7241 * move cursor to start of line
7242 * if flags & BL_WHITE move to first non-white
7243 * if flags & BL_SOL move to first non-white if startofline is set,
7244 * otherwise keep "curswant" column
7245 * if flags & BL_FIX don't leave the cursor on a NUL.
7246 */
7247 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007248beginline(int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007249{
7250 if ((flags & BL_SOL) && !p_sol)
7251 coladvance(curwin->w_curswant);
7252 else
7253 {
7254 curwin->w_cursor.col = 0;
7255#ifdef FEAT_VIRTUALEDIT
7256 curwin->w_cursor.coladd = 0;
7257#endif
7258
7259 if (flags & (BL_WHITE | BL_SOL))
7260 {
7261 char_u *ptr;
7262
Bram Moolenaar1c465442017-03-12 20:10:05 +01007263 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
7265 ++curwin->w_cursor.col;
7266 }
7267 curwin->w_set_curswant = TRUE;
7268 }
7269}
7270
7271/*
7272 * oneright oneleft cursor_down cursor_up
7273 *
7274 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007275 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276 * Return OK when successful, FAIL when we hit a line of file boundary.
7277 */
7278
7279 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007280oneright(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007281{
7282 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284
7285#ifdef FEAT_VIRTUALEDIT
7286 if (virtual_active())
7287 {
7288 pos_T prevpos = curwin->w_cursor;
7289
7290 /* Adjust for multi-wide char (excluding TAB) */
7291 ptr = ml_get_cursor();
7292 coladvance(getviscol() + ((*ptr != TAB && vim_isprintc(
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007293# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 (*mb_ptr2char)(ptr)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007295# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007296 *ptr
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007297# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007298 ))
7299 ? ptr2cells(ptr) : 1));
7300 curwin->w_set_curswant = TRUE;
7301 /* Return OK if the cursor moved, FAIL otherwise (at window edge). */
7302 return (prevpos.col != curwin->w_cursor.col
7303 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
7304 }
7305#endif
7306
7307 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007308 if (*ptr == NUL)
7309 return FAIL; /* already at the very end */
7310
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311#ifdef FEAT_MBYTE
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007312 if (has_mbyte)
7313 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 else
7315#endif
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007316 l = 1;
7317
7318 /* move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
7319 * contains "onemore". */
7320 if (ptr[l] == NUL
7321#ifdef FEAT_VIRTUALEDIT
7322 && (ve_flags & VE_ONEMORE) == 0
7323#endif
7324 )
7325 return FAIL;
7326 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007327
7328 curwin->w_set_curswant = TRUE;
7329 return OK;
7330}
7331
7332 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007333oneleft(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007334{
7335#ifdef FEAT_VIRTUALEDIT
7336 if (virtual_active())
7337 {
Bram Moolenaara83fe752017-06-29 22:33:13 +02007338# ifdef FEAT_LINEBREAK
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 int width;
Bram Moolenaara83fe752017-06-29 22:33:13 +02007340# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 int v = getviscol();
7342
7343 if (v == 0)
7344 return FAIL;
7345
7346# ifdef FEAT_LINEBREAK
7347 /* We might get stuck on 'showbreak', skip over it. */
7348 width = 1;
7349 for (;;)
7350 {
7351 coladvance(v - width);
Bram Moolenaar597a4222014-06-25 14:39:50 +02007352 /* getviscol() is slow, skip it when 'showbreak' is empty,
7353 * 'breakindent' is not set and there are no multi-byte
7354 * characters */
7355 if ((*p_sbr == NUL && !curwin->w_p_bri
Bram Moolenaar071d4272004-06-13 20:20:40 +00007356# ifdef FEAT_MBYTE
7357 && !has_mbyte
7358# endif
7359 ) || getviscol() < v)
7360 break;
7361 ++width;
7362 }
7363# else
7364 coladvance(v - 1);
7365# endif
7366
7367 if (curwin->w_cursor.coladd == 1)
7368 {
7369 char_u *ptr;
7370
7371 /* Adjust for multi-wide char (not a TAB) */
7372 ptr = ml_get_cursor();
7373 if (*ptr != TAB && vim_isprintc(
7374# ifdef FEAT_MBYTE
7375 (*mb_ptr2char)(ptr)
7376# else
7377 *ptr
7378# endif
7379 ) && ptr2cells(ptr) > 1)
7380 curwin->w_cursor.coladd = 0;
7381 }
7382
7383 curwin->w_set_curswant = TRUE;
7384 return OK;
7385 }
7386#endif
7387
7388 if (curwin->w_cursor.col == 0)
7389 return FAIL;
7390
7391 curwin->w_set_curswant = TRUE;
7392 --curwin->w_cursor.col;
7393
7394#ifdef FEAT_MBYTE
7395 /* if the character on the left of the current cursor is a multi-byte
7396 * character, move to its first byte */
7397 if (has_mbyte)
7398 mb_adjust_cursor();
7399#endif
7400 return OK;
7401}
7402
7403 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007404cursor_up(
7405 long n,
7406 int upd_topline) /* When TRUE: update topline */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407{
7408 linenr_T lnum;
7409
7410 if (n > 0)
7411 {
7412 lnum = curwin->w_cursor.lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007413 /* This fails if the cursor is already in the first line or the count
7414 * is larger than the line number and '-' is in 'cpoptions' */
7415 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007416 return FAIL;
7417 if (n >= lnum)
7418 lnum = 1;
7419 else
7420#ifdef FEAT_FOLDING
7421 if (hasAnyFolding(curwin))
7422 {
7423 /*
7424 * Count each sequence of folded lines as one logical line.
7425 */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007426 /* go to the start of the current fold */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007427 (void)hasFolding(lnum, &lnum, NULL);
7428
7429 while (n--)
7430 {
7431 /* move up one line */
7432 --lnum;
7433 if (lnum <= 1)
7434 break;
7435 /* If we entered a fold, move to the beginning, unless in
7436 * Insert mode or when 'foldopen' contains "all": it will open
7437 * in a moment. */
7438 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
7439 (void)hasFolding(lnum, &lnum, NULL);
7440 }
7441 if (lnum < 1)
7442 lnum = 1;
7443 }
7444 else
7445#endif
7446 lnum -= n;
7447 curwin->w_cursor.lnum = lnum;
7448 }
7449
7450 /* try to advance to the column we want to be at */
7451 coladvance(curwin->w_curswant);
7452
7453 if (upd_topline)
7454 update_topline(); /* make sure curwin->w_topline is valid */
7455
7456 return OK;
7457}
7458
7459/*
7460 * Cursor down a number of logical lines.
7461 */
7462 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007463cursor_down(
7464 long n,
7465 int upd_topline) /* When TRUE: update topline */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466{
7467 linenr_T lnum;
7468
7469 if (n > 0)
7470 {
7471 lnum = curwin->w_cursor.lnum;
7472#ifdef FEAT_FOLDING
7473 /* Move to last line of fold, will fail if it's the end-of-file. */
7474 (void)hasFolding(lnum, NULL, &lnum);
7475#endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00007476 /* This fails if the cursor is already in the last line or would move
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007477 * beyond the last line and '-' is in 'cpoptions' */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007478 if (lnum >= curbuf->b_ml.ml_line_count
7479 || (lnum + n > curbuf->b_ml.ml_line_count
7480 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007481 return FAIL;
7482 if (lnum + n >= curbuf->b_ml.ml_line_count)
7483 lnum = curbuf->b_ml.ml_line_count;
7484 else
7485#ifdef FEAT_FOLDING
7486 if (hasAnyFolding(curwin))
7487 {
7488 linenr_T last;
7489
7490 /* count each sequence of folded lines as one logical line */
7491 while (n--)
7492 {
7493 if (hasFolding(lnum, NULL, &last))
7494 lnum = last + 1;
7495 else
7496 ++lnum;
7497 if (lnum >= curbuf->b_ml.ml_line_count)
7498 break;
7499 }
7500 if (lnum > curbuf->b_ml.ml_line_count)
7501 lnum = curbuf->b_ml.ml_line_count;
7502 }
7503 else
7504#endif
7505 lnum += n;
7506 curwin->w_cursor.lnum = lnum;
7507 }
7508
7509 /* try to advance to the column we want to be at */
7510 coladvance(curwin->w_curswant);
7511
7512 if (upd_topline)
7513 update_topline(); /* make sure curwin->w_topline is valid */
7514
7515 return OK;
7516}
7517
7518/*
7519 * Stuff the last inserted text in the read buffer.
7520 * Last_insert actually is a copy of the redo buffer, so we
7521 * first have to remove the command.
7522 */
7523 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007524stuff_inserted(
7525 int c, /* Command character to be inserted */
7526 long count, /* Repeat this many times */
7527 int no_esc) /* Don't add an ESC at the end */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007528{
7529 char_u *esc_ptr;
7530 char_u *ptr;
7531 char_u *last_ptr;
7532 char_u last = NUL;
7533
7534 ptr = get_last_insert();
7535 if (ptr == NULL)
7536 {
7537 EMSG(_(e_noinstext));
7538 return FAIL;
7539 }
7540
7541 /* may want to stuff the command character, to start Insert mode */
7542 if (c != NUL)
7543 stuffcharReadbuff(c);
7544 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
7545 *esc_ptr = NUL; /* remove the ESC */
7546
7547 /* when the last char is either "0" or "^" it will be quoted if no ESC
7548 * comes after it OR if it will inserted more than once and "ptr"
7549 * starts with ^D. -- Acevedo
7550 */
7551 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
7552 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
7553 && (no_esc || (*ptr == Ctrl_D && count > 1)))
7554 {
7555 last = *last_ptr;
7556 *last_ptr = NUL;
7557 }
7558
7559 do
7560 {
7561 stuffReadbuff(ptr);
7562 /* a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^" */
7563 if (last)
7564 stuffReadbuff((char_u *)(last == '0'
7565 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
7566 : IF_EB("\026^", CTRL_V_STR "^")));
7567 }
7568 while (--count > 0);
7569
7570 if (last)
7571 *last_ptr = last;
7572
7573 if (esc_ptr != NULL)
7574 *esc_ptr = ESC; /* put the ESC back */
7575
7576 /* may want to stuff a trailing ESC, to get out of Insert mode */
7577 if (!no_esc)
7578 stuffcharReadbuff(ESC);
7579
7580 return OK;
7581}
7582
7583 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01007584get_last_insert(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585{
7586 if (last_insert == NULL)
7587 return NULL;
7588 return last_insert + last_insert_skip;
7589}
7590
7591/*
7592 * Get last inserted string, and remove trailing <Esc>.
7593 * Returns pointer to allocated memory (must be freed) or NULL.
7594 */
7595 char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +01007596get_last_insert_save(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597{
7598 char_u *s;
7599 int len;
7600
7601 if (last_insert == NULL)
7602 return NULL;
7603 s = vim_strsave(last_insert + last_insert_skip);
7604 if (s != NULL)
7605 {
7606 len = (int)STRLEN(s);
7607 if (len > 0 && s[len - 1] == ESC) /* remove trailing ESC */
7608 s[len - 1] = NUL;
7609 }
7610 return s;
7611}
7612
7613/*
7614 * Check the word in front of the cursor for an abbreviation.
7615 * Called when the non-id character "c" has been entered.
7616 * When an abbreviation is recognized it is removed from the text and
7617 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
7618 */
7619 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007620echeck_abbr(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621{
7622 /* Don't check for abbreviation in paste mode, when disabled and just
7623 * after moving around with cursor keys. */
7624 if (p_paste || no_abbr || arrow_used)
7625 return FALSE;
7626
7627 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
7628 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
7629}
7630
7631/*
7632 * replace-stack functions
7633 *
7634 * When replacing characters, the replaced characters are remembered for each
7635 * new character. This is used to re-insert the old text when backspacing.
7636 *
7637 * There is a NUL headed list of characters for each character that is
7638 * currently in the file after the insertion point. When BS is used, one NUL
7639 * headed list is put back for the deleted character.
7640 *
7641 * For a newline, there are two NUL headed lists. One contains the characters
7642 * that the NL replaced. The extra one stores the characters after the cursor
7643 * that were deleted (always white space).
7644 *
7645 * Replace_offset is normally 0, in which case replace_push will add a new
7646 * character at the end of the stack. If replace_offset is not 0, that many
7647 * characters will be left on the stack above the newly inserted character.
7648 */
7649
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00007650static char_u *replace_stack = NULL;
7651static long replace_stack_nr = 0; /* next entry in replace stack */
7652static long replace_stack_len = 0; /* max. number of entries */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007653
7654 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007655replace_push(
7656 int c) /* character that is replaced (NUL is none) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007657{
7658 char_u *p;
7659
7660 if (replace_stack_nr < replace_offset) /* nothing to do */
7661 return;
7662 if (replace_stack_len <= replace_stack_nr)
7663 {
7664 replace_stack_len += 50;
7665 p = lalloc(sizeof(char_u) * replace_stack_len, TRUE);
7666 if (p == NULL) /* out of memory */
7667 {
7668 replace_stack_len -= 50;
7669 return;
7670 }
7671 if (replace_stack != NULL)
7672 {
7673 mch_memmove(p, replace_stack,
7674 (size_t)(replace_stack_nr * sizeof(char_u)));
7675 vim_free(replace_stack);
7676 }
7677 replace_stack = p;
7678 }
7679 p = replace_stack + replace_stack_nr - replace_offset;
7680 if (replace_offset)
7681 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
7682 *p = c;
7683 ++replace_stack_nr;
7684}
7685
Bram Moolenaar2c994e82008-01-02 16:49:36 +00007686#if defined(FEAT_MBYTE) || defined(PROTO)
7687/*
7688 * Push a character onto the replace stack. Handles a multi-byte character in
7689 * reverse byte order, so that the first byte is popped off first.
7690 * Return the number of bytes done (includes composing characters).
7691 */
7692 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007693replace_push_mb(char_u *p)
Bram Moolenaar2c994e82008-01-02 16:49:36 +00007694{
7695 int l = (*mb_ptr2len)(p);
7696 int j;
7697
7698 for (j = l - 1; j >= 0; --j)
7699 replace_push(p[j]);
7700 return l;
7701}
7702#endif
7703
Bram Moolenaar071d4272004-06-13 20:20:40 +00007704/*
7705 * Pop one item from the replace stack.
7706 * return -1 if stack empty
7707 * return replaced character or NUL otherwise
7708 */
7709 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007710replace_pop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007711{
7712 if (replace_stack_nr == 0)
7713 return -1;
7714 return (int)replace_stack[--replace_stack_nr];
7715}
7716
7717/*
7718 * Join the top two items on the replace stack. This removes to "off"'th NUL
7719 * encountered.
7720 */
7721 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007722replace_join(
7723 int off) /* offset for which NUL to remove */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007724{
7725 int i;
7726
7727 for (i = replace_stack_nr; --i >= 0; )
7728 if (replace_stack[i] == NUL && off-- <= 0)
7729 {
7730 --replace_stack_nr;
7731 mch_memmove(replace_stack + i, replace_stack + i + 1,
7732 (size_t)(replace_stack_nr - i));
7733 return;
7734 }
7735}
7736
7737/*
7738 * Pop bytes from the replace stack until a NUL is found, and insert them
7739 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
7740 */
7741 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007742replace_pop_ins(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007743{
7744 int cc;
7745 int oldState = State;
7746
7747 State = NORMAL; /* don't want REPLACE here */
7748 while ((cc = replace_pop()) > 0)
7749 {
7750#ifdef FEAT_MBYTE
7751 mb_replace_pop_ins(cc);
7752#else
7753 ins_char(cc);
7754#endif
7755 dec_cursor();
7756 }
7757 State = oldState;
7758}
7759
7760#ifdef FEAT_MBYTE
7761/*
7762 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
7763 * indicates a multi-byte char, pop the other bytes too.
7764 */
7765 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007766mb_replace_pop_ins(int cc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767{
7768 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02007769 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007770 int i;
7771 int c;
7772
7773 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
7774 {
7775 buf[0] = cc;
7776 for (i = 1; i < n; ++i)
7777 buf[i] = replace_pop();
7778 ins_bytes_len(buf, n);
7779 }
7780 else
7781 ins_char(cc);
7782
7783 if (enc_utf8)
7784 /* Handle composing chars. */
7785 for (;;)
7786 {
7787 c = replace_pop();
7788 if (c == -1) /* stack empty */
7789 break;
7790 if ((n = MB_BYTE2LEN(c)) == 1)
7791 {
7792 /* Not a multi-byte char, put it back. */
7793 replace_push(c);
7794 break;
7795 }
7796 else
7797 {
7798 buf[0] = c;
7799 for (i = 1; i < n; ++i)
7800 buf[i] = replace_pop();
7801 if (utf_iscomposing(utf_ptr2char(buf)))
7802 ins_bytes_len(buf, n);
7803 else
7804 {
7805 /* Not a composing char, put it back. */
7806 for (i = n - 1; i >= 0; --i)
7807 replace_push(buf[i]);
7808 break;
7809 }
7810 }
7811 }
7812}
7813#endif
7814
7815/*
7816 * make the replace stack empty
7817 * (called when exiting replace mode)
7818 */
7819 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007820replace_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007821{
Bram Moolenaard23a8232018-02-10 18:45:26 +01007822 VIM_CLEAR(replace_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007823 replace_stack_len = 0;
7824 replace_stack_nr = 0;
7825}
7826
7827/*
7828 * Handle doing a BS for one character.
7829 * cc < 0: replace stack empty, just move cursor
7830 * cc == 0: character was inserted, delete it
7831 * cc > 0: character was replaced, put cc (first byte of original char) back
7832 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007833 * When "limit_col" is >= 0, don't delete before this column. Matters when
7834 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007835 */
7836 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007837replace_do_bs(int limit_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007838{
7839 int cc;
7840#ifdef FEAT_VREPLACE
7841 int orig_len = 0;
7842 int ins_len;
7843 int orig_vcols = 0;
7844 colnr_T start_vcol;
7845 char_u *p;
7846 int i;
7847 int vcol;
7848#endif
7849
7850 cc = replace_pop();
7851 if (cc > 0)
7852 {
7853#ifdef FEAT_VREPLACE
7854 if (State & VREPLACE_FLAG)
7855 {
7856 /* Get the number of screen cells used by the character we are
7857 * going to delete. */
7858 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
7859 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
7860 }
7861#endif
7862#ifdef FEAT_MBYTE
7863 if (has_mbyte)
7864 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007865 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007866# ifdef FEAT_VREPLACE
7867 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007868 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007869# endif
7870 replace_push(cc);
7871 }
7872 else
7873#endif
7874 {
7875 pchar_cursor(cc);
7876#ifdef FEAT_VREPLACE
7877 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007878 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007879#endif
7880 }
7881 replace_pop_ins();
7882
7883#ifdef FEAT_VREPLACE
7884 if (State & VREPLACE_FLAG)
7885 {
7886 /* Get the number of screen cells used by the inserted characters */
7887 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007888 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007889 vcol = start_vcol;
7890 for (i = 0; i < ins_len; ++i)
7891 {
7892 vcol += chartabsize(p + i, vcol);
7893#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007894 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007895#endif
7896 }
7897 vcol -= start_vcol;
7898
7899 /* Delete spaces that were inserted after the cursor to keep the
7900 * text aligned. */
7901 curwin->w_cursor.col += ins_len;
7902 while (vcol > orig_vcols && gchar_cursor() == ' ')
7903 {
7904 del_char(FALSE);
7905 ++orig_vcols;
7906 }
7907 curwin->w_cursor.col -= ins_len;
7908 }
7909#endif
7910
7911 /* mark the buffer as changed and prepare for displaying */
7912 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
7913 }
7914 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007915 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007916}
7917
7918#ifdef FEAT_CINDENT
7919/*
7920 * Return TRUE if C-indenting is on.
7921 */
7922 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007923cindent_on(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007924{
7925 return (!p_paste && (curbuf->b_p_cin
7926# ifdef FEAT_EVAL
7927 || *curbuf->b_p_inde != NUL
7928# endif
7929 ));
7930}
7931#endif
7932
7933#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
7934/*
7935 * Re-indent the current line, based on the current contents of it and the
7936 * surrounding lines. Fixing the cursor position seems really easy -- I'm very
7937 * confused what all the part that handles Control-T is doing that I'm not.
7938 * "get_the_indent" should be get_c_indent, get_expr_indent or get_lisp_indent.
7939 */
7940
7941 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007942fixthisline(int (*get_the_indent)(void))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007943{
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +02007944 int amount = get_the_indent();
7945
7946 if (amount >= 0)
7947 {
7948 change_indent(INDENT_SET, amount, FALSE, 0, TRUE);
7949 if (linewhite(curwin->w_cursor.lnum))
7950 did_ai = TRUE; /* delete the indent if the line stays empty */
7951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007952}
7953
7954 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01007955fix_indent(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956{
7957 if (p_paste)
7958 return;
7959# ifdef FEAT_LISP
7960 if (curbuf->b_p_lisp && curbuf->b_p_ai)
7961 fixthisline(get_lisp_indent);
7962# endif
7963# if defined(FEAT_LISP) && defined(FEAT_CINDENT)
7964 else
7965# endif
7966# ifdef FEAT_CINDENT
7967 if (cindent_on())
7968 do_c_expr_indent();
7969# endif
7970}
7971
7972#endif
7973
7974#ifdef FEAT_CINDENT
7975/*
7976 * return TRUE if 'cinkeys' contains the key "keytyped",
7977 * when == '*': Only if key is preceded with '*' (indent before insert)
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007978 * when == '!': Only if key is preceded with '!' (don't insert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007979 * when == ' ': Only if key is not preceded with '*'(indent afterwards)
7980 *
7981 * "keytyped" can have a few special values:
7982 * KEY_OPEN_FORW
7983 * KEY_OPEN_BACK
7984 * KEY_COMPLETE just finished completion.
7985 *
7986 * If line_is_empty is TRUE accept keys with '0' before them.
7987 */
7988 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01007989in_cinkeys(
7990 int keytyped,
7991 int when,
7992 int line_is_empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007993{
7994 char_u *look;
7995 int try_match;
7996 int try_match_word;
7997 char_u *p;
7998 char_u *line;
7999 int icase;
8000 int i;
8001
Bram Moolenaar30848942009-12-24 14:46:12 +00008002 if (keytyped == NUL)
8003 /* Can happen with CTRL-Y and CTRL-E on a short line. */
8004 return FALSE;
8005
Bram Moolenaar071d4272004-06-13 20:20:40 +00008006#ifdef FEAT_EVAL
8007 if (*curbuf->b_p_inde != NUL)
8008 look = curbuf->b_p_indk; /* 'indentexpr' set: use 'indentkeys' */
8009 else
8010#endif
8011 look = curbuf->b_p_cink; /* 'indentexpr' empty: use 'cinkeys' */
8012 while (*look)
8013 {
8014 /*
8015 * Find out if we want to try a match with this key, depending on
8016 * 'when' and a '*' or '!' before the key.
8017 */
8018 switch (when)
8019 {
8020 case '*': try_match = (*look == '*'); break;
8021 case '!': try_match = (*look == '!'); break;
8022 default: try_match = (*look != '*'); break;
8023 }
8024 if (*look == '*' || *look == '!')
8025 ++look;
8026
8027 /*
8028 * If there is a '0', only accept a match if the line is empty.
8029 * But may still match when typing last char of a word.
8030 */
8031 if (*look == '0')
8032 {
8033 try_match_word = try_match;
8034 if (!line_is_empty)
8035 try_match = FALSE;
8036 ++look;
8037 }
8038 else
8039 try_match_word = FALSE;
8040
8041 /*
8042 * does it look like a control character?
8043 */
8044 if (*look == '^'
8045#ifdef EBCDIC
8046 && (Ctrl_chr(look[1]) != 0)
8047#else
8048 && look[1] >= '?' && look[1] <= '_'
8049#endif
8050 )
8051 {
8052 if (try_match && keytyped == Ctrl_chr(look[1]))
8053 return TRUE;
8054 look += 2;
8055 }
8056 /*
8057 * 'o' means "o" command, open forward.
8058 * 'O' means "O" command, open backward.
8059 */
8060 else if (*look == 'o')
8061 {
8062 if (try_match && keytyped == KEY_OPEN_FORW)
8063 return TRUE;
8064 ++look;
8065 }
8066 else if (*look == 'O')
8067 {
8068 if (try_match && keytyped == KEY_OPEN_BACK)
8069 return TRUE;
8070 ++look;
8071 }
8072
8073 /*
8074 * 'e' means to check for "else" at start of line and just before the
8075 * cursor.
8076 */
8077 else if (*look == 'e')
8078 {
8079 if (try_match && keytyped == 'e' && curwin->w_cursor.col >= 4)
8080 {
8081 p = ml_get_curline();
8082 if (skipwhite(p) == p + curwin->w_cursor.col - 4 &&
8083 STRNCMP(p + curwin->w_cursor.col - 4, "else", 4) == 0)
8084 return TRUE;
8085 }
8086 ++look;
8087 }
8088
8089 /*
8090 * ':' only causes an indent if it is at the end of a label or case
8091 * statement, or when it was before typing the ':' (to fix
8092 * class::method for C++).
8093 */
8094 else if (*look == ':')
8095 {
8096 if (try_match && keytyped == ':')
8097 {
8098 p = ml_get_curline();
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008099 if (cin_iscase(p, FALSE) || cin_isscopedecl(p) || cin_islabel())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008100 return TRUE;
Bram Moolenaar30118152007-06-28 10:49:22 +00008101 /* Need to get the line again after cin_islabel(). */
8102 p = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008103 if (curwin->w_cursor.col > 2
8104 && p[curwin->w_cursor.col - 1] == ':'
8105 && p[curwin->w_cursor.col - 2] == ':')
8106 {
8107 p[curwin->w_cursor.col - 1] = ' ';
Bram Moolenaar3acfc302010-07-11 17:23:02 +02008108 i = (cin_iscase(p, FALSE) || cin_isscopedecl(p)
Bram Moolenaar84dbb622013-11-06 04:01:36 +01008109 || cin_islabel());
Bram Moolenaar071d4272004-06-13 20:20:40 +00008110 p = ml_get_curline();
8111 p[curwin->w_cursor.col - 1] = ':';
8112 if (i)
8113 return TRUE;
8114 }
8115 }
8116 ++look;
8117 }
8118
8119
8120 /*
8121 * Is it a key in <>, maybe?
8122 */
8123 else if (*look == '<')
8124 {
8125 if (try_match)
8126 {
8127 /*
8128 * make up some named keys <o>, <O>, <e>, <0>, <>>, <<>, <*>,
8129 * <:> and <!> so that people can re-indent on o, O, e, 0, <,
8130 * >, *, : and ! keys if they really really want to.
8131 */
8132 if (vim_strchr((char_u *)"<>!*oOe0:", look[1]) != NULL
8133 && keytyped == look[1])
8134 return TRUE;
8135
8136 if (keytyped == get_special_key_code(look + 1))
8137 return TRUE;
8138 }
8139 while (*look && *look != '>')
8140 look++;
8141 while (*look == '>')
8142 look++;
8143 }
8144
8145 /*
8146 * Is it a word: "=word"?
8147 */
8148 else if (*look == '=' && look[1] != ',' && look[1] != NUL)
8149 {
8150 ++look;
8151 if (*look == '~')
8152 {
8153 icase = TRUE;
8154 ++look;
8155 }
8156 else
8157 icase = FALSE;
8158 p = vim_strchr(look, ',');
8159 if (p == NULL)
8160 p = look + STRLEN(look);
8161 if ((try_match || try_match_word)
8162 && curwin->w_cursor.col >= (colnr_T)(p - look))
8163 {
8164 int match = FALSE;
8165
8166#ifdef FEAT_INS_EXPAND
8167 if (keytyped == KEY_COMPLETE)
8168 {
8169 char_u *s;
8170
8171 /* Just completed a word, check if it starts with "look".
8172 * search back for the start of a word. */
8173 line = ml_get_curline();
8174# ifdef FEAT_MBYTE
8175 if (has_mbyte)
8176 {
8177 char_u *n;
8178
8179 for (s = line + curwin->w_cursor.col; s > line; s = n)
8180 {
8181 n = mb_prevptr(line, s);
8182 if (!vim_iswordp(n))
8183 break;
8184 }
8185 }
8186 else
8187# endif
8188 for (s = line + curwin->w_cursor.col; s > line; --s)
8189 if (!vim_iswordc(s[-1]))
8190 break;
8191 if (s + (p - look) <= line + curwin->w_cursor.col
8192 && (icase
8193 ? MB_STRNICMP(s, look, p - look)
8194 : STRNCMP(s, look, p - look)) == 0)
8195 match = TRUE;
8196 }
8197 else
8198#endif
8199 /* TODO: multi-byte */
8200 if (keytyped == (int)p[-1] || (icase && keytyped < 256
8201 && TOLOWER_LOC(keytyped) == TOLOWER_LOC((int)p[-1])))
8202 {
8203 line = ml_get_cursor();
8204 if ((curwin->w_cursor.col == (colnr_T)(p - look)
8205 || !vim_iswordc(line[-(p - look) - 1]))
8206 && (icase
8207 ? MB_STRNICMP(line - (p - look), look, p - look)
8208 : STRNCMP(line - (p - look), look, p - look))
8209 == 0)
8210 match = TRUE;
8211 }
8212 if (match && try_match_word && !try_match)
8213 {
8214 /* "0=word": Check if there are only blanks before the
8215 * word. */
Bram Moolenaar1b383442017-09-26 20:04:54 +02008216 if (getwhitecols_curline() !=
Bram Moolenaar071d4272004-06-13 20:20:40 +00008217 (int)(curwin->w_cursor.col - (p - look)))
8218 match = FALSE;
8219 }
8220 if (match)
8221 return TRUE;
8222 }
8223 look = p;
8224 }
8225
8226 /*
8227 * ok, it's a boring generic character.
8228 */
8229 else
8230 {
8231 if (try_match && *look == keytyped)
8232 return TRUE;
Bram Moolenaar60629d62017-02-23 18:08:56 +01008233 if (*look != NUL)
8234 ++look;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008235 }
8236
8237 /*
8238 * Skip over ", ".
8239 */
8240 look = skip_to_option_part(look);
8241 }
8242 return FALSE;
8243}
8244#endif /* FEAT_CINDENT */
8245
8246#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
8247/*
8248 * Map Hebrew keyboard when in hkmap mode.
8249 */
8250 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01008251hkmap(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008252{
8253 if (p_hkmapp) /* phonetic mapping, by Ilya Dogolazky */
8254 {
8255 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
8256 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
8257 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
8258 static char_u map[26] =
8259 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
8260 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
8261 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
8262 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
8263 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
8264 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
8265 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
8266 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
8267 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
8268
8269 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
8270 return (int)(map[CharOrd(c)] - 1 + p_aleph);
8271 /* '-1'='sofit' */
8272 else if (c == 'x')
8273 return 'X';
8274 else if (c == 'q')
8275 return '\''; /* {geresh}={'} */
8276 else if (c == 246)
8277 return ' '; /* \"o --> ' ' for a german keyboard */
8278 else if (c == 228)
8279 return ' '; /* \"a --> ' ' -- / -- */
8280 else if (c == 252)
8281 return ' '; /* \"u --> ' ' -- / -- */
8282#ifdef EBCDIC
8283 else if (islower(c))
8284#else
8285 /* NOTE: islower() does not do the right thing for us on Linux so we
8286 * do this the same was as 5.7 and previous, so it works correctly on
8287 * all systems. Specifically, the e.g. Delete and Arrow keys are
8288 * munged and won't work if e.g. searching for Hebrew text.
8289 */
8290 else if (c >= 'a' && c <= 'z')
8291#endif
8292 return (int)(map[CharOrdLow(c)] + p_aleph);
8293 else
8294 return c;
8295 }
8296 else
8297 {
8298 switch (c)
8299 {
8300 case '`': return ';';
8301 case '/': return '.';
8302 case '\'': return ',';
8303 case 'q': return '/';
8304 case 'w': return '\'';
8305
8306 /* Hebrew letters - set offset from 'a' */
8307 case ',': c = '{'; break;
8308 case '.': c = 'v'; break;
8309 case ';': c = 't'; break;
8310 default: {
8311 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
8312
8313#ifdef EBCDIC
8314 /* see note about islower() above */
8315 if (!islower(c))
8316#else
8317 if (c < 'a' || c > 'z')
8318#endif
8319 return c;
8320 c = str[CharOrdLow(c)];
8321 break;
8322 }
8323 }
8324
8325 return (int)(CharOrdLow(c) + p_aleph);
8326 }
8327}
8328#endif
8329
8330 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008331ins_reg(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008332{
8333 int need_redraw = FALSE;
8334 int regname;
8335 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008336 int vis_active = VIsual_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008337
8338 /*
8339 * If we are going to wait for a character, show a '"'.
8340 */
8341 pc_status = PC_STATUS_UNSET;
8342 if (redrawing() && !char_avail())
8343 {
8344 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00008345 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008346
8347 edit_putchar('"', TRUE);
8348#ifdef FEAT_CMDL_INFO
8349 add_to_showcmd_c(Ctrl_R);
8350#endif
8351 }
8352
8353#ifdef USE_ON_FLY_SCROLL
8354 dont_scroll = TRUE; /* disallow scrolling here */
8355#endif
8356
8357 /*
8358 * Don't map the register name. This also prevents the mode message to be
8359 * deleted when ESC is hit.
8360 */
8361 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008362 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008363 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008364 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
8365 {
8366 /* Get a third key for literal register insertion */
8367 literally = regname;
8368#ifdef FEAT_CMDL_INFO
8369 add_to_showcmd_c(literally);
8370#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008371 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008372 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008373 }
8374 --no_mapping;
8375
8376#ifdef FEAT_EVAL
Bram Moolenaardf9259a2013-06-15 17:54:43 +02008377 /* Don't call u_sync() while typing the expression or giving an error
8378 * message for it. Only call it explicitly. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008379 ++no_u_sync;
8380 if (regname == '=')
8381 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01008382# ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00008383 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008384# endif
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02008385 /* Sync undo when evaluating the expression calls setline() or
8386 * append(), so that it can be undone separately. */
8387 u_sync_once = 2;
Bram Moolenaar5737ca22013-06-27 22:21:24 +02008388
Bram Moolenaar071d4272004-06-13 20:20:40 +00008389 regname = get_expr_register();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01008390# ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00008391 /* Restore the Input Method. */
8392 if (im_on)
8393 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008394# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008395 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00008396 if (regname == NUL || !valid_yank_reg(regname, FALSE))
8397 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02008398 vim_beep(BO_REG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008399 need_redraw = TRUE; /* remove the '"' */
Bram Moolenaar677ee682005-01-27 14:41:15 +00008400 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008401 else
8402 {
8403#endif
8404 if (literally == Ctrl_O || literally == Ctrl_P)
8405 {
8406 /* Append the command to the redo buffer. */
8407 AppendCharToRedobuff(Ctrl_R);
8408 AppendCharToRedobuff(literally);
8409 AppendCharToRedobuff(regname);
8410
8411 do_put(regname, BACKWARD, 1L,
8412 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
8413 }
8414 else if (insert_reg(regname, literally) == FAIL)
8415 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02008416 vim_beep(BO_REG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008417 need_redraw = TRUE; /* remove the '"' */
8418 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008419 else if (stop_insert_mode)
8420 /* When the '=' register was used and a function was invoked that
8421 * did ":stopinsert" then stuff_empty() returns FALSE but we won't
8422 * insert anything, need to remove the '"' */
8423 need_redraw = TRUE;
8424
Bram Moolenaar071d4272004-06-13 20:20:40 +00008425#ifdef FEAT_EVAL
8426 }
8427 --no_u_sync;
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02008428 if (u_sync_once == 1)
8429 ins_need_undo = TRUE;
8430 u_sync_once = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008431#endif
8432#ifdef FEAT_CMDL_INFO
8433 clear_showcmd();
8434#endif
8435
8436 /* If the inserted register is empty, we need to remove the '"' */
8437 if (need_redraw || stuff_empty())
8438 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008439
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008440 /* Disallow starting Visual mode here, would get a weird mode. */
8441 if (!vis_active && VIsual_active)
8442 end_visual_mode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443}
8444
8445/*
8446 * CTRL-G commands in Insert mode.
8447 */
8448 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008449ins_ctrl_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008450{
8451 int c;
8452
8453#ifdef FEAT_INS_EXPAND
8454 /* Right after CTRL-X the cursor will be after the ruler. */
8455 setcursor();
8456#endif
8457
8458 /*
8459 * Don't map the second key. This also prevents the mode message to be
8460 * deleted when ESC is hit.
8461 */
8462 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008463 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008464 --no_mapping;
8465 switch (c)
8466 {
8467 /* CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col */
8468 case K_UP:
8469 case Ctrl_K:
8470 case 'k': ins_up(TRUE);
8471 break;
8472
8473 /* CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col */
8474 case K_DOWN:
8475 case Ctrl_J:
8476 case 'j': ins_down(TRUE);
8477 break;
8478
8479 /* CTRL-G u: start new undoable edit */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008480 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008481 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00008482
8483 /* Need to reset Insstart, esp. because a BS that joins
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00008484 * a line to the previous one must save for undo. */
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01008485 update_Insstart_orig = FALSE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00008486 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008487 break;
8488
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02008489 /* CTRL-G U: do not break undo with the next char */
8490 case 'U':
8491 /* Allow one left/right cursor movement with the next char,
8492 * without breaking undo. */
8493 dont_sync_undo = MAYBE;
8494 break;
8495
Bram Moolenaar071d4272004-06-13 20:20:40 +00008496 /* Unknown CTRL-G command, reserved for future expansion. */
Bram Moolenaar165bc692015-07-21 17:53:25 +02008497 default: vim_beep(BO_CTRLG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008498 }
8499}
8500
8501/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008502 * CTRL-^ in Insert mode.
8503 */
8504 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008505ins_ctrl_hat(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008506{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00008507 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008508 {
8509 /* ":lmap" mappings exists, Toggle use of ":lmap" mappings. */
8510 if (State & LANGMAP)
8511 {
8512 curbuf->b_p_iminsert = B_IMODE_NONE;
8513 State &= ~LANGMAP;
8514 }
8515 else
8516 {
8517 curbuf->b_p_iminsert = B_IMODE_LMAP;
8518 State |= LANGMAP;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01008519#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008520 im_set_active(FALSE);
8521#endif
8522 }
8523 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01008524#ifdef HAVE_INPUT_METHOD
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008525 else
8526 {
8527 /* There are no ":lmap" mappings, toggle IM */
8528 if (im_get_status())
8529 {
8530 curbuf->b_p_iminsert = B_IMODE_NONE;
8531 im_set_active(FALSE);
8532 }
8533 else
8534 {
8535 curbuf->b_p_iminsert = B_IMODE_IM;
8536 State &= ~LANGMAP;
8537 im_set_active(TRUE);
8538 }
8539 }
8540#endif
8541 set_iminsert_global();
8542 showmode();
8543#ifdef FEAT_GUI
8544 /* may show different cursor shape or color */
8545 if (gui.in_use)
8546 gui_update_cursor(TRUE, FALSE);
8547#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02008548#if defined(FEAT_KEYMAP)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008549 /* Show/unshow value of 'keymap' in status lines. */
8550 status_redraw_curbuf();
8551#endif
8552}
8553
8554/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008555 * Handle ESC in insert mode.
8556 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
8557 * insert.
8558 */
8559 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01008560ins_esc(
8561 long *count,
8562 int cmdchar,
8563 int nomove) /* don't move cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008564{
8565 int temp;
8566 static int disabled_redraw = FALSE;
8567
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00008568#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008569 check_spell_redraw();
8570#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008571#if defined(FEAT_HANGULIN)
8572# if defined(ESC_CHG_TO_ENG_MODE)
8573 hangul_input_state_set(0);
8574# endif
8575 if (composing_hangul)
8576 {
8577 push_raw_key(composing_hangul_buffer, 2);
8578 composing_hangul = 0;
8579 }
8580#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008581
8582 temp = curwin->w_cursor.col;
8583 if (disabled_redraw)
8584 {
8585 --RedrawingDisabled;
8586 disabled_redraw = FALSE;
8587 }
8588 if (!arrow_used)
8589 {
8590 /*
8591 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00008592 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
8593 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008594 */
8595 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00008596 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008597
8598 /*
8599 * Repeating insert may take a long time. Check for
8600 * interrupt now and then.
8601 */
8602 if (*count > 0)
8603 {
8604 line_breakcheck();
8605 if (got_int)
8606 *count = 0;
8607 }
8608
8609 if (--*count > 0) /* repeat what was typed */
8610 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00008611 /* Vi repeats the insert without replacing characters. */
8612 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
8613 State &= ~REPLACE_FLAG;
8614
Bram Moolenaar071d4272004-06-13 20:20:40 +00008615 (void)start_redo_ins();
8616 if (cmdchar == 'r' || cmdchar == 'v')
Bram Moolenaar4f5ce332014-07-30 16:00:58 +02008617 stuffRedoReadbuff(ESC_STR); /* no ESC in redo buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008618 ++RedrawingDisabled;
8619 disabled_redraw = TRUE;
8620 return FALSE; /* repeat the insert */
8621 }
Bram Moolenaarf332a652013-11-04 04:20:33 +01008622 stop_insert(&curwin->w_cursor, TRUE, nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008623 undisplay_dollar();
8624 }
8625
8626 /* When an autoindent was removed, curswant stays after the
8627 * indent */
8628 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
8629 curwin->w_set_curswant = TRUE;
8630
8631 /* Remember the last Insert position in the '^ mark. */
8632 if (!cmdmod.keepjumps)
8633 curbuf->b_last_insert = curwin->w_cursor;
8634
8635 /*
8636 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00008637 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008638 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00008639 if (!nomove
8640 && (curwin->w_cursor.col != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00008641#ifdef FEAT_VIRTUALEDIT
8642 || curwin->w_cursor.coladd > 0
8643#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00008644 )
8645 && (restart_edit == NUL
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008646 || (gchar_cursor() == NUL && !VIsual_active))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008647#ifdef FEAT_RIGHTLEFT
8648 && !revins_on
8649#endif
8650 )
8651 {
8652#ifdef FEAT_VIRTUALEDIT
8653 if (curwin->w_cursor.coladd > 0 || ve_flags == VE_ALL)
8654 {
8655 oneleft();
8656 if (restart_edit != NUL)
8657 ++curwin->w_cursor.coladd;
8658 }
8659 else
8660#endif
8661 {
8662 --curwin->w_cursor.col;
8663#ifdef FEAT_MBYTE
8664 /* Correct cursor for multi-byte character. */
8665 if (has_mbyte)
8666 mb_adjust_cursor();
8667#endif
8668 }
8669 }
8670
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01008671#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00008672 /* Disable IM to allow typing English directly for Normal mode commands.
8673 * When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
8674 * well). */
8675 if (!(State & LANGMAP))
8676 im_save_status(&curbuf->b_p_iminsert);
8677 im_set_active(FALSE);
8678#endif
8679
8680 State = NORMAL;
8681 /* need to position cursor again (e.g. when on a TAB ) */
8682 changed_cline_bef_curs();
8683
8684#ifdef FEAT_MOUSE
8685 setmouse();
8686#endif
8687#ifdef CURSOR_SHAPE
8688 ui_cursor_shape(); /* may show different cursor shape */
8689#endif
Bram Moolenaar48c9f3b2017-01-24 19:08:15 +01008690 if (!p_ek)
8691 /* Re-enable bracketed paste mode. */
8692 out_str(T_BE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008693
8694 /*
8695 * When recording or for CTRL-O, need to display the new mode.
8696 * Otherwise remove the mode message.
8697 */
8698 if (Recording || restart_edit != NUL)
8699 showmode();
8700 else if (p_smd)
8701 MSG("");
8702
8703 return TRUE; /* exit Insert mode */
8704}
8705
8706#ifdef FEAT_RIGHTLEFT
8707/*
8708 * Toggle language: hkmap and revins_on.
8709 * Move to end of reverse inserted text.
8710 */
8711 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008712ins_ctrl_(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008713{
8714 if (revins_on && revins_chars && revins_scol >= 0)
8715 {
8716 while (gchar_cursor() != NUL && revins_chars--)
8717 ++curwin->w_cursor.col;
8718 }
8719 p_ri = !p_ri;
8720 revins_on = (State == INSERT && p_ri);
8721 if (revins_on)
8722 {
8723 revins_scol = curwin->w_cursor.col;
8724 revins_legal++;
8725 revins_chars = 0;
8726 undisplay_dollar();
8727 }
8728 else
8729 revins_scol = -1;
8730#ifdef FEAT_FKMAP
8731 if (p_altkeymap)
8732 {
8733 /*
8734 * to be consistent also for redo command, using '.'
8735 * set arrow_used to true and stop it - causing to redo
8736 * characters entered in one mode (normal/reverse insert).
8737 */
8738 arrow_used = TRUE;
8739 (void)stop_arrow();
8740 p_fkmap = curwin->w_p_rl ^ p_ri;
8741 if (p_fkmap && p_ri)
8742 State = INSERT;
8743 }
8744 else
8745#endif
8746 p_hkmap = curwin->w_p_rl ^ p_ri; /* be consistent! */
8747 showmode();
8748}
8749#endif
8750
Bram Moolenaar071d4272004-06-13 20:20:40 +00008751/*
8752 * If 'keymodel' contains "startsel", may start selection.
8753 * Returns TRUE when a CTRL-O and other keys stuffed.
8754 */
8755 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01008756ins_start_select(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008757{
8758 if (km_startsel)
8759 switch (c)
8760 {
8761 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008762 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008763 case K_PAGEUP:
8764 case K_KPAGEUP:
8765 case K_PAGEDOWN:
8766 case K_KPAGEDOWN:
Bram Moolenaard0573012017-10-28 21:11:06 +02008767# ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00008768 case K_LEFT:
8769 case K_RIGHT:
8770 case K_UP:
8771 case K_DOWN:
8772 case K_END:
8773 case K_HOME:
8774# endif
8775 if (!(mod_mask & MOD_MASK_SHIFT))
8776 break;
8777 /* FALLTHROUGH */
8778 case K_S_LEFT:
8779 case K_S_RIGHT:
8780 case K_S_UP:
8781 case K_S_DOWN:
8782 case K_S_END:
8783 case K_S_HOME:
8784 /* Start selection right away, the cursor can move with
8785 * CTRL-O when beyond the end of the line. */
8786 start_selection();
8787
8788 /* Execute the key in (insert) Select mode. */
8789 stuffcharReadbuff(Ctrl_O);
8790 if (mod_mask)
8791 {
8792 char_u buf[4];
8793
8794 buf[0] = K_SPECIAL;
8795 buf[1] = KS_MODIFIER;
8796 buf[2] = mod_mask;
8797 buf[3] = NUL;
8798 stuffReadbuff(buf);
8799 }
8800 stuffcharReadbuff(c);
8801 return TRUE;
8802 }
8803 return FALSE;
8804}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008805
8806/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02008807 * <Insert> key in Insert mode: toggle insert/replace mode.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008808 */
8809 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008810ins_insert(int replaceState)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008811{
8812#ifdef FEAT_FKMAP
8813 if (p_fkmap && p_ri)
8814 {
8815 beep_flush();
8816 EMSG(farsi_text_3); /* encoded in Farsi */
8817 return;
8818 }
8819#endif
8820
Bram Moolenaar1e015462005-09-25 22:16:38 +00008821# ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008822 set_vim_var_string(VV_INSERTMODE,
8823 (char_u *)((State & REPLACE_FLAG) ? "i" :
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008824# ifdef FEAT_VREPLACE
8825 replaceState == VREPLACE ? "v" :
8826# endif
8827 "r"), 1);
Bram Moolenaar1e015462005-09-25 22:16:38 +00008828# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008829 apply_autocmds(EVENT_INSERTCHANGE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008830 if (State & REPLACE_FLAG)
8831 State = INSERT | (State & LANGMAP);
8832 else
8833 State = replaceState | (State & LANGMAP);
8834 AppendCharToRedobuff(K_INS);
8835 showmode();
8836#ifdef CURSOR_SHAPE
8837 ui_cursor_shape(); /* may show different cursor shape */
8838#endif
8839}
8840
8841/*
8842 * Pressed CTRL-O in Insert mode.
8843 */
8844 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008845ins_ctrl_o(void)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008846{
8847#ifdef FEAT_VREPLACE
8848 if (State & VREPLACE_FLAG)
8849 restart_edit = 'V';
8850 else
8851#endif
8852 if (State & REPLACE_FLAG)
8853 restart_edit = 'R';
8854 else
8855 restart_edit = 'I';
8856#ifdef FEAT_VIRTUALEDIT
8857 if (virtual_active())
8858 ins_at_eol = FALSE; /* cursor always keeps its column */
8859 else
8860#endif
8861 ins_at_eol = (gchar_cursor() == NUL);
8862}
8863
8864/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008865 * If the cursor is on an indent, ^T/^D insert/delete one
8866 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00008867 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00008868 * with vi. But vi only supports ^T and ^D after an
8869 * autoindent, we support it everywhere.
8870 */
8871 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008872ins_shift(int c, int lastc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008873{
8874 if (stop_arrow() == FAIL)
8875 return;
8876 AppendCharToRedobuff(c);
8877
8878 /*
8879 * 0^D and ^^D: remove all indent.
8880 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00008881 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
8882 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008883 {
8884 --curwin->w_cursor.col;
8885 (void)del_char(FALSE); /* delete the '^' or '0' */
8886 /* In Replace mode, restore the characters that '^' or '0' replaced. */
8887 if (State & REPLACE_FLAG)
8888 replace_pop_ins();
8889 if (lastc == '^')
8890 old_indent = get_indent(); /* remember curr. indent */
Bram Moolenaar21b17e72008-01-16 19:03:13 +00008891 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008892 }
8893 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00008894 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008895
8896 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
8897 did_ai = FALSE;
8898#ifdef FEAT_SMARTINDENT
8899 did_si = FALSE;
8900 can_si = FALSE;
8901 can_si_back = FALSE;
8902#endif
8903#ifdef FEAT_CINDENT
8904 can_cindent = FALSE; /* no cindenting after ^D or ^T */
8905#endif
8906}
8907
8908 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008909ins_del(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008910{
8911 int temp;
8912
8913 if (stop_arrow() == FAIL)
8914 return;
8915 if (gchar_cursor() == NUL) /* delete newline */
8916 {
8917 temp = curwin->w_cursor.col;
8918 if (!can_bs(BS_EOL) /* only if "eol" included */
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02008919 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar165bc692015-07-21 17:53:25 +02008920 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008921 else
Bram Moolenaar63e82db2018-03-06 12:10:48 +01008922 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008923 curwin->w_cursor.col = temp;
Bram Moolenaar63e82db2018-03-06 12:10:48 +01008924#ifdef FEAT_VREPLACE
8925 /* Adjust orig_line_count in case more lines have been deleted than
8926 * have been added. That makes sure, that open_line() later
8927 * can access all buffer lines correctly */
8928 if (State & VREPLACE_FLAG &&
8929 orig_line_count > curbuf->b_ml.ml_line_count)
8930 orig_line_count = curbuf->b_ml.ml_line_count;
8931#endif
8932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008933 }
Bram Moolenaar165bc692015-07-21 17:53:25 +02008934 else if (del_char(FALSE) == FAIL) /* delete char under cursor */
8935 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008936 did_ai = FALSE;
8937#ifdef FEAT_SMARTINDENT
8938 did_si = FALSE;
8939 can_si = FALSE;
8940 can_si_back = FALSE;
8941#endif
8942 AppendCharToRedobuff(K_DEL);
8943}
8944
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01008945static void ins_bs_one(colnr_T *vcolp);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008946
8947/*
8948 * Delete one character for ins_bs().
8949 */
8950 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01008951ins_bs_one(colnr_T *vcolp)
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008952{
8953 dec_cursor();
8954 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
8955 if (State & REPLACE_FLAG)
8956 {
8957 /* Don't delete characters before the insert point when in
8958 * Replace mode */
8959 if (curwin->w_cursor.lnum != Insstart.lnum
8960 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00008961 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008962 }
8963 else
8964 (void)del_char(FALSE);
8965}
8966
Bram Moolenaar071d4272004-06-13 20:20:40 +00008967/*
8968 * Handle Backspace, delete-word and delete-line in Insert mode.
8969 * Return TRUE when backspace was actually used.
8970 */
8971 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01008972ins_bs(
8973 int c,
8974 int mode,
8975 int *inserted_space_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008976{
8977 linenr_T lnum;
8978 int cc;
8979 int temp = 0; /* init for GCC */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008980 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008981 colnr_T mincol;
8982 int did_backspace = FALSE;
8983 int in_indent;
8984 int oldState;
8985#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008986 int cpc[MAX_MCO]; /* composing characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008987#endif
8988
8989 /*
8990 * can't delete anything in an empty file
8991 * can't backup past first character in buffer
8992 * can't backup past starting point unless 'backspace' > 1
8993 * can backup to a previous line if 'backspace' == 0
8994 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01008995 if ( BUFEMPTY()
Bram Moolenaar071d4272004-06-13 20:20:40 +00008996 || (
8997#ifdef FEAT_RIGHTLEFT
8998 !revins_on &&
8999#endif
9000 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
9001 || (!can_bs(BS_START)
9002 && (arrow_used
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02009003 || (curwin->w_cursor.lnum == Insstart_orig.lnum
9004 && curwin->w_cursor.col <= Insstart_orig.col)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009005 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
9006 && curwin->w_cursor.col <= ai_col)
9007 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
9008 {
Bram Moolenaar165bc692015-07-21 17:53:25 +02009009 vim_beep(BO_BS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009010 return FALSE;
9011 }
9012
9013 if (stop_arrow() == FAIL)
9014 return FALSE;
9015 in_indent = inindent(0);
9016#ifdef FEAT_CINDENT
9017 if (in_indent)
9018 can_cindent = FALSE;
9019#endif
9020#ifdef FEAT_COMMENTS
9021 end_comment_pending = NUL; /* After BS, don't auto-end comment */
9022#endif
9023#ifdef FEAT_RIGHTLEFT
9024 if (revins_on) /* put cursor after last inserted char */
9025 inc_cursor();
9026#endif
9027
9028#ifdef FEAT_VIRTUALEDIT
9029 /* Virtualedit:
9030 * BACKSPACE_CHAR eats a virtual space
9031 * BACKSPACE_WORD eats all coladd
9032 * BACKSPACE_LINE eats all coladd and keeps going
9033 */
9034 if (curwin->w_cursor.coladd > 0)
9035 {
9036 if (mode == BACKSPACE_CHAR)
9037 {
9038 --curwin->w_cursor.coladd;
9039 return TRUE;
9040 }
9041 if (mode == BACKSPACE_WORD)
9042 {
9043 curwin->w_cursor.coladd = 0;
9044 return TRUE;
9045 }
9046 curwin->w_cursor.coladd = 0;
9047 }
9048#endif
9049
9050 /*
Bram Moolenaar878c2632017-04-01 15:15:52 +02009051 * Delete newline!
Bram Moolenaar071d4272004-06-13 20:20:40 +00009052 */
9053 if (curwin->w_cursor.col == 0)
9054 {
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01009055 lnum = Insstart.lnum;
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02009056 if (curwin->w_cursor.lnum == lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00009057#ifdef FEAT_RIGHTLEFT
9058 || revins_on
9059#endif
9060 )
9061 {
9062 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
9063 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
9064 return FALSE;
Bram Moolenaarc3bbad02015-02-17 17:50:26 +01009065 --Insstart.lnum;
Bram Moolenaar04000562017-04-03 21:35:42 +02009066 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009067 }
9068 /*
9069 * In replace mode:
9070 * cc < 0: NL was inserted, delete it
9071 * cc >= 0: NL was replaced, put original characters back
9072 */
9073 cc = -1;
9074 if (State & REPLACE_FLAG)
9075 cc = replace_pop(); /* returns -1 if NL was inserted */
9076 /*
9077 * In replace mode, in the line we started replacing, we only move the
9078 * cursor.
9079 */
9080 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
9081 {
9082 dec_cursor();
9083 }
9084 else
9085 {
9086#ifdef FEAT_VREPLACE
9087 if (!(State & VREPLACE_FLAG)
9088 || curwin->w_cursor.lnum > orig_line_count)
9089#endif
9090 {
9091 temp = gchar_cursor(); /* remember current char */
9092 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00009093
9094 /* When "aw" is in 'formatoptions' we must delete the space at
9095 * the end of the line, otherwise the line will be broken
9096 * again when auto-formatting. */
9097 if (has_format_option(FO_AUTO)
9098 && has_format_option(FO_WHITE_PAR))
9099 {
9100 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
9101 TRUE);
9102 int len;
9103
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009104 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00009105 if (len > 0 && ptr[len - 1] == ' ')
9106 ptr[len - 1] = NUL;
9107 }
9108
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02009109 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009110 if (temp == NUL && gchar_cursor() != NUL)
9111 inc_cursor();
9112 }
9113#ifdef FEAT_VREPLACE
9114 else
9115 dec_cursor();
9116#endif
9117
9118 /*
9119 * In REPLACE mode we have to put back the text that was replaced
9120 * by the NL. On the replace stack is first a NUL-terminated
9121 * sequence of characters that were deleted and then the
9122 * characters that NL replaced.
9123 */
9124 if (State & REPLACE_FLAG)
9125 {
9126 /*
9127 * Do the next ins_char() in NORMAL state, to
9128 * prevent ins_char() from replacing characters and
9129 * avoiding showmatch().
9130 */
9131 oldState = State;
9132 State = NORMAL;
9133 /*
9134 * restore characters (blanks) deleted after cursor
9135 */
9136 while (cc > 0)
9137 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00009138 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009139#ifdef FEAT_MBYTE
9140 mb_replace_pop_ins(cc);
9141#else
9142 ins_char(cc);
9143#endif
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00009144 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009145 cc = replace_pop();
9146 }
9147 /* restore the characters that NL replaced */
9148 replace_pop_ins();
9149 State = oldState;
9150 }
9151 }
9152 did_ai = FALSE;
9153 }
9154 else
9155 {
9156 /*
9157 * Delete character(s) before the cursor.
9158 */
9159#ifdef FEAT_RIGHTLEFT
9160 if (revins_on) /* put cursor on last inserted char */
9161 dec_cursor();
9162#endif
9163 mincol = 0;
9164 /* keep indent */
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00009165 if (mode == BACKSPACE_LINE
9166 && (curbuf->b_p_ai
9167#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00009168 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00009169#endif
9170 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00009171#ifdef FEAT_RIGHTLEFT
9172 && !revins_on
9173#endif
9174 )
9175 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00009176 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009177 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00009178 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009179 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00009180 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009181 }
9182
9183 /*
9184 * Handle deleting one 'shiftwidth' or 'softtabstop'.
9185 */
9186 if ( mode == BACKSPACE_CHAR
9187 && ((p_sta && in_indent)
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02009188 || (get_sts_value() != 0
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00009189 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00009190 && (*(ml_get_cursor() - 1) == TAB
9191 || (*(ml_get_cursor() - 1) == ' '
9192 && (!*inserted_space_p
9193 || arrow_used))))))
9194 {
9195 int ts;
9196 colnr_T vcol;
9197 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00009198 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009199
9200 *inserted_space_p = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009201 if (p_sta && in_indent)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01009202 ts = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009203 else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02009204 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009205 /* Compute the virtual column where we want to be. Since
9206 * 'showbreak' may get in the way, need to get the last column of
9207 * the previous character. */
9208 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00009209 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009210 dec_cursor();
9211 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
9212 inc_cursor();
9213 want_vcol = (want_vcol / ts) * ts;
9214
9215 /* delete characters until we are at or before want_vcol */
9216 while (vcol > want_vcol
Bram Moolenaar1c465442017-03-12 20:10:05 +01009217 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00009218 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009219
9220 /* insert extra spaces until we are at want_vcol */
9221 while (vcol < want_vcol)
9222 {
9223 /* Remember the first char we inserted */
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02009224 if (curwin->w_cursor.lnum == Insstart_orig.lnum
9225 && curwin->w_cursor.col < Insstart_orig.col)
9226 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009227
9228#ifdef FEAT_VREPLACE
9229 if (State & VREPLACE_FLAG)
9230 ins_char(' ');
9231 else
9232#endif
9233 {
9234 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00009235 if ((State & REPLACE_FLAG))
9236 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009237 }
9238 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
9239 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00009240
9241 /* If we are now back where we started delete one character. Can
9242 * happen when using 'sts' and 'linebreak'. */
9243 if (vcol >= start_vcol)
9244 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009245 }
9246
9247 /*
9248 * Delete upto starting point, start of line or previous word.
9249 */
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009250 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009251 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009252#ifdef FEAT_MBYTE
9253 int cclass = 0, prev_cclass = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009254
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009255 if (has_mbyte)
9256 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00009257#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009258 do
9259 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009260#ifdef FEAT_RIGHTLEFT
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009261 if (!revins_on) /* put cursor on char to be deleted */
9262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009263 dec_cursor();
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009264
9265 cc = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009266#ifdef FEAT_MBYTE
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009267 /* look multi-byte character class */
9268 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009269 {
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009270 prev_cclass = cclass;
9271 cclass = mb_get_class(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00009272 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009273#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009274
9275 /* start of word? */
9276 if (mode == BACKSPACE_WORD && !vim_isspace(cc))
9277 {
9278 mode = BACKSPACE_WORD_NOT_SPACE;
9279 temp = vim_iswordc(cc);
9280 }
9281 /* end of word? */
9282 else if (mode == BACKSPACE_WORD_NOT_SPACE
9283 && ((vim_isspace(cc) || vim_iswordc(cc) != temp)
9284#ifdef FEAT_MBYTE
9285 || prev_cclass != cclass
9286#endif
9287 ))
9288 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009289#ifdef FEAT_RIGHTLEFT
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009290 if (!revins_on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009291#endif
Bram Moolenaar310f2d52015-03-24 17:49:51 +01009292 inc_cursor();
9293#ifdef FEAT_RIGHTLEFT
9294 else if (State & REPLACE_FLAG)
9295 dec_cursor();
9296#endif
9297 break;
9298 }
9299 if (State & REPLACE_FLAG)
9300 replace_do_bs(-1);
9301 else
9302 {
9303#ifdef FEAT_MBYTE
9304 if (enc_utf8 && p_deco)
9305 (void)utfc_ptr2char(ml_get_cursor(), cpc);
9306#endif
9307 (void)del_char(FALSE);
9308#ifdef FEAT_MBYTE
9309 /*
9310 * If there are combining characters and 'delcombine' is set
9311 * move the cursor back. Don't back up before the base
9312 * character.
9313 */
9314 if (enc_utf8 && p_deco && cpc[0] != NUL)
9315 inc_cursor();
9316#endif
9317#ifdef FEAT_RIGHTLEFT
9318 if (revins_chars)
9319 {
9320 revins_chars--;
9321 revins_legal++;
9322 }
9323 if (revins_on && gchar_cursor() == NUL)
9324 break;
9325#endif
9326 }
9327 /* Just a single backspace?: */
9328 if (mode == BACKSPACE_CHAR)
9329 break;
9330 } while (
9331#ifdef FEAT_RIGHTLEFT
9332 revins_on ||
9333#endif
9334 (curwin->w_cursor.col > mincol
9335 && (curwin->w_cursor.lnum != Insstart_orig.lnum
9336 || curwin->w_cursor.col != Insstart_orig.col)));
9337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009338 did_backspace = TRUE;
9339 }
9340#ifdef FEAT_SMARTINDENT
9341 did_si = FALSE;
9342 can_si = FALSE;
9343 can_si_back = FALSE;
9344#endif
9345 if (curwin->w_cursor.col <= 1)
9346 did_ai = FALSE;
9347 /*
9348 * It's a little strange to put backspaces into the redo
9349 * buffer, but it makes auto-indent a lot easier to deal
9350 * with.
9351 */
9352 AppendCharToRedobuff(c);
9353
9354 /* If deleted before the insertion point, adjust it */
Bram Moolenaar3d1956b2014-04-29 14:44:35 +02009355 if (curwin->w_cursor.lnum == Insstart_orig.lnum
9356 && curwin->w_cursor.col < Insstart_orig.col)
9357 Insstart_orig.col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009358
9359 /* vi behaviour: the cursor moves backward but the character that
9360 * was there remains visible
9361 * Vim behaviour: the cursor moves backward and the character that
9362 * was there is erased from the screen.
9363 * We can emulate the vi behaviour by pretending there is a dollar
9364 * displayed even when there isn't.
9365 * --pkv Sun Jan 19 01:56:40 EST 2003 */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01009366 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009367 dollar_vcol = curwin->w_virtcol;
9368
Bram Moolenaarce3be472008-01-14 19:12:28 +00009369#ifdef FEAT_FOLDING
9370 /* When deleting a char the cursor line must never be in a closed fold.
9371 * E.g., when 'foldmethod' is indent and deleting the first non-white
9372 * char before a Tab. */
9373 if (did_backspace)
9374 foldOpenCursor();
9375#endif
9376
Bram Moolenaar071d4272004-06-13 20:20:40 +00009377 return did_backspace;
9378}
9379
9380#ifdef FEAT_MOUSE
9381 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009382ins_mouse(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009383{
9384 pos_T tpos;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009385 win_T *old_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009386
9387# ifdef FEAT_GUI
9388 /* When GUI is active, also move/paste when 'mouse' is empty */
9389 if (!gui.in_use)
9390# endif
9391 if (!mouse_has(MOUSE_INSERT))
9392 return;
9393
9394 undisplay_dollar();
9395 tpos = curwin->w_cursor;
9396 if (do_mouse(NULL, c, BACKWARD, 1L, 0))
9397 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009398 win_T *new_curwin = curwin;
9399
9400 if (curwin != old_curwin && win_valid(old_curwin))
9401 {
9402 /* Mouse took us to another window. We need to go back to the
9403 * previous one to stop insert there properly. */
9404 curwin = old_curwin;
9405 curbuf = curwin->w_buffer;
9406 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009407 start_arrow(curwin == old_curwin ? &tpos : NULL);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009408 if (curwin != new_curwin && win_valid(new_curwin))
9409 {
9410 curwin = new_curwin;
9411 curbuf = curwin->w_buffer;
9412 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009413# ifdef FEAT_CINDENT
9414 can_cindent = TRUE;
9415# endif
9416 }
9417
Bram Moolenaar071d4272004-06-13 20:20:40 +00009418 /* redraw status lines (in case another window became active) */
9419 redraw_statuslines();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009420}
9421
9422 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009423ins_mousescroll(int dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009424{
9425 pos_T tpos;
Bram Moolenaar989a70c2017-08-16 22:46:01 +02009426 win_T *old_curwin = curwin, *wp;
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009427# ifdef FEAT_INS_EXPAND
9428 int did_scroll = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009429# endif
9430
9431 tpos = curwin->w_cursor;
9432
Bram Moolenaar40cf4b42013-02-26 13:30:32 +01009433 if (mouse_row >= 0 && mouse_col >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009434 {
9435 int row, col;
9436
9437 row = mouse_row;
9438 col = mouse_col;
9439
9440 /* find the window at the pointer coordinates */
Bram Moolenaar989a70c2017-08-16 22:46:01 +02009441 wp = mouse_find_win(&row, &col);
9442 if (wp == NULL)
9443 return;
9444 curwin = wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009445 curbuf = curwin->w_buffer;
9446 }
9447 if (curwin == old_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009448 undisplay_dollar();
9449
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009450# ifdef FEAT_INS_EXPAND
9451 /* Don't scroll the window in which completion is being done. */
Bram Moolenaar4033c552017-09-16 20:54:51 +02009452 if (!pum_visible() || curwin != old_curwin)
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009453# endif
9454 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009455 if (dir == MSCR_DOWN || dir == MSCR_UP)
9456 {
9457 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
9458 scroll_redraw(dir,
9459 (long)(curwin->w_botline - curwin->w_topline));
9460 else
9461 scroll_redraw(dir, 3L);
9462 }
9463#ifdef FEAT_GUI
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009464 else
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009465 {
9466 int val, step = 6;
9467
9468 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
Bram Moolenaar02631462017-09-22 15:20:32 +02009469 step = curwin->w_width;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009470 val = curwin->w_leftcol + (dir == MSCR_RIGHT ? -step : step);
9471 if (val < 0)
9472 val = 0;
9473 gui_do_horiz_scroll(val, TRUE);
9474 }
9475#endif
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009476# ifdef FEAT_INS_EXPAND
9477 did_scroll = TRUE;
9478# endif
9479 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009480
Bram Moolenaar071d4272004-06-13 20:20:40 +00009481 curwin->w_redr_status = TRUE;
9482
9483 curwin = old_curwin;
9484 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009485
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009486# ifdef FEAT_INS_EXPAND
9487 /* The popup menu may overlay the window, need to redraw it.
9488 * TODO: Would be more efficient to only redraw the windows that are
9489 * overlapped by the popup menu. */
9490 if (pum_visible() && did_scroll)
9491 {
9492 redraw_all_later(NOT_VALID);
9493 ins_compl_show_pum();
9494 }
9495# endif
9496
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01009497 if (!EQUAL_POS(curwin->w_cursor, tpos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009498 {
9499 start_arrow(&tpos);
9500# ifdef FEAT_CINDENT
9501 can_cindent = TRUE;
9502# endif
9503 }
9504}
9505#endif
9506
Bram Moolenaarec2da362017-01-21 20:04:22 +01009507/*
9508 * Handle receiving P_PS: start paste mode. Inserts the following text up to
9509 * P_PE literally.
9510 * When "drop" is TRUE then consume the text and drop it.
9511 */
9512 int
9513bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
9514{
9515 int c;
9516 char_u buf[NUMBUFLEN + MB_MAXBYTES];
9517 int idx = 0;
9518 char_u *end = find_termcode((char_u *)"PE");
9519 int ret_char = -1;
9520 int save_allow_keys = allow_keys;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01009521 int save_paste = p_paste;
9522 int save_ai = curbuf->b_p_ai;
Bram Moolenaarec2da362017-01-21 20:04:22 +01009523
9524 /* If the end code is too long we can't detect it, read everything. */
9525 if (STRLEN(end) >= NUMBUFLEN)
9526 end = NULL;
9527 ++no_mapping;
9528 allow_keys = 0;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01009529 p_paste = TRUE;
9530 curbuf->b_p_ai = FALSE;
9531
Bram Moolenaarec2da362017-01-21 20:04:22 +01009532 for (;;)
9533 {
9534 /* When the end is not defined read everything. */
9535 if (end == NULL && vpeekc() == NUL)
9536 break;
9537 c = plain_vgetc();
9538#ifdef FEAT_MBYTE
9539 if (has_mbyte)
9540 idx += (*mb_char2bytes)(c, buf + idx);
9541 else
9542#endif
9543 buf[idx++] = c;
9544 buf[idx] = NUL;
Bram Moolenaar866c6882017-04-07 14:02:01 +02009545 if (end != NULL && STRNCMP(buf, end, idx) == 0)
Bram Moolenaarec2da362017-01-21 20:04:22 +01009546 {
9547 if (end[idx] == NUL)
9548 break; /* Found the end of paste code. */
9549 continue;
9550 }
9551 if (!drop)
9552 {
9553 switch (mode)
9554 {
9555 case PASTE_CMDLINE:
9556 put_on_cmdline(buf, idx, TRUE);
9557 break;
9558
9559 case PASTE_EX:
9560 if (gap != NULL && ga_grow(gap, idx) == OK)
9561 {
9562 mch_memmove((char *)gap->ga_data + gap->ga_len,
9563 buf, (size_t)idx);
9564 gap->ga_len += idx;
9565 }
9566 break;
9567
9568 case PASTE_INSERT:
9569 if (stop_arrow() == OK)
9570 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01009571 c = buf[0];
9572 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL))
9573 ins_eol(c);
9574 else
Bram Moolenaar076e5022017-01-24 18:58:30 +01009575 {
Bram Moolenaar915350e2017-01-24 17:50:52 +01009576 ins_char_bytes(buf, idx);
Bram Moolenaar076e5022017-01-24 18:58:30 +01009577 AppendToRedobuffLit(buf, idx);
9578 }
Bram Moolenaarec2da362017-01-21 20:04:22 +01009579 }
9580 break;
9581
9582 case PASTE_ONE_CHAR:
9583 if (ret_char == -1)
9584 {
9585#ifdef FEAT_MBYTE
9586 if (has_mbyte)
9587 ret_char = (*mb_ptr2char)(buf);
9588 else
9589#endif
9590 ret_char = buf[0];
9591 }
9592 break;
9593 }
9594 }
9595 idx = 0;
9596 }
Bram Moolenaar9e817c82017-01-25 21:36:17 +01009597
Bram Moolenaarec2da362017-01-21 20:04:22 +01009598 --no_mapping;
9599 allow_keys = save_allow_keys;
Bram Moolenaar9e817c82017-01-25 21:36:17 +01009600 p_paste = save_paste;
9601 curbuf->b_p_ai = save_ai;
Bram Moolenaarec2da362017-01-21 20:04:22 +01009602
9603 return ret_char;
9604}
9605
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009606#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00009607 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009608ins_tabline(int c)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009609{
9610 /* We will be leaving the current window, unless closing another tab. */
9611 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
9612 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
9613 {
9614 undisplay_dollar();
9615 start_arrow(&curwin->w_cursor);
9616# ifdef FEAT_CINDENT
9617 can_cindent = TRUE;
9618# endif
9619 }
9620
9621 if (c == K_TABLINE)
9622 goto_tabpage(current_tab);
9623 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009624 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009625 handle_tabmenu();
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009626 redraw_statuslines(); /* will redraw the tabline when needed */
9627 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009628}
9629#endif
9630
9631#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009632 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009633ins_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009634{
9635 pos_T tpos;
9636
9637 undisplay_dollar();
9638 tpos = curwin->w_cursor;
9639 if (gui_do_scroll())
9640 {
9641 start_arrow(&tpos);
9642# ifdef FEAT_CINDENT
9643 can_cindent = TRUE;
9644# endif
9645 }
9646}
9647
9648 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009649ins_horscroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009650{
9651 pos_T tpos;
9652
9653 undisplay_dollar();
9654 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009655 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009656 {
9657 start_arrow(&tpos);
9658# ifdef FEAT_CINDENT
9659 can_cindent = TRUE;
9660# endif
9661 }
9662}
9663#endif
9664
9665 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009666ins_left(
9667 int end_change) /* end undoable change */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009668{
9669 pos_T tpos;
9670
9671#ifdef FEAT_FOLDING
9672 if ((fdo_flags & FDO_HOR) && KeyTyped)
9673 foldOpenCursor();
9674#endif
9675 undisplay_dollar();
9676 tpos = curwin->w_cursor;
9677 if (oneleft() == OK)
9678 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00009679#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
9680 /* Only call start_arrow() when not busy with preediting, it will
9681 * break undo. K_LEFT is inserted in im_correct_cursor(). */
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02009682 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting())
Bram Moolenaar39fecab2006-08-29 14:07:36 +00009683#endif
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02009684 {
9685 start_arrow_with_change(&tpos, end_change);
9686 if (!end_change)
9687 AppendCharToRedobuff(K_LEFT);
9688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009689#ifdef FEAT_RIGHTLEFT
9690 /* If exit reversed string, position is fixed */
9691 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
9692 revins_legal++;
9693 revins_chars++;
9694#endif
9695 }
9696
9697 /*
9698 * if 'whichwrap' set for cursor in insert mode may go to
9699 * previous line
9700 */
9701 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
9702 {
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02009703 /* always break undo when moving upwards/downwards, else undo may break */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009704 start_arrow(&tpos);
9705 --(curwin->w_cursor.lnum);
9706 coladvance((colnr_T)MAXCOL);
9707 curwin->w_set_curswant = TRUE; /* so we stay at the end */
9708 }
9709 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02009710 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02009711 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009712}
9713
9714 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009715ins_home(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009716{
9717 pos_T tpos;
9718
9719#ifdef FEAT_FOLDING
9720 if ((fdo_flags & FDO_HOR) && KeyTyped)
9721 foldOpenCursor();
9722#endif
9723 undisplay_dollar();
9724 tpos = curwin->w_cursor;
9725 if (c == K_C_HOME)
9726 curwin->w_cursor.lnum = 1;
9727 curwin->w_cursor.col = 0;
9728#ifdef FEAT_VIRTUALEDIT
9729 curwin->w_cursor.coladd = 0;
9730#endif
9731 curwin->w_curswant = 0;
9732 start_arrow(&tpos);
9733}
9734
9735 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009736ins_end(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009737{
9738 pos_T tpos;
9739
9740#ifdef FEAT_FOLDING
9741 if ((fdo_flags & FDO_HOR) && KeyTyped)
9742 foldOpenCursor();
9743#endif
9744 undisplay_dollar();
9745 tpos = curwin->w_cursor;
9746 if (c == K_C_END)
9747 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9748 coladvance((colnr_T)MAXCOL);
9749 curwin->w_curswant = MAXCOL;
9750
9751 start_arrow(&tpos);
9752}
9753
9754 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009755ins_s_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009756{
9757#ifdef FEAT_FOLDING
9758 if ((fdo_flags & FDO_HOR) && KeyTyped)
9759 foldOpenCursor();
9760#endif
9761 undisplay_dollar();
9762 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
9763 {
9764 start_arrow(&curwin->w_cursor);
9765 (void)bck_word(1L, FALSE, FALSE);
9766 curwin->w_set_curswant = TRUE;
9767 }
9768 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02009769 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009770}
9771
9772 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009773ins_right(
9774 int end_change) /* end undoable change */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009775{
9776#ifdef FEAT_FOLDING
9777 if ((fdo_flags & FDO_HOR) && KeyTyped)
9778 foldOpenCursor();
9779#endif
9780 undisplay_dollar();
Bram Moolenaar78a15312009-05-15 19:33:18 +00009781 if (gchar_cursor() != NUL
9782#ifdef FEAT_VIRTUALEDIT
9783 || virtual_active()
9784#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009785 )
9786 {
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02009787 start_arrow_with_change(&curwin->w_cursor, end_change);
9788 if (!end_change)
9789 AppendCharToRedobuff(K_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009790 curwin->w_set_curswant = TRUE;
9791#ifdef FEAT_VIRTUALEDIT
9792 if (virtual_active())
9793 oneright();
9794 else
9795#endif
9796 {
9797#ifdef FEAT_MBYTE
9798 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009799 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00009800 else
9801#endif
9802 ++curwin->w_cursor.col;
9803 }
9804
9805#ifdef FEAT_RIGHTLEFT
9806 revins_legal++;
9807 if (revins_chars)
9808 revins_chars--;
9809#endif
9810 }
9811 /* if 'whichwrap' set for cursor in insert mode, may move the
9812 * cursor to the next line */
9813 else if (vim_strchr(p_ww, ']') != NULL
9814 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
9815 {
9816 start_arrow(&curwin->w_cursor);
9817 curwin->w_set_curswant = TRUE;
9818 ++curwin->w_cursor.lnum;
9819 curwin->w_cursor.col = 0;
9820 }
9821 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02009822 vim_beep(BO_CRSR);
Bram Moolenaar8b5f65a2015-09-01 19:26:12 +02009823 dont_sync_undo = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009824}
9825
9826 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009827ins_s_right(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009828{
9829#ifdef FEAT_FOLDING
9830 if ((fdo_flags & FDO_HOR) && KeyTyped)
9831 foldOpenCursor();
9832#endif
9833 undisplay_dollar();
9834 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
9835 || gchar_cursor() != NUL)
9836 {
9837 start_arrow(&curwin->w_cursor);
9838 (void)fwd_word(1L, FALSE, 0);
9839 curwin->w_set_curswant = TRUE;
9840 }
9841 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02009842 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009843}
9844
9845 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009846ins_up(
9847 int startcol) /* when TRUE move to Insstart.col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009848{
9849 pos_T tpos;
9850 linenr_T old_topline = curwin->w_topline;
9851#ifdef FEAT_DIFF
9852 int old_topfill = curwin->w_topfill;
9853#endif
9854
9855 undisplay_dollar();
9856 tpos = curwin->w_cursor;
9857 if (cursor_up(1L, TRUE) == OK)
9858 {
9859 if (startcol)
9860 coladvance(getvcol_nolist(&Insstart));
9861 if (old_topline != curwin->w_topline
9862#ifdef FEAT_DIFF
9863 || old_topfill != curwin->w_topfill
9864#endif
9865 )
9866 redraw_later(VALID);
9867 start_arrow(&tpos);
9868#ifdef FEAT_CINDENT
9869 can_cindent = TRUE;
9870#endif
9871 }
9872 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02009873 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009874}
9875
9876 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009877ins_pageup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009878{
9879 pos_T tpos;
9880
9881 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009882
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009883 if (mod_mask & MOD_MASK_CTRL)
9884 {
9885 /* <C-PageUp>: tab page back */
Bram Moolenaarbc444822006-10-17 11:37:50 +00009886 if (first_tabpage->tp_next != NULL)
9887 {
9888 start_arrow(&curwin->w_cursor);
9889 goto_tabpage(-1);
9890 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009891 return;
9892 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009893
Bram Moolenaar071d4272004-06-13 20:20:40 +00009894 tpos = curwin->w_cursor;
9895 if (onepage(BACKWARD, 1L) == OK)
9896 {
9897 start_arrow(&tpos);
9898#ifdef FEAT_CINDENT
9899 can_cindent = TRUE;
9900#endif
9901 }
9902 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02009903 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009904}
9905
9906 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009907ins_down(
9908 int startcol) /* when TRUE move to Insstart.col */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009909{
9910 pos_T tpos;
9911 linenr_T old_topline = curwin->w_topline;
9912#ifdef FEAT_DIFF
9913 int old_topfill = curwin->w_topfill;
9914#endif
9915
9916 undisplay_dollar();
9917 tpos = curwin->w_cursor;
9918 if (cursor_down(1L, TRUE) == OK)
9919 {
9920 if (startcol)
9921 coladvance(getvcol_nolist(&Insstart));
9922 if (old_topline != curwin->w_topline
9923#ifdef FEAT_DIFF
9924 || old_topfill != curwin->w_topfill
9925#endif
9926 )
9927 redraw_later(VALID);
9928 start_arrow(&tpos);
9929#ifdef FEAT_CINDENT
9930 can_cindent = TRUE;
9931#endif
9932 }
9933 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02009934 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009935}
9936
9937 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009938ins_pagedown(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009939{
9940 pos_T tpos;
9941
9942 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009943
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009944 if (mod_mask & MOD_MASK_CTRL)
9945 {
9946 /* <C-PageDown>: tab page forward */
Bram Moolenaarbc444822006-10-17 11:37:50 +00009947 if (first_tabpage->tp_next != NULL)
9948 {
9949 start_arrow(&curwin->w_cursor);
9950 goto_tabpage(0);
9951 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009952 return;
9953 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009954
Bram Moolenaar071d4272004-06-13 20:20:40 +00009955 tpos = curwin->w_cursor;
9956 if (onepage(FORWARD, 1L) == OK)
9957 {
9958 start_arrow(&tpos);
9959#ifdef FEAT_CINDENT
9960 can_cindent = TRUE;
9961#endif
9962 }
9963 else
Bram Moolenaar165bc692015-07-21 17:53:25 +02009964 vim_beep(BO_CRSR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009965}
9966
9967#ifdef FEAT_DND
9968 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01009969ins_drop(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009970{
9971 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9972}
9973#endif
9974
9975/*
9976 * Handle TAB in Insert or Replace mode.
9977 * Return TRUE when the TAB needs to be inserted like a normal character.
9978 */
9979 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01009980ins_tab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009981{
9982 int ind;
9983 int i;
9984 int temp;
9985
9986 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
9987 Insstart_blank_vcol = get_nolist_virtcol();
9988 if (echeck_abbr(TAB + ABBR_OFF))
9989 return FALSE;
9990
9991 ind = inindent(0);
9992#ifdef FEAT_CINDENT
9993 if (ind)
9994 can_cindent = FALSE;
9995#endif
9996
9997 /*
9998 * When nothing special, insert TAB like a normal character
9999 */
10000 if (!curbuf->b_p_et
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +010010001 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
Bram Moolenaar9f340fa2012-10-21 00:10:39 +020010002 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010003 return TRUE;
10004
10005 if (stop_arrow() == FAIL)
10006 return TRUE;
10007
10008 did_ai = FALSE;
10009#ifdef FEAT_SMARTINDENT
10010 did_si = FALSE;
10011 can_si = FALSE;
10012 can_si_back = FALSE;
10013#endif
10014 AppendToRedobuff((char_u *)"\t");
10015
10016 if (p_sta && ind) /* insert tab in indent, use 'shiftwidth' */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +010010017 temp = (int)get_sw_value(curbuf);
Bram Moolenaar9f340fa2012-10-21 00:10:39 +020010018 else if (curbuf->b_p_sts != 0) /* use 'softtabstop' when set */
10019 temp = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010020 else /* otherwise use 'tabstop' */
10021 temp = (int)curbuf->b_p_ts;
10022 temp -= get_nolist_virtcol() % temp;
10023
10024 /*
10025 * Insert the first space with ins_char(). It will delete one char in
10026 * replace mode. Insert the rest with ins_str(); it will not delete any
10027 * chars. For VREPLACE mode, we use ins_char() for all characters.
10028 */
10029 ins_char(' ');
10030 while (--temp > 0)
10031 {
10032#ifdef FEAT_VREPLACE
10033 if (State & VREPLACE_FLAG)
10034 ins_char(' ');
10035 else
10036#endif
10037 {
10038 ins_str((char_u *)" ");
10039 if (State & REPLACE_FLAG) /* no char replaced */
10040 replace_push(NUL);
10041 }
10042 }
10043
10044 /*
10045 * When 'expandtab' not set: Replace spaces by TABs where possible.
10046 */
Bram Moolenaar9f340fa2012-10-21 00:10:39 +020010047 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010048 {
10049 char_u *ptr;
10050#ifdef FEAT_VREPLACE
10051 char_u *saved_line = NULL; /* init for GCC */
10052 pos_T pos;
10053#endif
10054 pos_T fpos;
10055 pos_T *cursor;
10056 colnr_T want_vcol, vcol;
10057 int change_col = -1;
10058 int save_list = curwin->w_p_list;
10059
10060 /*
10061 * Get the current line. For VREPLACE mode, don't make real changes
10062 * yet, just work on a copy of the line.
10063 */
10064#ifdef FEAT_VREPLACE
10065 if (State & VREPLACE_FLAG)
10066 {
10067 pos = curwin->w_cursor;
10068 cursor = &pos;
10069 saved_line = vim_strsave(ml_get_curline());
10070 if (saved_line == NULL)
10071 return FALSE;
10072 ptr = saved_line + pos.col;
10073 }
10074 else
10075#endif
10076 {
10077 ptr = ml_get_cursor();
10078 cursor = &curwin->w_cursor;
10079 }
10080
10081 /* When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces. */
10082 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
10083 curwin->w_p_list = FALSE;
10084
10085 /* Find first white before the cursor */
10086 fpos = curwin->w_cursor;
Bram Moolenaar1c465442017-03-12 20:10:05 +010010087 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010088 {
10089 --fpos.col;
10090 --ptr;
10091 }
10092
10093 /* In Replace mode, don't change characters before the insert point. */
10094 if ((State & REPLACE_FLAG)
10095 && fpos.lnum == Insstart.lnum
10096 && fpos.col < Insstart.col)
10097 {
10098 ptr += Insstart.col - fpos.col;
10099 fpos.col = Insstart.col;
10100 }
10101
10102 /* compute virtual column numbers of first white and cursor */
10103 getvcol(curwin, &fpos, &vcol, NULL, NULL);
10104 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
10105
Bram Moolenaar597a4222014-06-25 14:39:50 +020010106 /* Use as many TABs as possible. Beware of 'breakindent', 'showbreak'
10107 * and 'linebreak' adding extra virtual columns. */
Bram Moolenaar1c465442017-03-12 20:10:05 +010010108 while (VIM_ISWHITE(*ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010109 {
Bram Moolenaar597a4222014-06-25 14:39:50 +020010110 i = lbr_chartabsize(NULL, (char_u *)"\t", vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010111 if (vcol + i > want_vcol)
10112 break;
10113 if (*ptr != TAB)
10114 {
10115 *ptr = TAB;
10116 if (change_col < 0)
10117 {
10118 change_col = fpos.col; /* Column of first change */
10119 /* May have to adjust Insstart */
10120 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
10121 Insstart.col = fpos.col;
10122 }
10123 }
10124 ++fpos.col;
10125 ++ptr;
10126 vcol += i;
10127 }
10128
10129 if (change_col >= 0)
10130 {
10131 int repl_off = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +020010132 char_u *line = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010133
10134 /* Skip over the spaces we need. */
10135 while (vcol < want_vcol && *ptr == ' ')
10136 {
Bram Moolenaar597a4222014-06-25 14:39:50 +020010137 vcol += lbr_chartabsize(line, ptr, vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010138 ++ptr;
10139 ++repl_off;
10140 }
10141 if (vcol > want_vcol)
10142 {
10143 /* Must have a char with 'showbreak' just before it. */
10144 --ptr;
10145 --repl_off;
10146 }
10147 fpos.col += repl_off;
10148
10149 /* Delete following spaces. */
10150 i = cursor->col - fpos.col;
10151 if (i > 0)
10152 {
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +000010153 STRMOVE(ptr, ptr + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010154 /* correct replace stack. */
10155 if ((State & REPLACE_FLAG)
10156#ifdef FEAT_VREPLACE
10157 && !(State & VREPLACE_FLAG)
10158#endif
10159 )
10160 for (temp = i; --temp >= 0; )
10161 replace_join(repl_off);
10162 }
Bram Moolenaar009b2592004-10-24 19:18:58 +000010163#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +020010164 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +000010165 {
Bram Moolenaar67c53842010-05-22 18:28:27 +020010166 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +000010167 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
10168 (char_u *)"\t", 1);
10169 }
10170#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010171 cursor->col -= i;
10172
10173#ifdef FEAT_VREPLACE
10174 /*
10175 * In VREPLACE mode, we haven't changed anything yet. Do it now by
10176 * backspacing over the changed spacing and then inserting the new
10177 * spacing.
10178 */
10179 if (State & VREPLACE_FLAG)
10180 {
10181 /* Backspace from real cursor to change_col */
10182 backspace_until_column(change_col);
10183
10184 /* Insert each char in saved_line from changed_col to
10185 * ptr-cursor */
10186 ins_bytes_len(saved_line + change_col,
10187 cursor->col - change_col);
10188 }
10189#endif
10190 }
10191
10192#ifdef FEAT_VREPLACE
10193 if (State & VREPLACE_FLAG)
10194 vim_free(saved_line);
10195#endif
10196 curwin->w_p_list = save_list;
10197 }
10198
10199 return FALSE;
10200}
10201
10202/*
10203 * Handle CR or NL in insert mode.
10204 * Return TRUE when out of memory or can't undo.
10205 */
10206 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +010010207ins_eol(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010208{
10209 int i;
10210
10211 if (echeck_abbr(c + ABBR_OFF))
10212 return FALSE;
10213 if (stop_arrow() == FAIL)
10214 return TRUE;
10215 undisplay_dollar();
10216
10217 /*
10218 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
10219 * character under the cursor. Only push a NUL on the replace stack,
10220 * nothing to put back when the NL is deleted.
10221 */
10222 if ((State & REPLACE_FLAG)
10223#ifdef FEAT_VREPLACE
10224 && !(State & VREPLACE_FLAG)
10225#endif
10226 )
10227 replace_push(NUL);
10228
10229 /*
10230 * In VREPLACE mode, a NL replaces the rest of the line, and starts
10231 * replacing the next line, so we push all of the characters left on the
10232 * line onto the replace stack. This is not done here though, it is done
10233 * in open_line().
10234 */
10235
Bram Moolenaarf193fff2006-04-27 00:02:13 +000010236#ifdef FEAT_VIRTUALEDIT
10237 /* Put cursor on NUL if on the last char and coladd is 1 (happens after
10238 * CTRL-O). */
10239 if (virtual_active() && curwin->w_cursor.coladd > 0)
10240 coladvance(getviscol());
10241#endif
10242
Bram Moolenaar071d4272004-06-13 20:20:40 +000010243#ifdef FEAT_RIGHTLEFT
10244# ifdef FEAT_FKMAP
10245 if (p_altkeymap && p_fkmap)
10246 fkmap(NL);
10247# endif
10248 /* NL in reverse insert will always start in the end of
10249 * current line. */
10250 if (revins_on)
10251 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
10252#endif
10253
10254 AppendToRedobuff(NL_STR);
10255 i = open_line(FORWARD,
10256#ifdef FEAT_COMMENTS
10257 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM :
10258#endif
10259 0, old_indent);
10260 old_indent = 0;
10261#ifdef FEAT_CINDENT
10262 can_cindent = TRUE;
10263#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +000010264#ifdef FEAT_FOLDING
10265 /* When inserting a line the cursor line must never be in a closed fold. */
10266 foldOpenCursor();
10267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010268
10269 return (!i);
10270}
10271
10272#ifdef FEAT_DIGRAPHS
10273/*
10274 * Handle digraph in insert mode.
10275 * Returns character still to be inserted, or NUL when nothing remaining to be
10276 * done.
10277 */
10278 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +010010279ins_digraph(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010280{
10281 int c;
10282 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +020010283 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010284
10285 pc_status = PC_STATUS_UNSET;
10286 if (redrawing() && !char_avail())
10287 {
10288 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +000010289 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010290
10291 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +020010292 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010293#ifdef FEAT_CMDL_INFO
10294 add_to_showcmd_c(Ctrl_K);
10295#endif
10296 }
10297
10298#ifdef USE_ON_FLY_SCROLL
10299 dont_scroll = TRUE; /* disallow scrolling here */
10300#endif
10301
10302 /* don't map the digraph chars. This also prevents the
10303 * mode message to be deleted when ESC is hit */
10304 ++no_mapping;
10305 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +000010306 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010307 --no_mapping;
10308 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +020010309 if (did_putchar)
10310 /* when the line fits in 'columns' the '?' is at the start of the next
10311 * line and will not be removed by the redraw */
10312 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +020010313
Bram Moolenaar071d4272004-06-13 20:20:40 +000010314 if (IS_SPECIAL(c) || mod_mask) /* special key */
10315 {
10316#ifdef FEAT_CMDL_INFO
10317 clear_showcmd();
10318#endif
10319 insert_special(c, TRUE, FALSE);
10320 return NUL;
10321 }
10322 if (c != ESC)
10323 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +020010324 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010325 if (redrawing() && !char_avail())
10326 {
10327 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +000010328 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010329
10330 if (char2cells(c) == 1)
10331 {
Bram Moolenaar754b5602006-02-09 23:53:20 +000010332 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010333 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +020010334 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010335 }
10336#ifdef FEAT_CMDL_INFO
10337 add_to_showcmd_c(c);
10338#endif
10339 }
10340 ++no_mapping;
10341 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +000010342 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010343 --no_mapping;
10344 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +020010345 if (did_putchar)
10346 /* when the line fits in 'columns' the '?' is at the start of the
10347 * next line and will not be removed by a redraw */
10348 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010349 if (cc != ESC)
10350 {
10351 AppendToRedobuff((char_u *)CTRL_V_STR);
10352 c = getdigraph(c, cc, TRUE);
10353#ifdef FEAT_CMDL_INFO
10354 clear_showcmd();
10355#endif
10356 return c;
10357 }
10358 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010359#ifdef FEAT_CMDL_INFO
10360 clear_showcmd();
10361#endif
10362 return NUL;
10363}
10364#endif
10365
10366/*
10367 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
10368 * Returns the char to be inserted, or NUL if none found.
10369 */
Bram Moolenaar8320da42012-04-30 18:18:47 +020010370 int
Bram Moolenaar7454a062016-01-30 15:14:10 +010010371ins_copychar(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010372{
10373 int c;
10374 int temp;
10375 char_u *ptr, *prev_ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +020010376 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010377
10378 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
10379 {
Bram Moolenaar165bc692015-07-21 17:53:25 +020010380 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010381 return NUL;
10382 }
10383
10384 /* try to advance to the cursor column */
10385 temp = 0;
Bram Moolenaar597a4222014-06-25 14:39:50 +020010386 line = ptr = ml_get(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010387 prev_ptr = ptr;
10388 validate_virtcol();
10389 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
10390 {
10391 prev_ptr = ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +020010392 temp += lbr_chartabsize_adv(line, &ptr, (colnr_T)temp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010393 }
10394 if ((colnr_T)temp > curwin->w_virtcol)
10395 ptr = prev_ptr;
10396
10397#ifdef FEAT_MBYTE
10398 c = (*mb_ptr2char)(ptr);
10399#else
10400 c = *ptr;
10401#endif
10402 if (c == NUL)
Bram Moolenaar165bc692015-07-21 17:53:25 +020010403 vim_beep(BO_COPY);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010404 return c;
10405}
10406
Bram Moolenaar4be06f92005-07-29 22:36:03 +000010407/*
10408 * CTRL-Y or CTRL-E typed in Insert mode.
10409 */
10410 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +010010411ins_ctrl_ey(int tc)
Bram Moolenaar4be06f92005-07-29 22:36:03 +000010412{
10413 int c = tc;
10414
10415#ifdef FEAT_INS_EXPAND
10416 if (ctrl_x_mode == CTRL_X_SCROLL)
10417 {
10418 if (c == Ctrl_Y)
10419 scrolldown_clamp();
10420 else
10421 scrollup_clamp();
10422 redraw_later(VALID);
10423 }
10424 else
10425#endif
10426 {
10427 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
10428 if (c != NUL)
10429 {
10430 long tw_save;
10431
10432 /* The character must be taken literally, insert like it
10433 * was typed after a CTRL-V, and pretend 'textwidth'
10434 * wasn't set. Digits, 'o' and 'x' are special after a
10435 * CTRL-V, don't use it for these. */
10436 if (c < 256 && !isalnum(c))
10437 AppendToRedobuff((char_u *)CTRL_V_STR); /* CTRL-V */
10438 tw_save = curbuf->b_p_tw;
10439 curbuf->b_p_tw = -1;
10440 insert_special(c, TRUE, FALSE);
10441 curbuf->b_p_tw = tw_save;
10442#ifdef FEAT_RIGHTLEFT
10443 revins_chars++;
10444 revins_legal++;
10445#endif
10446 c = Ctrl_V; /* pretend CTRL-V is last character */
10447 auto_format(FALSE, TRUE);
10448 }
10449 }
10450 return c;
10451}
10452
Bram Moolenaar071d4272004-06-13 20:20:40 +000010453#ifdef FEAT_SMARTINDENT
10454/*
10455 * Try to do some very smart auto-indenting.
10456 * Used when inserting a "normal" character.
10457 */
10458 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +010010459ins_try_si(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010460{
10461 pos_T *pos, old_pos;
10462 char_u *ptr;
10463 int i;
10464 int temp;
10465
10466 /*
10467 * do some very smart indenting when entering '{' or '}'
10468 */
10469 if (((did_si || can_si_back) && c == '{') || (can_si && c == '}'))
10470 {
10471 /*
10472 * for '}' set indent equal to indent of line containing matching '{'
10473 */
10474 if (c == '}' && (pos = findmatch(NULL, '{')) != NULL)
10475 {
10476 old_pos = curwin->w_cursor;
10477 /*
10478 * If the matching '{' has a ')' immediately before it (ignoring
10479 * white-space), then line up with the start of the line
10480 * containing the matching '(' if there is one. This handles the
10481 * case where an "if (..\n..) {" statement continues over multiple
10482 * lines -- webb
10483 */
10484 ptr = ml_get(pos->lnum);
10485 i = pos->col;
10486 if (i > 0) /* skip blanks before '{' */
Bram Moolenaar1c465442017-03-12 20:10:05 +010010487 while (--i > 0 && VIM_ISWHITE(ptr[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010488 ;
10489 curwin->w_cursor.lnum = pos->lnum;
10490 curwin->w_cursor.col = i;
10491 if (ptr[i] == ')' && (pos = findmatch(NULL, '(')) != NULL)
10492 curwin->w_cursor = *pos;
10493 i = get_indent();
10494 curwin->w_cursor = old_pos;
10495#ifdef FEAT_VREPLACE
10496 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +000010497 change_indent(INDENT_SET, i, FALSE, NUL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010498 else
10499#endif
10500 (void)set_indent(i, SIN_CHANGED);
10501 }
10502 else if (curwin->w_cursor.col > 0)
10503 {
10504 /*
10505 * when inserting '{' after "O" reduce indent, but not
10506 * more than indent of previous line
10507 */
10508 temp = TRUE;
10509 if (c == '{' && can_si_back && curwin->w_cursor.lnum > 1)
10510 {
10511 old_pos = curwin->w_cursor;
10512 i = get_indent();
10513 while (curwin->w_cursor.lnum > 1)
10514 {
10515 ptr = skipwhite(ml_get(--(curwin->w_cursor.lnum)));
10516
10517 /* ignore empty lines and lines starting with '#'. */
10518 if (*ptr != '#' && *ptr != NUL)
10519 break;
10520 }
10521 if (get_indent() >= i)
10522 temp = FALSE;
10523 curwin->w_cursor = old_pos;
10524 }
10525 if (temp)
Bram Moolenaar21b17e72008-01-16 19:03:13 +000010526 shift_line(TRUE, FALSE, 1, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010527 }
10528 }
10529
10530 /*
10531 * set indent of '#' always to 0
10532 */
10533 if (curwin->w_cursor.col > 0 && can_si && c == '#')
10534 {
10535 /* remember current indent for next line */
10536 old_indent = get_indent();
10537 (void)set_indent(0, SIN_CHANGED);
10538 }
10539
10540 /* Adjust ai_col, the char at this position can be deleted. */
10541 if (ai_col > curwin->w_cursor.col)
10542 ai_col = curwin->w_cursor.col;
10543}
10544#endif
10545
10546/*
10547 * Get the value that w_virtcol would have when 'list' is off.
10548 * Unless 'cpo' contains the 'L' flag.
10549 */
10550 static colnr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +010010551get_nolist_virtcol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010552{
10553 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
10554 return getvcol_nolist(&curwin->w_cursor);
10555 validate_virtcol();
10556 return curwin->w_virtcol;
10557}
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010558
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +010010559#if defined(FEAT_EVAL)
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010560/*
10561 * Handle the InsertCharPre autocommand.
10562 * "c" is the character that was typed.
10563 * Return a pointer to allocated memory with the replacement string.
10564 * Return NULL to continue inserting "c".
10565 */
10566 static char_u *
Bram Moolenaar7454a062016-01-30 15:14:10 +010010567do_insert_char_pre(int c)
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010568{
Bram Moolenaar704984a2012-06-01 14:57:51 +020010569 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +020010570 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010571
10572 /* Return quickly when there is nothing to do. */
10573 if (!has_insertcharpre())
10574 return NULL;
10575
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +010010576# ifdef FEAT_MBYTE
Bram Moolenaar704984a2012-06-01 14:57:51 +020010577 if (has_mbyte)
10578 buf[(*mb_char2bytes)(c, buf)] = NUL;
10579 else
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +010010580# endif
Bram Moolenaar704984a2012-06-01 14:57:51 +020010581 {
10582 buf[0] = c;
10583 buf[1] = NUL;
10584 }
10585
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010586 /* Lock the text to avoid weird things from happening. */
10587 ++textlock;
Bram Moolenaar704984a2012-06-01 14:57:51 +020010588 set_vim_var_string(VV_CHAR, buf, -1); /* set v:char */
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010589
Bram Moolenaar704984a2012-06-01 14:57:51 +020010590 res = NULL;
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010591 if (apply_autocmds(EVENT_INSERTCHARPRE, NULL, NULL, FALSE, curbuf))
Bram Moolenaar704984a2012-06-01 14:57:51 +020010592 {
10593 /* Get the value of v:char. It may be empty or more than one
10594 * character. Only use it when changed, otherwise continue with the
10595 * original character to avoid breaking autoindent. */
10596 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
10597 res = vim_strsave(get_vim_var_str(VV_CHAR));
10598 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010599
10600 set_vim_var_string(VV_CHAR, NULL, -1); /* clear v:char */
10601 --textlock;
10602
10603 return res;
10604}
10605#endif