blob: b4469e855ab7ab5498f6dfc2c50055c28e1957d5 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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 */
20#define CTRL_X_WANT_IDENT 0x100
21
22#define CTRL_X_NOT_DEFINED_YET 1
23#define CTRL_X_SCROLL 2
24#define CTRL_X_WHOLE_LINE 3
25#define CTRL_X_FILES 4
26#define CTRL_X_TAGS (5 + CTRL_X_WANT_IDENT)
27#define CTRL_X_PATH_PATTERNS (6 + CTRL_X_WANT_IDENT)
28#define CTRL_X_PATH_DEFINES (7 + CTRL_X_WANT_IDENT)
29#define CTRL_X_FINISHED 8
30#define CTRL_X_DICTIONARY (9 + CTRL_X_WANT_IDENT)
31#define CTRL_X_THESAURUS (10 + CTRL_X_WANT_IDENT)
32#define CTRL_X_CMDLINE 11
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +000033#define CTRL_X_FUNCTION 12
Bram Moolenaarf75a9632005-09-13 21:20:47 +000034#define CTRL_X_OMNI 13
Bram Moolenaar488c6512005-08-11 20:09:58 +000035#define CTRL_X_SPELL 14
36#define CTRL_X_LOCAL_MSG 15 /* only used in "ctrl_x_msgs" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#define CTRL_X_MSG(i) ctrl_x_msgs[(i) & ~CTRL_X_WANT_IDENT]
39
40static char *ctrl_x_msgs[] =
41{
42 N_(" Keyword completion (^N^P)"), /* ctrl_x_mode == 0, ^P/^N compl. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +000043 N_(" ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)"),
Bram Moolenaar4be06f92005-07-29 22:36:03 +000044 NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +000045 N_(" Whole line completion (^L^N^P)"),
46 N_(" File name completion (^F^N^P)"),
47 N_(" Tag completion (^]^N^P)"),
48 N_(" Path pattern completion (^N^P)"),
49 N_(" Definition completion (^D^N^P)"),
50 NULL,
51 N_(" Dictionary completion (^K^N^P)"),
52 N_(" Thesaurus completion (^T^N^P)"),
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +000053 N_(" Command-line completion (^V^N^P)"),
54 N_(" User defined completion (^U^N^P)"),
Bram Moolenaarf75a9632005-09-13 21:20:47 +000055 N_(" Omni completion (^O^N^P)"),
Bram Moolenaar910f66f2006-04-05 20:41:53 +000056 N_(" Spelling suggestion (s^N^P)"),
Bram Moolenaar4be06f92005-07-29 22:36:03 +000057 N_(" Keyword Local completion (^N^P)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +000058};
59
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000060static char e_hitend[] = N_("Hit end of paragraph");
Bram Moolenaar37dd0182010-11-10 16:54:20 +010061#ifdef FEAT_COMPL_FUNC
62static char e_complwin[] = N_("E839: Completion function changed window");
63static char e_compldel[] = N_("E840: Completion function deleted text");
64#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
66/*
67 * Structure used to store one match for insert completion.
68 */
Bram Moolenaard1f56e62006-02-22 21:25:37 +000069typedef struct compl_S compl_T;
70struct compl_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000071{
Bram Moolenaar572cb562005-08-05 21:35:02 +000072 compl_T *cp_next;
73 compl_T *cp_prev;
74 char_u *cp_str; /* matched text */
Bram Moolenaard1f56e62006-02-22 21:25:37 +000075 char cp_icase; /* TRUE or FALSE: ignore case */
Bram Moolenaar39f05632006-03-19 22:15:26 +000076 char_u *(cp_text[CPT_COUNT]); /* text for the menu */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +000077 char_u *cp_fname; /* file containing the match, allocated when
78 * cp_flags has FREE_FNAME */
Bram Moolenaar572cb562005-08-05 21:35:02 +000079 int cp_flags; /* ORIGINAL_TEXT, CONT_S_IPOS or FREE_FNAME */
80 int cp_number; /* sequence number */
Bram Moolenaar071d4272004-06-13 20:20:40 +000081};
82
Bram Moolenaar572cb562005-08-05 21:35:02 +000083#define ORIGINAL_TEXT (1) /* the original text when the expansion begun */
Bram Moolenaar071d4272004-06-13 20:20:40 +000084#define FREE_FNAME (2)
85
86/*
87 * All the current matches are stored in a list.
Bram Moolenaar4be06f92005-07-29 22:36:03 +000088 * "compl_first_match" points to the start of the list.
89 * "compl_curr_match" points to the currently selected entry.
90 * "compl_shown_match" is different from compl_curr_match during
91 * ins_compl_get_exp().
Bram Moolenaar071d4272004-06-13 20:20:40 +000092 */
Bram Moolenaar572cb562005-08-05 21:35:02 +000093static compl_T *compl_first_match = NULL;
94static compl_T *compl_curr_match = NULL;
95static compl_T *compl_shown_match = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000096
Bram Moolenaar779b74b2006-04-10 14:55:34 +000097/* After using a cursor key <Enter> selects a match in the popup menu,
98 * otherwise it inserts a line break. */
99static int compl_enter_selects = FALSE;
100
Bram Moolenaara6557602006-02-04 22:43:20 +0000101/* When "compl_leader" is not NULL only matches that start with this string
102 * are used. */
103static char_u *compl_leader = NULL;
104
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000105static int compl_get_longest = FALSE; /* put longest common string
106 in compl_leader */
107
Bram Moolenaara6557602006-02-04 22:43:20 +0000108static int compl_used_match; /* Selected one of the matches. When
109 FALSE the match was edited or using
110 the longest common string. */
111
Bram Moolenaar1423b9d2006-05-07 15:16:06 +0000112static int compl_was_interrupted = FALSE; /* didn't finish finding
113 completions. */
114
115static int compl_restarting = FALSE; /* don't insert match */
116
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000117/* When the first completion is done "compl_started" is set. When it's
118 * FALSE the word to be completed must be located. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000119static int compl_started = FALSE;
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000120
Bram Moolenaar031e0dd2009-07-09 16:15:16 +0000121/* Set when doing something for completion that may call edit() recursively,
122 * which is not allowed. */
123static int compl_busy = FALSE;
124
Bram Moolenaar572cb562005-08-05 21:35:02 +0000125static int compl_matches = 0;
126static char_u *compl_pattern = NULL;
127static int compl_direction = FORWARD;
128static int compl_shows_dir = FORWARD;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000129static int compl_pending = 0; /* > 1 for postponed CTRL-N */
Bram Moolenaar572cb562005-08-05 21:35:02 +0000130static pos_T compl_startpos;
131static colnr_T compl_col = 0; /* column where the text starts
132 * that is being completed */
Bram Moolenaar572cb562005-08-05 21:35:02 +0000133static char_u *compl_orig_text = NULL; /* text as it was before
134 * completion started */
135static int compl_cont_mode = 0;
136static expand_T compl_xp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137
Bram Moolenaar82139082011-09-14 16:52:09 +0200138static int compl_opt_refresh_always = FALSE;
139
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000140static void ins_ctrl_x __ARGS((void));
141static int has_compl_option __ARGS((int dict_opt));
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000142static int ins_compl_accept_char __ARGS((int c));
Bram Moolenaar89d40322006-08-29 15:30:07 +0000143static int ins_compl_add __ARGS((char_u *str, int len, int icase, char_u *fname, char_u **cptext, int cdir, int flags, int adup));
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000144static int ins_compl_equal __ARGS((compl_T *match, char_u *str, int len));
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000145static void ins_compl_longest_match __ARGS((compl_T *match));
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000146static void ins_compl_add_matches __ARGS((int num_matches, char_u **matches, int icase));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147static int ins_compl_make_cyclic __ARGS((void));
Bram Moolenaar1c7715d2005-10-03 22:02:18 +0000148static void ins_compl_upd_pum __ARGS((void));
149static void ins_compl_del_pum __ARGS((void));
Bram Moolenaar280f1262006-01-30 00:14:18 +0000150static int pum_wanted __ARGS((void));
Bram Moolenaar65c923a2006-03-03 22:56:30 +0000151static int pum_enough_matches __ARGS((void));
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000152static void ins_compl_dictionaries __ARGS((char_u *dict, char_u *pat, int flags, int thesaurus));
Bram Moolenaar0b238792006-03-02 22:49:12 +0000153static void ins_compl_files __ARGS((int count, char_u **files, int thesaurus, int flags, regmatch_T *regmatch, char_u *buf, int *dir));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000154static char_u *find_line_end __ARGS((char_u *ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155static void ins_compl_free __ARGS((void));
156static void ins_compl_clear __ARGS((void));
Bram Moolenaara6557602006-02-04 22:43:20 +0000157static int ins_compl_bs __ARGS((void));
Bram Moolenaar82139082011-09-14 16:52:09 +0200158static int ins_compl_need_restart __ARGS((void));
Bram Moolenaar1423b9d2006-05-07 15:16:06 +0000159static void ins_compl_new_leader __ARGS((void));
Bram Moolenaara6557602006-02-04 22:43:20 +0000160static void ins_compl_addleader __ARGS((int c));
Bram Moolenaar82139082011-09-14 16:52:09 +0200161static int ins_compl_len __ARGS((void));
Bram Moolenaar1423b9d2006-05-07 15:16:06 +0000162static void ins_compl_restart __ARGS((void));
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000163static void ins_compl_set_original_text __ARGS((char_u *str));
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000164static void ins_compl_addfrommatch __ARGS((void));
Bram Moolenaar1c7715d2005-10-03 22:02:18 +0000165static int ins_compl_prep __ARGS((int c));
Bram Moolenaar62951b12011-09-21 18:23:05 +0200166static void ins_compl_fixRedoBufForLeader __ARGS((char_u *ptr_arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167static buf_T *ins_compl_next_buf __ARGS((buf_T *buf, int flag));
Bram Moolenaara94bc432006-03-10 21:42:59 +0000168#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL)
169static void ins_compl_add_list __ARGS((list_T *list));
Bram Moolenaar82139082011-09-14 16:52:09 +0200170static void ins_compl_add_dict __ARGS((dict_T *dict));
Bram Moolenaara94bc432006-03-10 21:42:59 +0000171#endif
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000172static int ins_compl_get_exp __ARGS((pos_T *ini));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173static void ins_compl_delete __ARGS((void));
174static void ins_compl_insert __ARGS((void));
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000175static int ins_compl_next __ARGS((int allow_get_expansion, int count, int insert_match));
Bram Moolenaare3226be2005-12-18 22:10:00 +0000176static int ins_compl_key2dir __ARGS((int c));
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000177static int ins_compl_pum_key __ARGS((int c));
Bram Moolenaare3226be2005-12-18 22:10:00 +0000178static int ins_compl_key2count __ARGS((int c));
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000179static int ins_compl_use_match __ARGS((int c));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180static int ins_complete __ARGS((int c));
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000181static unsigned quote_meta __ARGS((char_u *dest, char_u *str, int len));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182#endif /* FEAT_INS_EXPAND */
183
184#define BACKSPACE_CHAR 1
185#define BACKSPACE_WORD 2
186#define BACKSPACE_WORD_NOT_SPACE 3
187#define BACKSPACE_LINE 4
188
Bram Moolenaar754b5602006-02-09 23:53:20 +0000189static void ins_redraw __ARGS((int ready));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190static void ins_ctrl_v __ARGS((void));
191static void undisplay_dollar __ARGS((void));
192static void insert_special __ARGS((int, int, int));
Bram Moolenaar97b98102009-11-17 16:41:01 +0000193static void internal_format __ARGS((int textwidth, int second_indent, int flags, int format_only, int c));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194static void check_auto_format __ARGS((int));
195static void redo_literal __ARGS((int c));
196static void start_arrow __ARGS((pos_T *end_insert_pos));
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +0000197#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +0000198static void check_spell_redraw __ARGS((void));
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000199static void spell_back_to_badword __ARGS((void));
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +0000200static int spell_bad_len = 0; /* length of located bad word */
Bram Moolenaar217ad922005-03-20 22:37:15 +0000201#endif
Bram Moolenaarf332a652013-11-04 04:20:33 +0100202static void stop_insert __ARGS((pos_T *end_insert_pos, int esc, int nomove));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203static int echeck_abbr __ARGS((int));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204static int replace_pop __ARGS((void));
205static void replace_join __ARGS((int off));
206static void replace_pop_ins __ARGS((void));
207#ifdef FEAT_MBYTE
208static void mb_replace_pop_ins __ARGS((int cc));
209#endif
210static void replace_flush __ARGS((void));
Bram Moolenaar0f6c9482009-01-13 11:29:48 +0000211static void replace_do_bs __ARGS((int limit_col));
212static int del_char_after_col __ARGS((int limit_col));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213#ifdef FEAT_CINDENT
214static int cindent_on __ARGS((void));
215#endif
216static void ins_reg __ARGS((void));
217static void ins_ctrl_g __ARGS((void));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000218static void ins_ctrl_hat __ARGS((void));
Bram Moolenaar488c6512005-08-11 20:09:58 +0000219static int ins_esc __ARGS((long *count, int cmdchar, int nomove));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220#ifdef FEAT_RIGHTLEFT
221static void ins_ctrl_ __ARGS((void));
222#endif
223#ifdef FEAT_VISUAL
224static int ins_start_select __ARGS((int c));
225#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000226static void ins_insert __ARGS((int replaceState));
227static void ins_ctrl_o __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228static void ins_shift __ARGS((int c, int lastc));
229static void ins_del __ARGS((void));
230static int ins_bs __ARGS((int c, int mode, int *inserted_space_p));
231#ifdef FEAT_MOUSE
232static void ins_mouse __ARGS((int c));
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +0200233static void ins_mousescroll __ARGS((int dir));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000235#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
236static void ins_tabline __ARGS((int c));
237#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238static void ins_left __ARGS((void));
239static void ins_home __ARGS((int c));
240static void ins_end __ARGS((int c));
241static void ins_s_left __ARGS((void));
242static void ins_right __ARGS((void));
243static void ins_s_right __ARGS((void));
244static void ins_up __ARGS((int startcol));
245static void ins_pageup __ARGS((void));
246static void ins_down __ARGS((int startcol));
247static void ins_pagedown __ARGS((void));
248#ifdef FEAT_DND
249static void ins_drop __ARGS((void));
250#endif
251static int ins_tab __ARGS((void));
252static int ins_eol __ARGS((int c));
253#ifdef FEAT_DIGRAPHS
254static int ins_digraph __ARGS((void));
255#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000256static int ins_ctrl_ey __ARGS((int tc));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257#ifdef FEAT_SMARTINDENT
258static void ins_try_si __ARGS((int c));
259#endif
260static colnr_T get_nolist_virtcol __ARGS((void));
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100261#ifdef FEAT_AUTOCMD
262static char_u *do_insert_char_pre __ARGS((int c));
263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264
265static colnr_T Insstart_textlen; /* length of line when insert started */
266static colnr_T Insstart_blank_vcol; /* vcol for first inserted blank */
267
268static char_u *last_insert = NULL; /* the text of the previous insert,
269 K_SPECIAL and CSI are escaped */
270static int last_insert_skip; /* nr of chars in front of previous insert */
271static int new_insert_skip; /* nr of chars in front of current insert */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000272static int did_restart_edit; /* "restart_edit" when calling edit() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273
274#ifdef FEAT_CINDENT
275static int can_cindent; /* may do cindenting on this line */
276#endif
277
278static int old_indent = 0; /* for ^^D command in insert mode */
279
280#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000281static int revins_on; /* reverse insert mode on */
282static int revins_chars; /* how much to skip after edit */
283static int revins_legal; /* was the last char 'legal'? */
284static int revins_scol; /* start column of revins session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285#endif
286
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287static int ins_need_undo; /* call u_save() before inserting a
288 char. Set when edit() is called.
289 after that arrow_used is used. */
290
291static int did_add_space = FALSE; /* auto_format() added an extra space
292 under the cursor */
293
294/*
295 * edit(): Start inserting text.
296 *
297 * "cmdchar" can be:
298 * 'i' normal insert command
299 * 'a' normal append command
300 * 'R' replace command
301 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo,
302 * but still only one <CR> is inserted. The <Esc> is not used for redo.
303 * 'g' "gI" command.
304 * 'V' "gR" command for Virtual Replace mode.
305 * 'v' "gr" command for single character Virtual Replace mode.
306 *
307 * This function is not called recursively. For CTRL-O commands, it returns
308 * and lets the caller handle the Normal-mode command.
309 *
310 * Return TRUE if a CTRL-O command caused the return (insert mode pending).
311 */
312 int
313edit(cmdchar, startln, count)
314 int cmdchar;
315 int startln; /* if set, insert at start of line */
316 long count;
317{
318 int c = 0;
319 char_u *ptr;
320 int lastc;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000321 int mincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 static linenr_T o_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 int i;
324 int did_backspace = TRUE; /* previous char was backspace */
325#ifdef FEAT_CINDENT
326 int line_is_white = FALSE; /* line is empty before insert */
327#endif
328 linenr_T old_topline = 0; /* topline before insertion */
329#ifdef FEAT_DIFF
330 int old_topfill = -1;
331#endif
332 int inserted_space = FALSE; /* just inserted a space */
333 int replaceState = REPLACE;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000334 int nomove = FALSE; /* don't move cursor on return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000336 /* Remember whether editing was restarted after CTRL-O. */
337 did_restart_edit = restart_edit;
338
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 /* sleep before redrawing, needed for "CTRL-O :" that results in an
340 * error message */
341 check_for_delay(TRUE);
342
343#ifdef HAVE_SANDBOX
344 /* Don't allow inserting in the sandbox. */
345 if (sandbox != 0)
346 {
347 EMSG(_(e_sandbox));
348 return FALSE;
349 }
350#endif
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000351 /* Don't allow changes in the buffer while editing the cmdline. The
352 * caller of getcmdline() may get confused. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000353 if (textlock != 0)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000354 {
355 EMSG(_(e_secure));
356 return FALSE;
357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358
359#ifdef FEAT_INS_EXPAND
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000360 /* Don't allow recursive insert mode when busy with completion. */
Bram Moolenaar031e0dd2009-07-09 16:15:16 +0000361 if (compl_started || compl_busy || pum_visible())
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000362 {
363 EMSG(_(e_secure));
364 return FALSE;
365 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366 ins_compl_clear(); /* clear stuff for CTRL-X mode */
367#endif
368
Bram Moolenaar843ee412004-06-30 16:16:41 +0000369#ifdef FEAT_AUTOCMD
370 /*
371 * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx".
372 */
373 if (cmdchar != 'r' && cmdchar != 'v')
374 {
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100375 pos_T save_cursor = curwin->w_cursor;
376
Bram Moolenaar1e015462005-09-25 22:16:38 +0000377# ifdef FEAT_EVAL
Bram Moolenaar843ee412004-06-30 16:16:41 +0000378 if (cmdchar == 'R')
379 ptr = (char_u *)"r";
380 else if (cmdchar == 'V')
381 ptr = (char_u *)"v";
382 else
383 ptr = (char_u *)"i";
384 set_vim_var_string(VV_INSERTMODE, ptr, 1);
Bram Moolenaar097c9922013-05-19 21:15:15 +0200385 set_vim_var_string(VV_CHAR, NULL, -1); /* clear v:char */
Bram Moolenaar1e015462005-09-25 22:16:38 +0000386# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000387 apply_autocmds(EVENT_INSERTENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100388
Bram Moolenaar097c9922013-05-19 21:15:15 +0200389 /* Make sure the cursor didn't move. Do call check_cursor_col() in
390 * case the text was modified. Since Insert mode was not started yet
391 * a call to check_cursor_col() may move the cursor, especially with
392 * the "A" command, thus set State to avoid that. Also check that the
393 * line number is still valid (lines may have been deleted).
394 * Do not restore if v:char was set to a non-empty string. */
395 if (!equalpos(curwin->w_cursor, save_cursor)
396# ifdef FEAT_EVAL
397 && *get_vim_var_str(VV_CHAR) == NUL
398# endif
399 && save_cursor.lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100400 {
401 int save_state = State;
402
403 curwin->w_cursor = save_cursor;
404 State = INSERT;
405 check_cursor_col();
406 State = save_state;
407 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000408 }
409#endif
410
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200411#ifdef FEAT_CONCEAL
412 /* Check if the cursor line needs redrawing before changing State. If
413 * 'concealcursor' is "n" it needs to be redrawn without concealing. */
Bram Moolenaar8e469272010-07-28 19:38:16 +0200414 conceal_check_cursur_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200415#endif
416
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417#ifdef FEAT_MOUSE
418 /*
419 * When doing a paste with the middle mouse button, Insstart is set to
420 * where the paste started.
421 */
422 if (where_paste_started.lnum != 0)
423 Insstart = where_paste_started;
424 else
425#endif
426 {
427 Insstart = curwin->w_cursor;
428 if (startln)
429 Insstart.col = 0;
430 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000431 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432 Insstart_blank_vcol = MAXCOL;
433 if (!did_ai)
434 ai_col = 0;
435
436 if (cmdchar != NUL && restart_edit == 0)
437 {
438 ResetRedobuff();
439 AppendNumberToRedobuff(count);
440#ifdef FEAT_VREPLACE
441 if (cmdchar == 'V' || cmdchar == 'v')
442 {
443 /* "gR" or "gr" command */
444 AppendCharToRedobuff('g');
445 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
446 }
447 else
448#endif
449 {
450 AppendCharToRedobuff(cmdchar);
451 if (cmdchar == 'g') /* "gI" command */
452 AppendCharToRedobuff('I');
453 else if (cmdchar == 'r') /* "r<CR>" command */
454 count = 1; /* insert only one <CR> */
455 }
456 }
457
458 if (cmdchar == 'R')
459 {
460#ifdef FEAT_FKMAP
461 if (p_fkmap && p_ri)
462 {
463 beep_flush();
464 EMSG(farsi_text_3); /* encoded in Farsi */
465 State = INSERT;
466 }
467 else
468#endif
469 State = REPLACE;
470 }
471#ifdef FEAT_VREPLACE
472 else if (cmdchar == 'V' || cmdchar == 'v')
473 {
474 State = VREPLACE;
475 replaceState = VREPLACE;
476 orig_line_count = curbuf->b_ml.ml_line_count;
477 vr_lines_changed = 1;
478 }
479#endif
480 else
481 State = INSERT;
482
483 stop_insert_mode = FALSE;
484
485 /*
486 * Need to recompute the cursor position, it might move when the cursor is
487 * on a TAB or special character.
488 */
489 curs_columns(TRUE);
490
491 /*
492 * Enable langmap or IME, indicated by 'iminsert'.
493 * Note that IME may enabled/disabled without us noticing here, thus the
494 * 'iminsert' value may not reflect what is actually used. It is updated
495 * when hitting <Esc>.
496 */
497 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
498 State |= LANGMAP;
499#ifdef USE_IM_CONTROL
500 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
501#endif
502
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503#ifdef FEAT_MOUSE
504 setmouse();
505#endif
506#ifdef FEAT_CMDL_INFO
507 clear_showcmd();
508#endif
509#ifdef FEAT_RIGHTLEFT
510 /* there is no reverse replace mode */
511 revins_on = (State == INSERT && p_ri);
512 if (revins_on)
513 undisplay_dollar();
514 revins_chars = 0;
515 revins_legal = 0;
516 revins_scol = -1;
517#endif
518
519 /*
520 * Handle restarting Insert mode.
521 * Don't do this for "CTRL-O ." (repeat an insert): we get here with
522 * restart_edit non-zero, and something in the stuff buffer.
523 */
524 if (restart_edit != 0 && stuff_empty())
525 {
526#ifdef FEAT_MOUSE
527 /*
528 * After a paste we consider text typed to be part of the insert for
529 * the pasted text. You can backspace over the pasted text too.
530 */
531 if (where_paste_started.lnum)
532 arrow_used = FALSE;
533 else
534#endif
535 arrow_used = TRUE;
536 restart_edit = 0;
537
538 /*
539 * If the cursor was after the end-of-line before the CTRL-O and it is
540 * now at the end-of-line, put it after the end-of-line (this is not
541 * correct in very rare cases).
542 * Also do this if curswant is greater than the current virtual
543 * column. Eg after "^O$" or "^O80|".
544 */
545 validate_virtcol();
546 update_curswant();
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000547 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 || curwin->w_curswant > curwin->w_virtcol)
549 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
550 {
551 if (ptr[1] == NUL)
552 ++curwin->w_cursor.col;
553#ifdef FEAT_MBYTE
554 else if (has_mbyte)
555 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000556 i = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 if (ptr[i] == NUL)
558 curwin->w_cursor.col += i;
559 }
560#endif
561 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000562 ins_at_eol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 }
564 else
565 arrow_used = FALSE;
566
567 /* we are in insert mode now, don't need to start it anymore */
568 need_start_insertmode = FALSE;
569
570 /* Need to save the line for undo before inserting the first char. */
571 ins_need_undo = TRUE;
572
573#ifdef FEAT_MOUSE
574 where_paste_started.lnum = 0;
575#endif
576#ifdef FEAT_CINDENT
577 can_cindent = TRUE;
578#endif
579#ifdef FEAT_FOLDING
580 /* The cursor line is not in a closed fold, unless 'insertmode' is set or
581 * restarting. */
582 if (!p_im && did_restart_edit == 0)
583 foldOpenCursor();
584#endif
585
586 /*
587 * If 'showmode' is set, show the current (insert/replace/..) mode.
588 * A warning message for changing a readonly file is given here, before
589 * actually changing anything. It's put after the mode, if any.
590 */
591 i = 0;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000592 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 i = showmode();
594
595 if (!p_im && did_restart_edit == 0)
Bram Moolenaar21af89e2008-01-02 21:09:33 +0000596 change_warning(i == 0 ? 0 : i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597
598#ifdef CURSOR_SHAPE
599 ui_cursor_shape(); /* may show different cursor shape */
600#endif
601#ifdef FEAT_DIGRAPHS
602 do_digraph(-1); /* clear digraphs */
603#endif
604
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000605 /*
606 * Get the current length of the redo buffer, those characters have to be
607 * skipped if we want to get to the inserted characters.
608 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 ptr = get_inserted();
610 if (ptr == NULL)
611 new_insert_skip = 0;
612 else
613 {
614 new_insert_skip = (int)STRLEN(ptr);
615 vim_free(ptr);
616 }
617
618 old_indent = 0;
619
620 /*
621 * Main loop in Insert mode: repeat until Insert mode is left.
622 */
623 for (;;)
624 {
625#ifdef FEAT_RIGHTLEFT
626 if (!revins_legal)
627 revins_scol = -1; /* reset on illegal motions */
628 else
629 revins_legal = 0;
630#endif
631 if (arrow_used) /* don't repeat insert when arrow key used */
632 count = 0;
633
634 if (stop_insert_mode)
635 {
636 /* ":stopinsert" used or 'insertmode' reset */
637 count = 0;
638 goto doESCkey;
639 }
640
641 /* set curwin->w_curswant for next K_DOWN or K_UP */
642 if (!arrow_used)
643 curwin->w_set_curswant = TRUE;
644
645 /* If there is no typeahead may check for timestamps (e.g., for when a
646 * menu invoked a shell command). */
647 if (stuff_empty())
648 {
649 did_check_timestamps = FALSE;
650 if (need_check_timestamps)
651 check_timestamps(FALSE);
652 }
653
654 /*
655 * When emsg() was called msg_scroll will have been set.
656 */
657 msg_scroll = FALSE;
658
659#ifdef FEAT_GUI
660 /* When 'mousefocus' is set a mouse movement may have taken us to
661 * another window. "need_mouse_correct" may then be set because of an
662 * autocommand. */
663 if (need_mouse_correct)
664 gui_mouse_correct();
665#endif
666
667#ifdef FEAT_FOLDING
668 /* Open fold at the cursor line, according to 'foldopen'. */
669 if (fdo_flags & FDO_INSERT)
670 foldOpenCursor();
671 /* Close folds where the cursor isn't, according to 'foldclose' */
672 if (!char_avail())
673 foldCheckClose();
674#endif
675
676 /*
677 * If we inserted a character at the last position of the last line in
678 * the window, scroll the window one line up. This avoids an extra
679 * redraw.
680 * This is detected when the cursor column is smaller after inserting
681 * something.
682 * Don't do this when the topline changed already, it has
683 * already been adjusted (by insertchar() calling open_line())).
684 */
685 if (curbuf->b_mod_set
686 && curwin->w_p_wrap
687 && !did_backspace
688 && curwin->w_topline == old_topline
689#ifdef FEAT_DIFF
690 && curwin->w_topfill == old_topfill
691#endif
692 )
693 {
694 mincol = curwin->w_wcol;
695 validate_cursor_col();
696
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000697 if ((int)curwin->w_wcol < mincol - curbuf->b_p_ts
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 && curwin->w_wrow == W_WINROW(curwin)
699 + curwin->w_height - 1 - p_so
700 && (curwin->w_cursor.lnum != curwin->w_topline
701#ifdef FEAT_DIFF
702 || curwin->w_topfill > 0
703#endif
704 ))
705 {
706#ifdef FEAT_DIFF
707 if (curwin->w_topfill > 0)
708 --curwin->w_topfill;
709 else
710#endif
711#ifdef FEAT_FOLDING
712 if (hasFolding(curwin->w_topline, NULL, &old_topline))
713 set_topline(curwin, old_topline + 1);
714 else
715#endif
716 set_topline(curwin, curwin->w_topline + 1);
717 }
718 }
719
720 /* May need to adjust w_topline to show the cursor. */
721 update_topline();
722
723 did_backspace = FALSE;
724
725 validate_cursor(); /* may set must_redraw */
726
727 /*
728 * Redraw the display when no characters are waiting.
729 * Also shows mode, ruler and positions cursor.
730 */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000731 ins_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732
733#ifdef FEAT_SCROLLBIND
734 if (curwin->w_p_scb)
735 do_check_scrollbind(TRUE);
736#endif
737
Bram Moolenaar860cae12010-06-05 23:22:07 +0200738#ifdef FEAT_CURSORBIND
739 if (curwin->w_p_crb)
740 do_check_cursorbind();
741#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 update_curswant();
743 old_topline = curwin->w_topline;
744#ifdef FEAT_DIFF
745 old_topfill = curwin->w_topfill;
746#endif
747
748#ifdef USE_ON_FLY_SCROLL
749 dont_scroll = FALSE; /* allow scrolling here */
750#endif
751
752 /*
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000753 * Get a character for Insert mode. Ignore K_IGNORE.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 */
755 lastc = c; /* remember previous char for CTRL-D */
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000756 do
757 {
758 c = safe_vgetc();
759 } while (c == K_IGNORE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000761#ifdef FEAT_AUTOCMD
762 /* Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V. */
763 did_cursorhold = TRUE;
764#endif
765
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766#ifdef FEAT_RIGHTLEFT
767 if (p_hkmap && KeyTyped)
768 c = hkmap(c); /* Hebrew mode mapping */
769#endif
770#ifdef FEAT_FKMAP
771 if (p_fkmap && KeyTyped)
772 c = fkmap(c); /* Farsi mode mapping */
773#endif
774
775#ifdef FEAT_INS_EXPAND
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000776 /*
777 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000778 * and the cursor is still in the completed word. Only when there is
779 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000780 */
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000781 if (compl_started
782 && pum_wanted()
783 && curwin->w_cursor.col >= compl_col
784 && (compl_shown_match == NULL
785 || compl_shown_match != compl_shown_match->cp_next))
Bram Moolenaara6557602006-02-04 22:43:20 +0000786 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000787 /* BS: Delete one character from "compl_leader". */
788 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000789 && curwin->w_cursor.col > compl_col
790 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000791 continue;
792
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000793 /* When no match was selected or it was edited. */
794 if (!compl_used_match)
Bram Moolenaara6557602006-02-04 22:43:20 +0000795 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000796 /* CTRL-L: Add one character from the current match to
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000797 * "compl_leader". Except when at the original match and
798 * there is nothing to add, CTRL-L works like CTRL-P then. */
799 if (c == Ctrl_L
800 && (ctrl_x_mode != CTRL_X_WHOLE_LINE
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000801 || (int)STRLEN(compl_shown_match->cp_str)
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000802 > curwin->w_cursor.col - compl_col))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000803 {
804 ins_compl_addfrommatch();
805 continue;
806 }
807
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000808 /* A non-white character that fits in with the current
809 * completion: Add to "compl_leader". */
810 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000811 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100812#ifdef FEAT_AUTOCMD
813 /* Trigger InsertCharPre. */
814 char_u *str = do_insert_char_pre(c);
815 char_u *p;
816
817 if (str != NULL)
818 {
819 for (p = str; *p != NUL; mb_ptr_adv(p))
820 ins_compl_addleader(PTR2CHAR(p));
821 vim_free(str);
822 }
823 else
824#endif
825 ins_compl_addleader(c);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000826 continue;
827 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000828
Bram Moolenaar0440ca32006-05-13 13:24:33 +0000829 /* Pressing CTRL-Y selects the current match. When
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000830 * compl_enter_selects is set the Enter key does the same. */
831 if (c == Ctrl_Y || (compl_enter_selects
832 && (c == CAR || c == K_KENTER || c == NL)))
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000833 {
834 ins_compl_delete();
835 ins_compl_insert();
836 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000837 }
838 }
839
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 /* Prepare for or stop CTRL-X mode. This doesn't do completion, but
841 * it does fix up the text when finishing completion. */
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000842 compl_get_longest = FALSE;
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000843 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000844 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845#endif
846
Bram Moolenaar488c6512005-08-11 20:09:58 +0000847 /* CTRL-\ CTRL-N goes to Normal mode,
848 * CTRL-\ CTRL-G goes to mode selected with 'insertmode',
849 * CTRL-\ CTRL-O is like CTRL-O but without moving the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 if (c == Ctrl_BSL)
851 {
852 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000853 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 ++no_mapping;
855 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000856 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 --no_mapping;
858 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000859 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000861 /* it's something else */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 vungetc(c);
863 c = Ctrl_BSL;
864 }
865 else if (c == Ctrl_G && p_im)
866 continue;
867 else
868 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000869 if (c == Ctrl_O)
870 {
871 ins_ctrl_o();
872 ins_at_eol = FALSE; /* cursor keeps its column */
873 nomove = TRUE;
874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 count = 0;
876 goto doESCkey;
877 }
878 }
879
880#ifdef FEAT_DIGRAPHS
881 c = do_digraph(c);
882#endif
883
884#ifdef FEAT_INS_EXPAND
885 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode == CTRL_X_CMDLINE)
886 goto docomplete;
887#endif
888 if (c == Ctrl_V || c == Ctrl_Q)
889 {
890 ins_ctrl_v();
891 c = Ctrl_V; /* pretend CTRL-V is last typed character */
892 continue;
893 }
894
895#ifdef FEAT_CINDENT
896 if (cindent_on()
897# ifdef FEAT_INS_EXPAND
898 && ctrl_x_mode == 0
899# endif
900 )
901 {
902 /* A key name preceded by a bang means this key is not to be
903 * inserted. Skip ahead to the re-indenting below.
904 * A key name preceded by a star means that indenting has to be
905 * done before inserting the key. */
906 line_is_white = inindent(0);
907 if (in_cinkeys(c, '!', line_is_white))
908 goto force_cindent;
909 if (can_cindent && in_cinkeys(c, '*', line_is_white)
910 && stop_arrow() == OK)
911 do_c_expr_indent();
912 }
913#endif
914
915#ifdef FEAT_RIGHTLEFT
916 if (curwin->w_p_rl)
917 switch (c)
918 {
919 case K_LEFT: c = K_RIGHT; break;
920 case K_S_LEFT: c = K_S_RIGHT; break;
921 case K_C_LEFT: c = K_C_RIGHT; break;
922 case K_RIGHT: c = K_LEFT; break;
923 case K_S_RIGHT: c = K_S_LEFT; break;
924 case K_C_RIGHT: c = K_C_LEFT; break;
925 }
926#endif
927
928#ifdef FEAT_VISUAL
929 /*
930 * If 'keymodel' contains "startsel", may start selection. If it
931 * does, a CTRL-O and c will be stuffed, we need to get these
932 * characters.
933 */
934 if (ins_start_select(c))
935 continue;
936#endif
937
938 /*
939 * The big switch to handle a character in insert mode.
940 */
941 switch (c)
942 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000943 case ESC: /* End input mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 if (echeck_abbr(ESC + ABBR_OFF))
945 break;
946 /*FALLTHROUGH*/
947
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000948 case Ctrl_C: /* End input mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949#ifdef FEAT_CMDWIN
950 if (c == Ctrl_C && cmdwin_type != 0)
951 {
952 /* Close the cmdline window. */
953 cmdwin_result = K_IGNORE;
954 got_int = FALSE; /* don't stop executing autocommands et al. */
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000955 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 goto doESCkey;
957 }
958#endif
959
960#ifdef UNIX
961do_intr:
962#endif
963 /* when 'insertmode' set, and not halfway a mapping, don't leave
964 * Insert mode */
965 if (goto_im())
966 {
967 if (got_int)
968 {
969 (void)vgetc(); /* flush all buffers */
970 got_int = FALSE;
971 }
972 else
973 vim_beep();
974 break;
975 }
976doESCkey:
977 /*
978 * This is the ONLY return from edit()!
979 */
980 /* Always update o_lnum, so that a "CTRL-O ." that adds a line
981 * still puts the cursor back after the inserted text. */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000982 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 o_lnum = curwin->w_cursor.lnum;
984
Bram Moolenaar488c6512005-08-11 20:09:58 +0000985 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +0000986 {
987#ifdef FEAT_AUTOCMD
988 if (cmdchar != 'r' && cmdchar != 'v')
989 apply_autocmds(EVENT_INSERTLEAVE, NULL, NULL,
990 FALSE, curbuf);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +0000991 did_cursorhold = FALSE;
Bram Moolenaar843ee412004-06-30 16:16:41 +0000992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 continue;
996
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000997 case Ctrl_Z: /* suspend when 'insertmode' set */
998 if (!p_im)
999 goto normalchar; /* insert CTRL-Z as normal char */
1000 stuffReadbuff((char_u *)":st\r");
1001 c = Ctrl_O;
1002 /*FALLTHROUGH*/
1003
1004 case Ctrl_O: /* execute one command */
Bram Moolenaare344bea2005-09-01 20:46:49 +00001005#ifdef FEAT_COMPL_FUNC
Bram Moolenaarf75a9632005-09-13 21:20:47 +00001006 if (ctrl_x_mode == CTRL_X_OMNI)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001007 goto docomplete;
1008#endif
1009 if (echeck_abbr(Ctrl_O + ABBR_OFF))
1010 break;
1011 ins_ctrl_o();
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001012
1013#ifdef FEAT_VIRTUALEDIT
1014 /* don't move the cursor left when 'virtualedit' has "onemore". */
1015 if (ve_flags & VE_ONEMORE)
1016 {
1017 ins_at_eol = FALSE;
1018 nomove = TRUE;
1019 }
1020#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001021 count = 0;
1022 goto doESCkey;
1023
Bram Moolenaar572cb562005-08-05 21:35:02 +00001024 case K_INS: /* toggle insert/replace mode */
1025 case K_KINS:
1026 ins_insert(replaceState);
1027 break;
1028
1029 case K_SELECT: /* end of Select mode mapping - ignore */
1030 break;
1031
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001032#ifdef FEAT_SNIFF
1033 case K_SNIFF: /* Sniff command received */
1034 stuffcharReadbuff(K_SNIFF);
1035 goto doESCkey;
1036#endif
1037
1038 case K_HELP: /* Help key works like <ESC> <Help> */
1039 case K_F1:
1040 case K_XF1:
1041 stuffcharReadbuff(K_HELP);
1042 if (p_im)
1043 need_start_insertmode = TRUE;
1044 goto doESCkey;
1045
1046#ifdef FEAT_NETBEANS_INTG
1047 case K_F21: /* NetBeans command */
1048 ++no_mapping; /* don't map the next key hits */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001049 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001050 --no_mapping;
1051 netbeans_keycommand(i);
1052 break;
1053#endif
1054
1055 case K_ZERO: /* Insert the previously inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 case NUL:
1057 case Ctrl_A:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001058 /* For ^@ the trailing ESC will end the insert, unless there is an
1059 * error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
1061 && c != Ctrl_A && !p_im)
1062 goto doESCkey; /* quit insert mode */
1063 inserted_space = FALSE;
1064 break;
1065
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001066 case Ctrl_R: /* insert the contents of a register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 ins_reg();
1068 auto_format(FALSE, TRUE);
1069 inserted_space = FALSE;
1070 break;
1071
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001072 case Ctrl_G: /* commands starting with CTRL-G */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 ins_ctrl_g();
1074 break;
1075
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001076 case Ctrl_HAT: /* switch input mode and/or langmap */
1077 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 break;
1079
1080#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001081 case Ctrl__: /* switch between languages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 if (!p_ari)
1083 goto normalchar;
1084 ins_ctrl_();
1085 break;
1086#endif
1087
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001088 case Ctrl_D: /* Make indent one shiftwidth smaller. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089#if defined(FEAT_INS_EXPAND) && defined(FEAT_FIND_ID)
1090 if (ctrl_x_mode == CTRL_X_PATH_DEFINES)
1091 goto docomplete;
1092#endif
1093 /* FALLTHROUGH */
1094
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001095 case Ctrl_T: /* Make indent one shiftwidth greater. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096# ifdef FEAT_INS_EXPAND
1097 if (c == Ctrl_T && ctrl_x_mode == CTRL_X_THESAURUS)
1098 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001099 if (has_compl_option(FALSE))
1100 goto docomplete;
1101 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 }
1103# endif
1104 ins_shift(c, lastc);
1105 auto_format(FALSE, TRUE);
1106 inserted_space = FALSE;
1107 break;
1108
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001109 case K_DEL: /* delete character under the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 case K_KDEL:
1111 ins_del();
1112 auto_format(FALSE, TRUE);
1113 break;
1114
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001115 case K_BS: /* delete character before the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 case Ctrl_H:
1117 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
1118 auto_format(FALSE, TRUE);
1119 break;
1120
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001121 case Ctrl_W: /* delete word before the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
1123 auto_format(FALSE, TRUE);
1124 break;
1125
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001126 case Ctrl_U: /* delete all inserted text in current line */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001127# ifdef FEAT_COMPL_FUNC
1128 /* CTRL-X CTRL-U completes with 'completefunc'. */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001129 if (ctrl_x_mode == CTRL_X_FUNCTION)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001130 goto docomplete;
1131# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
1133 auto_format(FALSE, TRUE);
1134 inserted_space = FALSE;
1135 break;
1136
1137#ifdef FEAT_MOUSE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001138 case K_LEFTMOUSE: /* mouse keys */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 case K_LEFTMOUSE_NM:
1140 case K_LEFTDRAG:
1141 case K_LEFTRELEASE:
1142 case K_LEFTRELEASE_NM:
1143 case K_MIDDLEMOUSE:
1144 case K_MIDDLEDRAG:
1145 case K_MIDDLERELEASE:
1146 case K_RIGHTMOUSE:
1147 case K_RIGHTDRAG:
1148 case K_RIGHTRELEASE:
1149 case K_X1MOUSE:
1150 case K_X1DRAG:
1151 case K_X1RELEASE:
1152 case K_X2MOUSE:
1153 case K_X2DRAG:
1154 case K_X2RELEASE:
1155 ins_mouse(c);
1156 break;
1157
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001158 case K_MOUSEDOWN: /* Default action for scroll wheel up: scroll up */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001159 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 break;
1161
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001162 case K_MOUSEUP: /* Default action for scroll wheel down: scroll down */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001163 ins_mousescroll(MSCR_UP);
1164 break;
1165
1166 case K_MOUSELEFT: /* Scroll wheel left */
1167 ins_mousescroll(MSCR_LEFT);
1168 break;
1169
1170 case K_MOUSERIGHT: /* Scroll wheel right */
1171 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 break;
1173#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001174#ifdef FEAT_GUI_TABLINE
1175 case K_TABLINE:
1176 case K_TABMENU:
1177 ins_tabline(c);
1178 break;
1179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001181 case K_IGNORE: /* Something mapped to nothing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 break;
1183
Bram Moolenaar754b5602006-02-09 23:53:20 +00001184#ifdef FEAT_AUTOCMD
1185 case K_CURSORHOLD: /* Didn't type something for a while. */
1186 apply_autocmds(EVENT_CURSORHOLDI, NULL, NULL, FALSE, curbuf);
1187 did_cursorhold = TRUE;
1188 break;
1189#endif
1190
Bram Moolenaar4770d092006-01-12 23:22:24 +00001191#ifdef FEAT_GUI_W32
1192 /* On Win32 ignore <M-F4>, we get it when closing the window was
1193 * cancelled. */
1194 case K_F4:
1195 if (mod_mask != MOD_MASK_ALT)
1196 goto normalchar;
1197 break;
1198#endif
1199
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200#ifdef FEAT_GUI
1201 case K_VER_SCROLLBAR:
1202 ins_scroll();
1203 break;
1204
1205 case K_HOR_SCROLLBAR:
1206 ins_horscroll();
1207 break;
1208#endif
1209
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001210 case K_HOME: /* <Home> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 case K_S_HOME:
1213 case K_C_HOME:
1214 ins_home(c);
1215 break;
1216
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001217 case K_END: /* <End> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 case K_S_END:
1220 case K_C_END:
1221 ins_end(c);
1222 break;
1223
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001224 case K_LEFT: /* <Left> */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001225 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1226 ins_s_left();
1227 else
1228 ins_left();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 break;
1230
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001231 case K_S_LEFT: /* <S-Left> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 case K_C_LEFT:
1233 ins_s_left();
1234 break;
1235
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001236 case K_RIGHT: /* <Right> */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001237 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1238 ins_s_right();
1239 else
1240 ins_right();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 break;
1242
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001243 case K_S_RIGHT: /* <S-Right> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 case K_C_RIGHT:
1245 ins_s_right();
1246 break;
1247
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001248 case K_UP: /* <Up> */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001249#ifdef FEAT_INS_EXPAND
1250 if (pum_visible())
1251 goto docomplete;
1252#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001253 if (mod_mask & MOD_MASK_SHIFT)
1254 ins_pageup();
1255 else
1256 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 break;
1258
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001259 case K_S_UP: /* <S-Up> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 case K_PAGEUP:
1261 case K_KPAGEUP:
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001262#ifdef FEAT_INS_EXPAND
Bram Moolenaare3226be2005-12-18 22:10:00 +00001263 if (pum_visible())
1264 goto docomplete;
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001265#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 ins_pageup();
1267 break;
1268
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001269 case K_DOWN: /* <Down> */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001270#ifdef FEAT_INS_EXPAND
1271 if (pum_visible())
1272 goto docomplete;
1273#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001274 if (mod_mask & MOD_MASK_SHIFT)
1275 ins_pagedown();
1276 else
1277 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 break;
1279
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001280 case K_S_DOWN: /* <S-Down> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 case K_PAGEDOWN:
1282 case K_KPAGEDOWN:
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001283#ifdef FEAT_INS_EXPAND
Bram Moolenaare3226be2005-12-18 22:10:00 +00001284 if (pum_visible())
1285 goto docomplete;
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 ins_pagedown();
1288 break;
1289
1290#ifdef FEAT_DND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001291 case K_DROP: /* drag-n-drop event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 ins_drop();
1293 break;
1294#endif
1295
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001296 case K_S_TAB: /* When not mapped, use like a normal TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 c = TAB;
1298 /* FALLTHROUGH */
1299
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001300 case TAB: /* TAB or Complete patterns along path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301#if defined(FEAT_INS_EXPAND) && defined(FEAT_FIND_ID)
1302 if (ctrl_x_mode == CTRL_X_PATH_PATTERNS)
1303 goto docomplete;
1304#endif
1305 inserted_space = FALSE;
1306 if (ins_tab())
1307 goto normalchar; /* insert TAB as a normal char */
1308 auto_format(FALSE, TRUE);
1309 break;
1310
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001311 case K_KENTER: /* <Enter> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 c = CAR;
1313 /* FALLTHROUGH */
1314 case CAR:
1315 case NL:
1316#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1317 /* In a quickfix window a <CR> jumps to the error under the
1318 * cursor. */
1319 if (bt_quickfix(curbuf) && c == CAR)
1320 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001321 if (curwin->w_llist_ref == NULL) /* quickfix window */
1322 do_cmdline_cmd((char_u *)".cc");
1323 else /* location list window */
1324 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 break;
1326 }
1327#endif
1328#ifdef FEAT_CMDWIN
1329 if (cmdwin_type != 0)
1330 {
1331 /* Execute the command in the cmdline window. */
1332 cmdwin_result = CAR;
1333 goto doESCkey;
1334 }
1335#endif
1336 if (ins_eol(c) && !p_im)
1337 goto doESCkey; /* out of memory */
1338 auto_format(FALSE, FALSE);
1339 inserted_space = FALSE;
1340 break;
1341
Bram Moolenaar860cae12010-06-05 23:22:07 +02001342#if defined(FEAT_DIGRAPHS) || defined(FEAT_INS_EXPAND)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001343 case Ctrl_K: /* digraph or keyword completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344# ifdef FEAT_INS_EXPAND
1345 if (ctrl_x_mode == CTRL_X_DICTIONARY)
1346 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001347 if (has_compl_option(TRUE))
1348 goto docomplete;
1349 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 }
1351# endif
1352# ifdef FEAT_DIGRAPHS
1353 c = ins_digraph();
1354 if (c == NUL)
1355 break;
1356# endif
1357 goto normalchar;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359
1360#ifdef FEAT_INS_EXPAND
Bram Moolenaar572cb562005-08-05 21:35:02 +00001361 case Ctrl_X: /* Enter CTRL-X mode */
1362 ins_ctrl_x();
1363 break;
1364
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001365 case Ctrl_RSB: /* Tag name completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 if (ctrl_x_mode != CTRL_X_TAGS)
1367 goto normalchar;
1368 goto docomplete;
1369
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001370 case Ctrl_F: /* File name completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 if (ctrl_x_mode != CTRL_X_FILES)
1372 goto normalchar;
1373 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001374
1375 case 's': /* Spelling completion after ^X */
1376 case Ctrl_S:
1377 if (ctrl_x_mode != CTRL_X_SPELL)
1378 goto normalchar;
1379 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380#endif
1381
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001382 case Ctrl_L: /* Whole line completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383#ifdef FEAT_INS_EXPAND
1384 if (ctrl_x_mode != CTRL_X_WHOLE_LINE)
1385#endif
1386 {
1387 /* CTRL-L with 'insertmode' set: Leave Insert mode */
1388 if (p_im)
1389 {
1390 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1391 break;
1392 goto doESCkey;
1393 }
1394 goto normalchar;
1395 }
1396#ifdef FEAT_INS_EXPAND
1397 /* FALLTHROUGH */
1398
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001399 case Ctrl_P: /* Do previous/next pattern completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 case Ctrl_N:
1401 /* if 'complete' is empty then plain ^P is no longer special,
1402 * but it is under other ^X modes */
1403 if (*curbuf->b_p_cpt == NUL
1404 && ctrl_x_mode != 0
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001405 && !(compl_cont_status & CONT_LOCAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 goto normalchar;
1407
1408docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001409 compl_busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 if (ins_complete(c) == FAIL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001411 compl_cont_status = 0;
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001412 compl_busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 break;
1414#endif /* FEAT_INS_EXPAND */
1415
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001416 case Ctrl_Y: /* copy from previous line or scroll down */
1417 case Ctrl_E: /* copy from next line or scroll up */
1418 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 break;
1420
1421 default:
1422#ifdef UNIX
1423 if (c == intr_char) /* special interrupt char */
1424 goto do_intr;
1425#endif
1426
Bram Moolenaare659c952011-05-19 17:25:41 +02001427normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001429 * Insert a normal character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 */
Bram Moolenaare659c952011-05-19 17:25:41 +02001431#ifdef FEAT_AUTOCMD
1432 if (!p_paste)
1433 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001434 /* Trigger InsertCharPre. */
1435 char_u *str = do_insert_char_pre(c);
1436 char_u *p;
1437
1438 if (str != NULL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001439 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001440 if (*str != NUL && stop_arrow() != FAIL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001441 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001442 /* Insert the new value of v:char literally. */
1443 for (p = str; *p != NUL; mb_ptr_adv(p))
Bram Moolenaare659c952011-05-19 17:25:41 +02001444 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001445 c = PTR2CHAR(p);
1446 if (c == CAR || c == K_KENTER || c == NL)
1447 ins_eol(c);
1448 else
1449 ins_char(c);
Bram Moolenaare659c952011-05-19 17:25:41 +02001450 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001451 AppendToRedobuffLit(str, -1);
Bram Moolenaare659c952011-05-19 17:25:41 +02001452 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001453 vim_free(str);
1454 c = NUL;
Bram Moolenaare659c952011-05-19 17:25:41 +02001455 }
1456
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001457 /* If the new value is already inserted or an empty string
1458 * then don't insert any character. */
Bram Moolenaare659c952011-05-19 17:25:41 +02001459 if (c == NUL)
1460 break;
1461 }
1462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463#ifdef FEAT_SMARTINDENT
1464 /* Try to perform smart-indenting. */
1465 ins_try_si(c);
1466#endif
1467
1468 if (c == ' ')
1469 {
1470 inserted_space = TRUE;
1471#ifdef FEAT_CINDENT
1472 if (inindent(0))
1473 can_cindent = FALSE;
1474#endif
1475 if (Insstart_blank_vcol == MAXCOL
1476 && curwin->w_cursor.lnum == Insstart.lnum)
1477 Insstart_blank_vcol = get_nolist_virtcol();
1478 }
1479
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02001480 /* Insert a normal character and check for abbreviations on a
1481 * special character. Let CTRL-] expand abbreviations without
1482 * inserting it. */
1483 if (vim_iswordc(c) || (!echeck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484#ifdef FEAT_MBYTE
1485 /* Add ABBR_OFF for characters above 0x100, this is
1486 * what check_abbr() expects. */
1487 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1488#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001489 c) && c != Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 {
1491 insert_special(c, FALSE, FALSE);
1492#ifdef FEAT_RIGHTLEFT
1493 revins_legal++;
1494 revins_chars++;
1495#endif
1496 }
1497
1498 auto_format(FALSE, TRUE);
1499
1500#ifdef FEAT_FOLDING
1501 /* When inserting a character the cursor line must never be in a
1502 * closed fold. */
1503 foldOpenCursor();
1504#endif
1505 break;
1506 } /* end of switch (c) */
1507
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001508#ifdef FEAT_AUTOCMD
1509 /* If typed something may trigger CursorHoldI again. */
1510 if (c != K_CURSORHOLD)
1511 did_cursorhold = FALSE;
1512#endif
1513
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 /* If the cursor was moved we didn't just insert a space */
1515 if (arrow_used)
1516 inserted_space = FALSE;
1517
1518#ifdef FEAT_CINDENT
1519 if (can_cindent && cindent_on()
1520# ifdef FEAT_INS_EXPAND
1521 && ctrl_x_mode == 0
1522# endif
1523 )
1524 {
1525force_cindent:
1526 /*
1527 * Indent now if a key was typed that is in 'cinkeys'.
1528 */
1529 if (in_cinkeys(c, ' ', line_is_white))
1530 {
1531 if (stop_arrow() == OK)
1532 /* re-indent the current line */
1533 do_c_expr_indent();
1534 }
1535 }
1536#endif /* FEAT_CINDENT */
1537
1538 } /* for (;;) */
1539 /* NOTREACHED */
1540}
1541
1542/*
1543 * Redraw for Insert mode.
1544 * This is postponed until getting the next character to make '$' in the 'cpo'
1545 * option work correctly.
1546 * Only redraw when there are no characters available. This speeds up
1547 * inserting sequences of characters (e.g., for CTRL-R).
1548 */
1549 static void
Bram Moolenaar754b5602006-02-09 23:53:20 +00001550ins_redraw(ready)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00001551 int ready UNUSED; /* not busy with something */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001553#ifdef FEAT_CONCEAL
1554 linenr_T conceal_old_cursor_line = 0;
1555 linenr_T conceal_new_cursor_line = 0;
1556 int conceal_update_lines = FALSE;
1557#endif
1558
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 if (!char_avail())
1560 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001561#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001562 /* Trigger CursorMoved if the cursor moved. Not when the popup menu is
1563 * visible, the command might delete it. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001564 if (ready && (
1565# ifdef FEAT_AUTOCMD
1566 has_cursormovedI()
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001567# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001568# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1569 ||
1570# endif
1571# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001572 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001573# endif
1574 )
1575 && !equalpos(last_cursormoved, curwin->w_cursor)
1576# ifdef FEAT_INS_EXPAND
1577 && !pum_visible()
1578# endif
1579 )
Bram Moolenaar754b5602006-02-09 23:53:20 +00001580 {
Bram Moolenaare77c7602008-01-12 17:13:50 +00001581# ifdef FEAT_SYN_HL
1582 /* Need to update the screen first, to make sure syntax
1583 * highlighting is correct after making a change (e.g., inserting
1584 * a "(". The autocommand may also require a redraw, so it's done
1585 * again below, unfortunately. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001586 if (syntax_present(curwin) && must_redraw)
Bram Moolenaare77c7602008-01-12 17:13:50 +00001587 update_screen(0);
1588# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001589# ifdef FEAT_AUTOCMD
1590 if (has_cursormovedI())
1591 apply_autocmds(EVENT_CURSORMOVEDI, NULL, NULL, FALSE, curbuf);
1592# endif
1593# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001594 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001595 {
1596 conceal_old_cursor_line = last_cursormoved.lnum;
1597 conceal_new_cursor_line = curwin->w_cursor.lnum;
1598 conceal_update_lines = TRUE;
1599 }
1600# endif
Bram Moolenaar754b5602006-02-09 23:53:20 +00001601 last_cursormoved = curwin->w_cursor;
1602 }
1603#endif
Bram Moolenaar186628f2013-03-19 13:33:23 +01001604#ifdef FEAT_AUTOCMD
1605 /* Trigger TextChangedI if b_changedtick differs. */
1606 if (!ready && has_textchangedI()
1607 && last_changedtick != curbuf->b_changedtick
1608# ifdef FEAT_INS_EXPAND
1609 && !pum_visible()
1610# endif
1611 )
1612 {
1613 if (last_changedtick_buf == curbuf)
1614 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf);
1615 last_changedtick_buf = curbuf;
1616 last_changedtick = curbuf->b_changedtick;
1617 }
1618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 if (must_redraw)
1620 update_screen(0);
1621 else if (clear_cmdline || redraw_cmdline)
1622 showmode(); /* clear cmdline and show mode */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001623# if defined(FEAT_CONCEAL)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001624 if ((conceal_update_lines
1625 && (conceal_old_cursor_line != conceal_new_cursor_line
1626 || conceal_cursor_line(curwin)))
1627 || need_cursor_line_redraw)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001628 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001629 if (conceal_old_cursor_line != conceal_new_cursor_line)
1630 update_single_line(curwin, conceal_old_cursor_line);
1631 update_single_line(curwin, conceal_new_cursor_line == 0
1632 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001633 curwin->w_valid &= ~VALID_CROW;
1634 }
1635# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 showruler(FALSE);
1637 setcursor();
1638 emsg_on_display = FALSE; /* may remove error message now */
1639 }
1640}
1641
1642/*
1643 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1644 */
1645 static void
1646ins_ctrl_v()
1647{
1648 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001649 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650
1651 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00001652 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653
1654 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001655 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001657 did_putchar = TRUE;
1658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 AppendToRedobuff((char_u *)CTRL_V_STR); /* CTRL-V */
1660
1661#ifdef FEAT_CMDL_INFO
1662 add_to_showcmd_c(Ctrl_V);
1663#endif
1664
1665 c = get_literal();
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001666 if (did_putchar)
1667 /* when the line fits in 'columns' the '^' is at the start of the next
1668 * line and will not removed by the redraw */
1669 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670#ifdef FEAT_CMDL_INFO
1671 clear_showcmd();
1672#endif
1673 insert_special(c, FALSE, TRUE);
1674#ifdef FEAT_RIGHTLEFT
1675 revins_chars++;
1676 revins_legal++;
1677#endif
1678}
1679
1680/*
1681 * Put a character directly onto the screen. It's not stored in a buffer.
1682 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1683 */
1684static int pc_status;
1685#define PC_STATUS_UNSET 0 /* pc_bytes was not set */
1686#define PC_STATUS_RIGHT 1 /* right halve of double-wide char */
1687#define PC_STATUS_LEFT 2 /* left halve of double-wide char */
1688#define PC_STATUS_SET 3 /* pc_bytes was filled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689static char_u pc_bytes[MB_MAXBYTES + 1]; /* saved bytes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690static int pc_attr;
1691static int pc_row;
1692static int pc_col;
1693
1694 void
1695edit_putchar(c, highlight)
1696 int c;
1697 int highlight;
1698{
1699 int attr;
1700
1701 if (ScreenLines != NULL)
1702 {
1703 update_topline(); /* just in case w_topline isn't valid */
1704 validate_cursor();
1705 if (highlight)
1706 attr = hl_attr(HLF_8);
1707 else
1708 attr = 0;
1709 pc_row = W_WINROW(curwin) + curwin->w_wrow;
1710 pc_col = W_WINCOL(curwin);
1711#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
1712 pc_status = PC_STATUS_UNSET;
1713#endif
1714#ifdef FEAT_RIGHTLEFT
1715 if (curwin->w_p_rl)
1716 {
1717 pc_col += W_WIDTH(curwin) - 1 - curwin->w_wcol;
1718# ifdef FEAT_MBYTE
1719 if (has_mbyte)
1720 {
1721 int fix_col = mb_fix_col(pc_col, pc_row);
1722
1723 if (fix_col != pc_col)
1724 {
1725 screen_putchar(' ', pc_row, fix_col, attr);
1726 --curwin->w_wcol;
1727 pc_status = PC_STATUS_RIGHT;
1728 }
1729 }
1730# endif
1731 }
1732 else
1733#endif
1734 {
1735 pc_col += curwin->w_wcol;
1736#ifdef FEAT_MBYTE
1737 if (mb_lefthalve(pc_row, pc_col))
1738 pc_status = PC_STATUS_LEFT;
1739#endif
1740 }
1741
1742 /* save the character to be able to put it back */
1743#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
1744 if (pc_status == PC_STATUS_UNSET)
1745#endif
1746 {
1747 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1748 pc_status = PC_STATUS_SET;
1749 }
1750 screen_putchar(c, pc_row, pc_col, attr);
1751 }
1752}
1753
1754/*
1755 * Undo the previous edit_putchar().
1756 */
1757 void
1758edit_unputchar()
1759{
1760 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1761 {
1762#if defined(FEAT_MBYTE)
1763 if (pc_status == PC_STATUS_RIGHT)
1764 ++curwin->w_wcol;
1765 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
1766 redrawWinline(curwin->w_cursor.lnum, FALSE);
1767 else
1768#endif
1769 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1770 }
1771}
1772
1773/*
1774 * Called when p_dollar is set: display a '$' at the end of the changed text
1775 * Only works when cursor is in the line that changes.
1776 */
1777 void
1778display_dollar(col)
1779 colnr_T col;
1780{
1781 colnr_T save_col;
1782
1783 if (!redrawing())
1784 return;
1785
1786 cursor_off();
1787 save_col = curwin->w_cursor.col;
1788 curwin->w_cursor.col = col;
1789#ifdef FEAT_MBYTE
1790 if (has_mbyte)
1791 {
1792 char_u *p;
1793
1794 /* If on the last byte of a multi-byte move to the first byte. */
1795 p = ml_get_curline();
1796 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1797 }
1798#endif
1799 curs_columns(FALSE); /* recompute w_wrow and w_wcol */
1800 if (curwin->w_wcol < W_WIDTH(curwin))
1801 {
1802 edit_putchar('$', FALSE);
1803 dollar_vcol = curwin->w_virtcol;
1804 }
1805 curwin->w_cursor.col = save_col;
1806}
1807
1808/*
1809 * Call this function before moving the cursor from the normal insert position
1810 * in insert mode.
1811 */
1812 static void
1813undisplay_dollar()
1814{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001815 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001817 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 redrawWinline(curwin->w_cursor.lnum, FALSE);
1819 }
1820}
1821
1822/*
1823 * Insert an indent (for <Tab> or CTRL-T) or delete an indent (for CTRL-D).
1824 * Keep the cursor on the same character.
1825 * type == INDENT_INC increase indent (for CTRL-T or <Tab>)
1826 * type == INDENT_DEC decrease indent (for CTRL-D)
1827 * type == INDENT_SET set indent to "amount"
1828 * if round is TRUE, round the indent to 'shiftwidth' (only with _INC and _Dec).
1829 */
1830 void
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001831change_indent(type, amount, round, replaced, call_changed_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 int type;
1833 int amount;
1834 int round;
1835 int replaced; /* replaced character, put on replace stack */
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001836 int call_changed_bytes; /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837{
1838 int vcol;
1839 int last_vcol;
1840 int insstart_less; /* reduction for Insstart.col */
1841 int new_cursor_col;
1842 int i;
1843 char_u *ptr;
1844 int save_p_list;
1845 int start_col;
1846 colnr_T vc;
1847#ifdef FEAT_VREPLACE
1848 colnr_T orig_col = 0; /* init for GCC */
1849 char_u *new_line, *orig_line = NULL; /* init for GCC */
1850
1851 /* VREPLACE mode needs to know what the line was like before changing */
1852 if (State & VREPLACE_FLAG)
1853 {
1854 orig_line = vim_strsave(ml_get_curline()); /* Deal with NULL below */
1855 orig_col = curwin->w_cursor.col;
1856 }
1857#endif
1858
1859 /* for the following tricks we don't want list mode */
1860 save_p_list = curwin->w_p_list;
1861 curwin->w_p_list = FALSE;
1862 vc = getvcol_nolist(&curwin->w_cursor);
1863 vcol = vc;
1864
1865 /*
1866 * For Replace mode we need to fix the replace stack later, which is only
1867 * possible when the cursor is in the indent. Remember the number of
1868 * characters before the cursor if it's possible.
1869 */
1870 start_col = curwin->w_cursor.col;
1871
1872 /* determine offset from first non-blank */
1873 new_cursor_col = curwin->w_cursor.col;
1874 beginline(BL_WHITE);
1875 new_cursor_col -= curwin->w_cursor.col;
1876
1877 insstart_less = curwin->w_cursor.col;
1878
1879 /*
1880 * If the cursor is in the indent, compute how many screen columns the
1881 * cursor is to the left of the first non-blank.
1882 */
1883 if (new_cursor_col < 0)
1884 vcol = get_indent() - vcol;
1885
1886 if (new_cursor_col > 0) /* can't fix replace stack */
1887 start_col = -1;
1888
1889 /*
1890 * Set the new indent. The cursor will be put on the first non-blank.
1891 */
1892 if (type == INDENT_SET)
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001893 (void)set_indent(amount, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 else
1895 {
1896#ifdef FEAT_VREPLACE
1897 int save_State = State;
1898
1899 /* Avoid being called recursively. */
1900 if (State & VREPLACE_FLAG)
1901 State = INSERT;
1902#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001903 shift_line(type == INDENT_DEC, round, 1, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904#ifdef FEAT_VREPLACE
1905 State = save_State;
1906#endif
1907 }
1908 insstart_less -= curwin->w_cursor.col;
1909
1910 /*
1911 * Try to put cursor on same character.
1912 * If the cursor is at or after the first non-blank in the line,
1913 * compute the cursor column relative to the column of the first
1914 * non-blank character.
1915 * If we are not in insert mode, leave the cursor on the first non-blank.
1916 * If the cursor is before the first non-blank, position it relative
1917 * to the first non-blank, counted in screen columns.
1918 */
1919 if (new_cursor_col >= 0)
1920 {
1921 /*
1922 * When changing the indent while the cursor is touching it, reset
1923 * Insstart_col to 0.
1924 */
1925 if (new_cursor_col == 0)
1926 insstart_less = MAXCOL;
1927 new_cursor_col += curwin->w_cursor.col;
1928 }
1929 else if (!(State & INSERT))
1930 new_cursor_col = curwin->w_cursor.col;
1931 else
1932 {
1933 /*
1934 * Compute the screen column where the cursor should be.
1935 */
1936 vcol = get_indent() - vcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001937 curwin->w_virtcol = (colnr_T)((vcol < 0) ? 0 : vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938
1939 /*
1940 * Advance the cursor until we reach the right screen column.
1941 */
1942 vcol = last_vcol = 0;
1943 new_cursor_col = -1;
1944 ptr = ml_get_curline();
1945 while (vcol <= (int)curwin->w_virtcol)
1946 {
1947 last_vcol = vcol;
1948#ifdef FEAT_MBYTE
1949 if (has_mbyte && new_cursor_col >= 0)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001950 new_cursor_col += (*mb_ptr2len)(ptr + new_cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 else
1952#endif
1953 ++new_cursor_col;
1954 vcol += lbr_chartabsize(ptr + new_cursor_col, (colnr_T)vcol);
1955 }
1956 vcol = last_vcol;
1957
1958 /*
1959 * May need to insert spaces to be able to position the cursor on
1960 * the right screen column.
1961 */
1962 if (vcol != (int)curwin->w_virtcol)
1963 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001964 curwin->w_cursor.col = (colnr_T)new_cursor_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 i = (int)curwin->w_virtcol - vcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001966 ptr = alloc((unsigned)(i + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 if (ptr != NULL)
1968 {
1969 new_cursor_col += i;
1970 ptr[i] = NUL;
1971 while (--i >= 0)
1972 ptr[i] = ' ';
1973 ins_str(ptr);
1974 vim_free(ptr);
1975 }
1976 }
1977
1978 /*
1979 * When changing the indent while the cursor is in it, reset
1980 * Insstart_col to 0.
1981 */
1982 insstart_less = MAXCOL;
1983 }
1984
1985 curwin->w_p_list = save_p_list;
1986
1987 if (new_cursor_col <= 0)
1988 curwin->w_cursor.col = 0;
1989 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001990 curwin->w_cursor.col = (colnr_T)new_cursor_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 curwin->w_set_curswant = TRUE;
1992 changed_cline_bef_curs();
1993
1994 /*
1995 * May have to adjust the start of the insert.
1996 */
1997 if (State & INSERT)
1998 {
1999 if (curwin->w_cursor.lnum == Insstart.lnum && Insstart.col != 0)
2000 {
2001 if ((int)Insstart.col <= insstart_less)
2002 Insstart.col = 0;
2003 else
2004 Insstart.col -= insstart_less;
2005 }
2006 if ((int)ai_col <= insstart_less)
2007 ai_col = 0;
2008 else
2009 ai_col -= insstart_less;
2010 }
2011
2012 /*
2013 * For REPLACE mode, may have to fix the replace stack, if it's possible.
2014 * If the number of characters before the cursor decreased, need to pop a
2015 * few characters from the replace stack.
2016 * If the number of characters before the cursor increased, need to push a
2017 * few NULs onto the replace stack.
2018 */
2019 if (REPLACE_NORMAL(State) && start_col >= 0)
2020 {
2021 while (start_col > (int)curwin->w_cursor.col)
2022 {
2023 replace_join(0); /* remove a NUL from the replace stack */
2024 --start_col;
2025 }
2026 while (start_col < (int)curwin->w_cursor.col || replaced)
2027 {
2028 replace_push(NUL);
2029 if (replaced)
2030 {
2031 replace_push(replaced);
2032 replaced = NUL;
2033 }
2034 ++start_col;
2035 }
2036 }
2037
2038#ifdef FEAT_VREPLACE
2039 /*
2040 * For VREPLACE mode, we also have to fix the replace stack. In this case
2041 * it is always possible because we backspace over the whole line and then
2042 * put it back again the way we wanted it.
2043 */
2044 if (State & VREPLACE_FLAG)
2045 {
2046 /* If orig_line didn't allocate, just return. At least we did the job,
2047 * even if you can't backspace. */
2048 if (orig_line == NULL)
2049 return;
2050
2051 /* Save new line */
2052 new_line = vim_strsave(ml_get_curline());
2053 if (new_line == NULL)
2054 return;
2055
2056 /* We only put back the new line up to the cursor */
2057 new_line[curwin->w_cursor.col] = NUL;
2058
2059 /* Put back original line */
2060 ml_replace(curwin->w_cursor.lnum, orig_line, FALSE);
2061 curwin->w_cursor.col = orig_col;
2062
2063 /* Backspace from cursor to start of line */
2064 backspace_until_column(0);
2065
2066 /* Insert new stuff into line again */
2067 ins_bytes(new_line);
2068
2069 vim_free(new_line);
2070 }
2071#endif
2072}
2073
2074/*
2075 * Truncate the space at the end of a line. This is to be used only in an
2076 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
2077 * modes.
2078 */
2079 void
2080truncate_spaces(line)
2081 char_u *line;
2082{
2083 int i;
2084
2085 /* find start of trailing white space */
2086 for (i = (int)STRLEN(line) - 1; i >= 0 && vim_iswhite(line[i]); i--)
2087 {
2088 if (State & REPLACE_FLAG)
2089 replace_join(0); /* remove a NUL from the replace stack */
2090 }
2091 line[i + 1] = NUL;
2092}
2093
2094#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
2095 || defined(FEAT_COMMENTS) || defined(PROTO)
2096/*
2097 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
2098 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002099 * Will attempt not to go before "col" even when there is a composing
2100 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 */
2102 void
2103backspace_until_column(col)
2104 int col;
2105{
2106 while ((int)curwin->w_cursor.col > col)
2107 {
2108 curwin->w_cursor.col--;
2109 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002110 replace_do_bs(col);
2111 else if (!del_char_after_col(col))
2112 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 }
2114}
2115#endif
2116
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002117/*
2118 * Like del_char(), but make sure not to go before column "limit_col".
2119 * Only matters when there are composing characters.
2120 * Return TRUE when something was deleted.
2121 */
2122 static int
2123del_char_after_col(limit_col)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00002124 int limit_col UNUSED;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002125{
2126#ifdef FEAT_MBYTE
2127 if (enc_utf8 && limit_col >= 0)
2128 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002129 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002130
2131 /* Make sure the cursor is at the start of a character, but
2132 * skip forward again when going too far back because of a
2133 * composing character. */
2134 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00002135 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002136 {
2137 int l = utf_ptr2len(ml_get_cursor());
2138
2139 if (l == 0) /* end of line */
2140 break;
2141 curwin->w_cursor.col += l;
2142 }
2143 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
2144 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002145 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002146 }
2147 else
2148#endif
2149 (void)del_char(FALSE);
2150 return TRUE;
2151}
2152
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153#if defined(FEAT_INS_EXPAND) || defined(PROTO)
2154/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002155 * CTRL-X pressed in Insert mode.
2156 */
2157 static void
2158ins_ctrl_x()
2159{
2160 /* CTRL-X after CTRL-X CTRL-V doesn't do anything, so that CTRL-X
2161 * CTRL-V works like CTRL-N */
2162 if (ctrl_x_mode != CTRL_X_CMDLINE)
2163 {
2164 /* if the next ^X<> won't ADD nothing, then reset
2165 * compl_cont_status */
2166 if (compl_cont_status & CONT_N_ADDS)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002167 compl_cont_status |= CONT_INTRPT;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002168 else
2169 compl_cont_status = 0;
2170 /* We're not sure which CTRL-X mode it will be yet */
2171 ctrl_x_mode = CTRL_X_NOT_DEFINED_YET;
2172 edit_submode = (char_u *)_(CTRL_X_MSG(ctrl_x_mode));
2173 edit_submode_pre = NULL;
2174 showmode();
2175 }
2176}
2177
2178/*
2179 * Return TRUE if the 'dict' or 'tsr' option can be used.
2180 */
2181 static int
2182has_compl_option(dict_opt)
2183 int dict_opt;
2184{
Bram Moolenaar0b238792006-03-02 22:49:12 +00002185 if (dict_opt ? (*curbuf->b_p_dict == NUL && *p_dict == NUL
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002186# ifdef FEAT_SPELL
2187 && !curwin->w_p_spell
2188# endif
2189 )
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002190 : (*curbuf->b_p_tsr == NUL && *p_tsr == NUL))
2191 {
2192 ctrl_x_mode = 0;
2193 edit_submode = NULL;
2194 msg_attr(dict_opt ? (char_u *)_("'dictionary' option is empty")
2195 : (char_u *)_("'thesaurus' option is empty"),
2196 hl_attr(HLF_E));
2197 if (emsg_silent == 0)
2198 {
2199 vim_beep();
2200 setcursor();
2201 out_flush();
2202 ui_delay(2000L, FALSE);
2203 }
2204 return FALSE;
2205 }
2206 return TRUE;
2207}
2208
2209/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 * Is the character 'c' a valid key to go to or keep us in CTRL-X mode?
2211 * This depends on the current mode.
2212 */
2213 int
2214vim_is_ctrl_x_key(c)
2215 int c;
2216{
2217 /* Always allow ^R - let it's results then be checked */
2218 if (c == Ctrl_R)
2219 return TRUE;
2220
Bram Moolenaare3226be2005-12-18 22:10:00 +00002221 /* Accept <PageUp> and <PageDown> if the popup menu is visible. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002222 if (ins_compl_pum_key(c))
Bram Moolenaare3226be2005-12-18 22:10:00 +00002223 return TRUE;
2224
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 switch (ctrl_x_mode)
2226 {
2227 case 0: /* Not in any CTRL-X mode */
2228 return (c == Ctrl_N || c == Ctrl_P || c == Ctrl_X);
2229 case CTRL_X_NOT_DEFINED_YET:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002230 return ( c == Ctrl_X || c == Ctrl_Y || c == Ctrl_E
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 || c == Ctrl_L || c == Ctrl_F || c == Ctrl_RSB
2232 || c == Ctrl_I || c == Ctrl_D || c == Ctrl_P
2233 || c == Ctrl_N || c == Ctrl_T || c == Ctrl_V
Bram Moolenaar488c6512005-08-11 20:09:58 +00002234 || c == Ctrl_Q || c == Ctrl_U || c == Ctrl_O
Bram Moolenaarbbd9fd72011-12-23 13:15:03 +01002235 || c == Ctrl_S || c == Ctrl_K || c == 's');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 case CTRL_X_SCROLL:
2237 return (c == Ctrl_Y || c == Ctrl_E);
2238 case CTRL_X_WHOLE_LINE:
2239 return (c == Ctrl_L || c == Ctrl_P || c == Ctrl_N);
2240 case CTRL_X_FILES:
2241 return (c == Ctrl_F || c == Ctrl_P || c == Ctrl_N);
2242 case CTRL_X_DICTIONARY:
2243 return (c == Ctrl_K || c == Ctrl_P || c == Ctrl_N);
2244 case CTRL_X_THESAURUS:
2245 return (c == Ctrl_T || c == Ctrl_P || c == Ctrl_N);
2246 case CTRL_X_TAGS:
2247 return (c == Ctrl_RSB || c == Ctrl_P || c == Ctrl_N);
2248#ifdef FEAT_FIND_ID
2249 case CTRL_X_PATH_PATTERNS:
2250 return (c == Ctrl_P || c == Ctrl_N);
2251 case CTRL_X_PATH_DEFINES:
2252 return (c == Ctrl_D || c == Ctrl_P || c == Ctrl_N);
2253#endif
2254 case CTRL_X_CMDLINE:
2255 return (c == Ctrl_V || c == Ctrl_Q || c == Ctrl_P || c == Ctrl_N
2256 || c == Ctrl_X);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002257#ifdef FEAT_COMPL_FUNC
2258 case CTRL_X_FUNCTION:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002259 return (c == Ctrl_U || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002260 case CTRL_X_OMNI:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002261 return (c == Ctrl_O || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002262#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00002263 case CTRL_X_SPELL:
2264 return (c == Ctrl_S || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 }
2266 EMSG(_(e_internal));
2267 return FALSE;
2268}
2269
2270/*
Bram Moolenaar711d5b52007-10-19 18:40:51 +00002271 * Return TRUE when character "c" is part of the item currently being
2272 * completed. Used to decide whether to abandon complete mode when the menu
2273 * is visible.
2274 */
2275 static int
2276ins_compl_accept_char(c)
2277 int c;
2278{
2279 if (ctrl_x_mode & CTRL_X_WANT_IDENT)
2280 /* When expanding an identifier only accept identifier chars. */
2281 return vim_isIDc(c);
2282
2283 switch (ctrl_x_mode)
2284 {
2285 case CTRL_X_FILES:
2286 /* When expanding file name only accept file name chars. But not
2287 * path separators, so that "proto/<Tab>" expands files in
2288 * "proto", not "proto/" as a whole */
2289 return vim_isfilec(c) && !vim_ispathsep(c);
2290
2291 case CTRL_X_CMDLINE:
2292 case CTRL_X_OMNI:
2293 /* Command line and Omni completion can work with just about any
2294 * printable character, but do stop at white space. */
2295 return vim_isprintc(c) && !vim_iswhite(c);
2296
2297 case CTRL_X_WHOLE_LINE:
2298 /* For while line completion a space can be part of the line. */
2299 return vim_isprintc(c);
2300 }
2301 return vim_iswordc(c);
2302}
2303
2304/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002305 * This is like ins_compl_add(), but if 'ic' and 'inf' are set, then the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 * case of the originally typed text is used, and the case of the completed
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00002307 * text is inferred, ie this tries to work out what case you probably wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 * the rest of the word to be in -- webb
2309 */
2310 int
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002311ins_compl_add_infercase(str, len, icase, fname, dir, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 char_u *str;
2313 int len;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002314 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 char_u *fname;
2316 int dir;
Bram Moolenaar572cb562005-08-05 21:35:02 +00002317 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318{
Bram Moolenaara2993e12007-08-12 14:38:46 +00002319 char_u *p;
2320 int i, c;
2321 int actual_len; /* Take multi-byte characters */
2322 int actual_compl_length; /* into account. */
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002323 int min_len;
Bram Moolenaar97b98102009-11-17 16:41:01 +00002324 int *wca; /* Wide character array. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 int has_lower = FALSE;
2326 int was_letter = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327
Bram Moolenaare40e57c2007-11-08 12:04:26 +00002328 if (p_ic && curbuf->b_p_inf && len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002330 /* Infer case of completed part. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331
Bram Moolenaara2993e12007-08-12 14:38:46 +00002332 /* Find actual length of completion. */
2333#ifdef FEAT_MBYTE
2334 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002336 p = str;
2337 actual_len = 0;
2338 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002340 mb_ptr_adv(p);
2341 ++actual_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 }
2343 }
Bram Moolenaara2993e12007-08-12 14:38:46 +00002344 else
2345#endif
2346 actual_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347
Bram Moolenaara2993e12007-08-12 14:38:46 +00002348 /* Find actual length of original text. */
2349#ifdef FEAT_MBYTE
2350 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002352 p = compl_orig_text;
2353 actual_compl_length = 0;
2354 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002356 mb_ptr_adv(p);
2357 ++actual_compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 }
2359 }
Bram Moolenaara2993e12007-08-12 14:38:46 +00002360 else
2361#endif
2362 actual_compl_length = compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002364 /* "actual_len" may be smaller than "actual_compl_length" when using
2365 * thesaurus, only use the minimum when comparing. */
2366 min_len = actual_len < actual_compl_length
2367 ? actual_len : actual_compl_length;
2368
Bram Moolenaara2993e12007-08-12 14:38:46 +00002369 /* Allocate wide character array for the completion and fill it. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002370 wca = (int *)alloc((unsigned)(actual_len * sizeof(int)));
Bram Moolenaara2993e12007-08-12 14:38:46 +00002371 if (wca != NULL)
2372 {
2373 p = str;
2374 for (i = 0; i < actual_len; ++i)
2375#ifdef FEAT_MBYTE
2376 if (has_mbyte)
2377 wca[i] = mb_ptr2char_adv(&p);
2378 else
2379#endif
2380 wca[i] = *(p++);
2381
2382 /* Rule 1: Were any chars converted to lower? */
2383 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002384 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002385 {
2386#ifdef FEAT_MBYTE
2387 if (has_mbyte)
2388 c = mb_ptr2char_adv(&p);
2389 else
2390#endif
2391 c = *(p++);
2392 if (MB_ISLOWER(c))
2393 {
2394 has_lower = TRUE;
2395 if (MB_ISUPPER(wca[i]))
2396 {
2397 /* Rule 1 is satisfied. */
2398 for (i = actual_compl_length; i < actual_len; ++i)
2399 wca[i] = MB_TOLOWER(wca[i]);
2400 break;
2401 }
2402 }
2403 }
2404
2405 /*
2406 * Rule 2: No lower case, 2nd consecutive letter converted to
2407 * upper case.
2408 */
2409 if (!has_lower)
2410 {
2411 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002412 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002413 {
2414#ifdef FEAT_MBYTE
2415 if (has_mbyte)
2416 c = mb_ptr2char_adv(&p);
2417 else
2418#endif
2419 c = *(p++);
2420 if (was_letter && MB_ISUPPER(c) && MB_ISLOWER(wca[i]))
2421 {
2422 /* Rule 2 is satisfied. */
2423 for (i = actual_compl_length; i < actual_len; ++i)
2424 wca[i] = MB_TOUPPER(wca[i]);
2425 break;
2426 }
2427 was_letter = MB_ISLOWER(c) || MB_ISUPPER(c);
2428 }
2429 }
2430
2431 /* Copy the original case of the part we typed. */
2432 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002433 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002434 {
2435#ifdef FEAT_MBYTE
2436 if (has_mbyte)
2437 c = mb_ptr2char_adv(&p);
2438 else
2439#endif
2440 c = *(p++);
2441 if (MB_ISLOWER(c))
2442 wca[i] = MB_TOLOWER(wca[i]);
2443 else if (MB_ISUPPER(c))
2444 wca[i] = MB_TOUPPER(wca[i]);
2445 }
2446
Bram Moolenaare40e57c2007-11-08 12:04:26 +00002447 /*
Bram Moolenaara2993e12007-08-12 14:38:46 +00002448 * Generate encoding specific output from wide character array.
2449 * Multi-byte characters can occupy up to five bytes more than
2450 * ASCII characters, and we also need one byte for NUL, so stay
2451 * six bytes away from the edge of IObuff.
2452 */
2453 p = IObuff;
2454 i = 0;
2455 while (i < actual_len && (p - IObuff + 6) < IOSIZE)
2456#ifdef FEAT_MBYTE
2457 if (has_mbyte)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00002458 p += (*mb_char2bytes)(wca[i++], p);
Bram Moolenaara2993e12007-08-12 14:38:46 +00002459 else
2460#endif
2461 *(p++) = wca[i++];
2462 *p = NUL;
2463
2464 vim_free(wca);
2465 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002467 return ins_compl_add(IObuff, len, icase, fname, NULL, dir,
2468 flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 }
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002470 return ins_compl_add(str, len, icase, fname, NULL, dir, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471}
2472
2473/*
2474 * Add a match to the list of matches.
2475 * If the given string is already in the list of completions, then return
Bram Moolenaar572cb562005-08-05 21:35:02 +00002476 * NOTDONE, otherwise add it to the list and return OK. If there is an error,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002477 * maybe because alloc() returns NULL, then FAIL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002479 static int
Bram Moolenaar89d40322006-08-29 15:30:07 +00002480ins_compl_add(str, len, icase, fname, cptext, cdir, flags, adup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 char_u *str;
2482 int len;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002483 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 char_u *fname;
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002485 char_u **cptext; /* extra text for popup menu or NULL */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002486 int cdir;
Bram Moolenaar572cb562005-08-05 21:35:02 +00002487 int flags;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002488 int adup; /* accept duplicate match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489{
Bram Moolenaar572cb562005-08-05 21:35:02 +00002490 compl_T *match;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002491 int dir = (cdir == 0 ? compl_direction : cdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492
2493 ui_breakcheck();
2494 if (got_int)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002495 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 if (len < 0)
2497 len = (int)STRLEN(str);
2498
2499 /*
2500 * If the same match is already present, don't add it.
2501 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002502 if (compl_first_match != NULL && !adup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002504 match = compl_first_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 do
2506 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002507 if ( !(match->cp_flags & ORIGINAL_TEXT)
Bram Moolenaar5948a572006-10-03 13:49:29 +00002508 && STRNCMP(match->cp_str, str, len) == 0
Bram Moolenaar572cb562005-08-05 21:35:02 +00002509 && match->cp_str[len] == NUL)
2510 return NOTDONE;
2511 match = match->cp_next;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002512 } while (match != NULL && match != compl_first_match);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 }
2514
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002515 /* Remove any popup menu before changing the list of matches. */
2516 ins_compl_del_pum();
2517
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 /*
2519 * Allocate a new match structure.
2520 * Copy the values to the new match structure.
2521 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002522 match = (compl_T *)alloc_clear((unsigned)sizeof(compl_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 if (match == NULL)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002524 return FAIL;
2525 match->cp_number = -1;
2526 if (flags & ORIGINAL_TEXT)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002527 match->cp_number = 0;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002528 if ((match->cp_str = vim_strnsave(str, len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 {
2530 vim_free(match);
Bram Moolenaar572cb562005-08-05 21:35:02 +00002531 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002533 match->cp_icase = icase;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002534
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 /* match-fname is:
Bram Moolenaar572cb562005-08-05 21:35:02 +00002536 * - compl_curr_match->cp_fname if it is a string equal to fname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 * - a copy of fname, FREE_FNAME is set to free later THE allocated mem.
2538 * - NULL otherwise. --Acevedo */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002539 if (fname != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002540 && compl_curr_match != NULL
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002541 && compl_curr_match->cp_fname != NULL
2542 && STRCMP(fname, compl_curr_match->cp_fname) == 0)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002543 match->cp_fname = compl_curr_match->cp_fname;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002544 else if (fname != NULL)
2545 {
2546 match->cp_fname = vim_strsave(fname);
Bram Moolenaar572cb562005-08-05 21:35:02 +00002547 flags |= FREE_FNAME;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002548 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 else
Bram Moolenaar572cb562005-08-05 21:35:02 +00002550 match->cp_fname = NULL;
2551 match->cp_flags = flags;
Bram Moolenaar39f05632006-03-19 22:15:26 +00002552
2553 if (cptext != NULL)
2554 {
2555 int i;
2556
2557 for (i = 0; i < CPT_COUNT; ++i)
2558 if (cptext[i] != NULL && *cptext[i] != NUL)
2559 match->cp_text[i] = vim_strsave(cptext[i]);
2560 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561
2562 /*
2563 * Link the new match structure in the list of matches.
2564 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002565 if (compl_first_match == NULL)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002566 match->cp_next = match->cp_prev = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 else if (dir == FORWARD)
2568 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002569 match->cp_next = compl_curr_match->cp_next;
2570 match->cp_prev = compl_curr_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 }
2572 else /* BACKWARD */
2573 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002574 match->cp_next = compl_curr_match;
2575 match->cp_prev = compl_curr_match->cp_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00002577 if (match->cp_next)
2578 match->cp_next->cp_prev = match;
2579 if (match->cp_prev)
2580 match->cp_prev->cp_next = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 else /* if there's nothing before, it is the first match */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002582 compl_first_match = match;
2583 compl_curr_match = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002585 /*
2586 * Find the longest common string if still doing that.
2587 */
2588 if (compl_get_longest && (flags & ORIGINAL_TEXT) == 0)
2589 ins_compl_longest_match(match);
2590
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 return OK;
2592}
2593
2594/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002595 * Return TRUE if "str[len]" matches with match->cp_str, considering
2596 * match->cp_icase.
2597 */
2598 static int
2599ins_compl_equal(match, str, len)
2600 compl_T *match;
2601 char_u *str;
2602 int len;
2603{
2604 if (match->cp_icase)
2605 return STRNICMP(match->cp_str, str, (size_t)len) == 0;
2606 return STRNCMP(match->cp_str, str, (size_t)len) == 0;
2607}
2608
2609/*
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002610 * Reduce the longest common string for match "match".
2611 */
2612 static void
2613ins_compl_longest_match(match)
2614 compl_T *match;
2615{
2616 char_u *p, *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002617 int c1, c2;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002618 int had_match;
2619
2620 if (compl_leader == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002621 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002622 /* First match, use it as a whole. */
2623 compl_leader = vim_strsave(match->cp_str);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002624 if (compl_leader != NULL)
2625 {
2626 had_match = (curwin->w_cursor.col > compl_col);
2627 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002628 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002629 ins_redraw(FALSE);
2630
2631 /* When the match isn't there (to avoid matching itself) remove it
2632 * again after redrawing. */
2633 if (!had_match)
2634 ins_compl_delete();
2635 compl_used_match = FALSE;
2636 }
2637 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002638 else
2639 {
2640 /* Reduce the text if this match differs from compl_leader. */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002641 p = compl_leader;
2642 s = match->cp_str;
2643 while (*p != NUL)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002644 {
2645#ifdef FEAT_MBYTE
2646 if (has_mbyte)
2647 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002648 c1 = mb_ptr2char(p);
2649 c2 = mb_ptr2char(s);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002650 }
2651 else
2652#endif
2653 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002654 c1 = *p;
2655 c2 = *s;
2656 }
2657 if (match->cp_icase ? (MB_TOLOWER(c1) != MB_TOLOWER(c2))
2658 : (c1 != c2))
2659 break;
2660#ifdef FEAT_MBYTE
2661 if (has_mbyte)
2662 {
2663 mb_ptr_adv(p);
2664 mb_ptr_adv(s);
2665 }
2666 else
2667#endif
2668 {
2669 ++p;
2670 ++s;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002671 }
2672 }
2673
2674 if (*p != NUL)
2675 {
2676 /* Leader was shortened, need to change the inserted text. */
2677 *p = NUL;
2678 had_match = (curwin->w_cursor.col > compl_col);
2679 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002680 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002681 ins_redraw(FALSE);
2682
2683 /* When the match isn't there (to avoid matching itself) remove it
2684 * again after redrawing. */
2685 if (!had_match)
2686 ins_compl_delete();
2687 }
2688
2689 compl_used_match = FALSE;
2690 }
2691}
2692
2693/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 * Add an array of matches to the list of matches.
2695 * Frees matches[].
2696 */
2697 static void
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002698ins_compl_add_matches(num_matches, matches, icase)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 int num_matches;
2700 char_u **matches;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002701 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702{
2703 int i;
2704 int add_r = OK;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002705 int dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706
Bram Moolenaar572cb562005-08-05 21:35:02 +00002707 for (i = 0; i < num_matches && add_r != FAIL; i++)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002708 if ((add_r = ins_compl_add(matches[i], -1, icase,
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002709 NULL, NULL, dir, 0, FALSE)) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 /* if dir was BACKWARD then honor it just once */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002711 dir = FORWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 FreeWild(num_matches, matches);
2713}
2714
2715/* Make the completion list cyclic.
2716 * Return the number of matches (excluding the original).
2717 */
2718 static int
2719ins_compl_make_cyclic()
2720{
Bram Moolenaar572cb562005-08-05 21:35:02 +00002721 compl_T *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 int count = 0;
2723
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002724 if (compl_first_match != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 {
2726 /*
2727 * Find the end of the list.
2728 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002729 match = compl_first_match;
2730 /* there's always an entry for the compl_orig_text, it doesn't count. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00002731 while (match->cp_next != NULL && match->cp_next != compl_first_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002733 match = match->cp_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 ++count;
2735 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00002736 match->cp_next = compl_first_match;
2737 compl_first_match->cp_prev = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 }
2739 return count;
2740}
2741
Bram Moolenaara94bc432006-03-10 21:42:59 +00002742/*
2743 * Start completion for the complete() function.
2744 * "startcol" is where the matched text starts (1 is first column).
2745 * "list" is the list of matches.
2746 */
2747 void
2748set_completion(startcol, list)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002749 colnr_T startcol;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002750 list_T *list;
2751{
2752 /* If already doing completions stop it. */
2753 if (ctrl_x_mode != 0)
2754 ins_compl_prep(' ');
2755 ins_compl_clear();
2756
2757 if (stop_arrow() == FAIL)
2758 return;
2759
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01002760 compl_direction = FORWARD;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002761 if (startcol > curwin->w_cursor.col)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002762 startcol = curwin->w_cursor.col;
2763 compl_col = startcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002764 compl_length = (int)curwin->w_cursor.col - (int)startcol;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002765 /* compl_pattern doesn't need to be set */
2766 compl_orig_text = vim_strnsave(ml_get_curline() + compl_col, compl_length);
2767 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
Bram Moolenaare8c3a142006-08-29 14:30:35 +00002768 -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002769 return;
2770
2771 /* Handle like dictionary completion. */
2772 ctrl_x_mode = CTRL_X_WHOLE_LINE;
2773
2774 ins_compl_add_list(list);
2775 compl_matches = ins_compl_make_cyclic();
2776 compl_started = TRUE;
2777 compl_used_match = TRUE;
Bram Moolenaar5495cc92006-08-16 14:23:04 +00002778 compl_cont_status = 0;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002779
2780 compl_curr_match = compl_first_match;
2781 ins_complete(Ctrl_N);
2782 out_flush();
2783}
2784
2785
Bram Moolenaar9372a112005-12-06 19:59:18 +00002786/* "compl_match_array" points the currently displayed list of entries in the
2787 * popup menu. It is NULL when there is no popup menu. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002788static pumitem_T *compl_match_array = NULL;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002789static int compl_match_arraysize;
2790
2791/*
2792 * Update the screen and when there is any scrolling remove the popup menu.
2793 */
2794 static void
2795ins_compl_upd_pum()
2796{
2797 int h;
2798
2799 if (compl_match_array != NULL)
2800 {
2801 h = curwin->w_cline_height;
2802 update_screen(0);
2803 if (h != curwin->w_cline_height)
2804 ins_compl_del_pum();
2805 }
2806}
2807
2808/*
2809 * Remove any popup menu.
2810 */
2811 static void
2812ins_compl_del_pum()
2813{
2814 if (compl_match_array != NULL)
2815 {
2816 pum_undisplay();
2817 vim_free(compl_match_array);
2818 compl_match_array = NULL;
2819 }
2820}
2821
2822/*
2823 * Return TRUE if the popup menu should be displayed.
2824 */
2825 static int
2826pum_wanted()
2827{
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002828 /* 'completeopt' must contain "menu" or "menuone" */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002829 if (vim_strchr(p_cot, 'm') == NULL)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002830 return FALSE;
2831
2832 /* The display looks bad on a B&W display. */
2833 if (t_colors < 8
2834#ifdef FEAT_GUI
2835 && !gui.in_use
2836#endif
2837 )
2838 return FALSE;
Bram Moolenaara6557602006-02-04 22:43:20 +00002839 return TRUE;
2840}
2841
2842/*
2843 * Return TRUE if there are two or more matches to be shown in the popup menu.
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002844 * One if 'completopt' contains "menuone".
Bram Moolenaara6557602006-02-04 22:43:20 +00002845 */
2846 static int
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002847pum_enough_matches()
Bram Moolenaara6557602006-02-04 22:43:20 +00002848{
2849 compl_T *compl;
2850 int i;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002851
2852 /* Don't display the popup menu if there are no matches or there is only
2853 * one (ignoring the original text). */
2854 compl = compl_first_match;
2855 i = 0;
2856 do
2857 {
2858 if (compl == NULL
2859 || ((compl->cp_flags & ORIGINAL_TEXT) == 0 && ++i == 2))
2860 break;
2861 compl = compl->cp_next;
2862 } while (compl != compl_first_match);
2863
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002864 if (strstr((char *)p_cot, "menuone") != NULL)
2865 return (i >= 1);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002866 return (i >= 2);
2867}
2868
2869/*
2870 * Show the popup menu for the list of matches.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002871 * Also adjusts "compl_shown_match" to an entry that is actually displayed.
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002872 */
Bram Moolenaar280f1262006-01-30 00:14:18 +00002873 void
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002874ins_compl_show_pum()
2875{
2876 compl_T *compl;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002877 compl_T *shown_compl = NULL;
2878 int did_find_shown_match = FALSE;
2879 int shown_match_ok = FALSE;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002880 int i;
2881 int cur = -1;
2882 colnr_T col;
Bram Moolenaara6557602006-02-04 22:43:20 +00002883 int lead_len = 0;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002884
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002885 if (!pum_wanted() || !pum_enough_matches())
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002886 return;
2887
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002888#if defined(FEAT_EVAL)
2889 /* Dirty hard-coded hack: remove any matchparen highlighting. */
2890 do_cmdline_cmd((char_u *)"if exists('g:loaded_matchparen')|3match none|endif");
2891#endif
2892
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002893 /* Update the screen before drawing the popup menu over it. */
2894 update_screen(0);
2895
2896 if (compl_match_array == NULL)
2897 {
2898 /* Need to build the popup menu list. */
2899 compl_match_arraysize = 0;
2900 compl = compl_first_match;
Bram Moolenaara6557602006-02-04 22:43:20 +00002901 if (compl_leader != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002902 lead_len = (int)STRLEN(compl_leader);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002903 do
2904 {
Bram Moolenaara6557602006-02-04 22:43:20 +00002905 if ((compl->cp_flags & ORIGINAL_TEXT) == 0
2906 && (compl_leader == NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002907 || ins_compl_equal(compl, compl_leader, lead_len)))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002908 ++compl_match_arraysize;
2909 compl = compl->cp_next;
2910 } while (compl != NULL && compl != compl_first_match);
Bram Moolenaara6557602006-02-04 22:43:20 +00002911 if (compl_match_arraysize == 0)
2912 return;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002913 compl_match_array = (pumitem_T *)alloc_clear(
2914 (unsigned)(sizeof(pumitem_T)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002915 * compl_match_arraysize));
2916 if (compl_match_array != NULL)
2917 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002918 /* If the current match is the original text don't find the first
2919 * match after it, don't highlight anything. */
2920 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
2921 shown_match_ok = TRUE;
2922
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002923 i = 0;
2924 compl = compl_first_match;
2925 do
2926 {
Bram Moolenaara6557602006-02-04 22:43:20 +00002927 if ((compl->cp_flags & ORIGINAL_TEXT) == 0
2928 && (compl_leader == NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002929 || ins_compl_equal(compl, compl_leader, lead_len)))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002930 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002931 if (!shown_match_ok)
2932 {
2933 if (compl == compl_shown_match || did_find_shown_match)
2934 {
2935 /* This item is the shown match or this is the
2936 * first displayed item after the shown match. */
2937 compl_shown_match = compl;
2938 did_find_shown_match = TRUE;
2939 shown_match_ok = TRUE;
2940 }
2941 else
2942 /* Remember this displayed match for when the
2943 * shown match is just below it. */
2944 shown_compl = compl;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002945 cur = i;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002946 }
Bram Moolenaar39f05632006-03-19 22:15:26 +00002947
2948 if (compl->cp_text[CPT_ABBR] != NULL)
2949 compl_match_array[i].pum_text =
2950 compl->cp_text[CPT_ABBR];
2951 else
2952 compl_match_array[i].pum_text = compl->cp_str;
2953 compl_match_array[i].pum_kind = compl->cp_text[CPT_KIND];
2954 compl_match_array[i].pum_info = compl->cp_text[CPT_INFO];
2955 if (compl->cp_text[CPT_MENU] != NULL)
2956 compl_match_array[i++].pum_extra =
2957 compl->cp_text[CPT_MENU];
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002958 else
2959 compl_match_array[i++].pum_extra = compl->cp_fname;
2960 }
2961
2962 if (compl == compl_shown_match)
2963 {
2964 did_find_shown_match = TRUE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002965
2966 /* When the original text is the shown match don't set
2967 * compl_shown_match. */
2968 if (compl->cp_flags & ORIGINAL_TEXT)
2969 shown_match_ok = TRUE;
2970
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002971 if (!shown_match_ok && shown_compl != NULL)
2972 {
2973 /* The shown match isn't displayed, set it to the
2974 * previously displayed match. */
2975 compl_shown_match = shown_compl;
2976 shown_match_ok = TRUE;
2977 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002978 }
2979 compl = compl->cp_next;
2980 } while (compl != NULL && compl != compl_first_match);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002981
2982 if (!shown_match_ok) /* no displayed match at all */
2983 cur = -1;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002984 }
2985 }
2986 else
2987 {
2988 /* popup menu already exists, only need to find the current item.*/
Bram Moolenaara6557602006-02-04 22:43:20 +00002989 for (i = 0; i < compl_match_arraysize; ++i)
Bram Moolenaar39f05632006-03-19 22:15:26 +00002990 if (compl_match_array[i].pum_text == compl_shown_match->cp_str
2991 || compl_match_array[i].pum_text
2992 == compl_shown_match->cp_text[CPT_ABBR])
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002993 {
2994 cur = i;
Bram Moolenaara6557602006-02-04 22:43:20 +00002995 break;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002996 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002997 }
2998
2999 if (compl_match_array != NULL)
3000 {
3001 /* Compute the screen column of the start of the completed text.
3002 * Use the cursor to get all wrapping and other settings right. */
3003 col = curwin->w_cursor.col;
3004 curwin->w_cursor.col = compl_col;
Bram Moolenaard289f132006-03-11 21:30:53 +00003005 pum_display(compl_match_array, compl_match_arraysize, cur);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003006 curwin->w_cursor.col = col;
3007 }
3008}
3009
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010#define DICT_FIRST (1) /* use just first element in "dict" */
3011#define DICT_EXACT (2) /* "dict" is the exact name of a file */
Bram Moolenaar280f1262006-01-30 00:14:18 +00003012
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013/*
Bram Moolenaar0b238792006-03-02 22:49:12 +00003014 * Add any identifiers that match the given pattern in the list of dictionary
3015 * files "dict_start" to the list of completions.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 */
3017 static void
Bram Moolenaar0b238792006-03-02 22:49:12 +00003018ins_compl_dictionaries(dict_start, pat, flags, thesaurus)
3019 char_u *dict_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 char_u *pat;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003021 int flags; /* DICT_FIRST and/or DICT_EXACT */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003022 int thesaurus; /* Thesaurus completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023{
Bram Moolenaar0b238792006-03-02 22:49:12 +00003024 char_u *dict = dict_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 char_u *ptr;
3026 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 regmatch_T regmatch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 char_u **files;
3029 int count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 int save_p_scs;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003031 int dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032
Bram Moolenaar0b238792006-03-02 22:49:12 +00003033 if (*dict == NUL)
3034 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003035#ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003036 /* When 'dictionary' is empty and spell checking is enabled use
3037 * "spell". */
3038 if (!thesaurus && curwin->w_p_spell)
3039 dict = (char_u *)"spell";
3040 else
3041#endif
3042 return;
3043 }
3044
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 buf = alloc(LSIZE);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003046 if (buf == NULL)
3047 return;
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00003048 regmatch.regprog = NULL; /* so that we can goto theend */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003049
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 /* If 'infercase' is set, don't use 'smartcase' here */
3051 save_p_scs = p_scs;
3052 if (curbuf->b_p_inf)
3053 p_scs = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003054
3055 /* When invoked to match whole lines for CTRL-X CTRL-L adjust the pattern
3056 * to only match at the start of a line. Otherwise just match the
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003057 * pattern. Also need to double backslashes. */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003058 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
3059 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003060 char_u *pat_esc = vim_strsave_escaped(pat, (char_u *)"\\");
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003061 size_t len;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003062
3063 if (pat_esc == NULL)
Bram Moolenaar6519ac82007-05-06 13:45:52 +00003064 goto theend;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003065 len = STRLEN(pat_esc) + 10;
3066 ptr = alloc((unsigned)len);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003067 if (ptr == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003068 {
3069 vim_free(pat_esc);
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00003070 goto theend;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003071 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003072 vim_snprintf((char *)ptr, len, "^\\s*\\zs\\V%s", pat_esc);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003073 regmatch.regprog = vim_regcomp(ptr, RE_MAGIC);
3074 vim_free(pat_esc);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003075 vim_free(ptr);
3076 }
3077 else
Bram Moolenaar0b238792006-03-02 22:49:12 +00003078 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003079 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003080 if (regmatch.regprog == NULL)
3081 goto theend;
3082 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003083
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 /* ignore case depends on 'ignorecase', 'smartcase' and "pat" */
3085 regmatch.rm_ic = ignorecase(pat);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003086 while (*dict != NUL && !got_int && !compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 {
3088 /* copy one dictionary file name into buf */
3089 if (flags == DICT_EXACT)
3090 {
3091 count = 1;
3092 files = &dict;
3093 }
3094 else
3095 {
3096 /* Expand wildcards in the dictionary name, but do not allow
3097 * backticks (for security, the 'dict' option may have been set in
3098 * a modeline). */
3099 copy_option_part(&dict, buf, LSIZE, ",");
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003100# ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003101 if (!thesaurus && STRCMP(buf, "spell") == 0)
3102 count = -1;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003103 else
3104# endif
3105 if (vim_strchr(buf, '`') != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 || expand_wildcards(1, &buf, &count, &files,
3107 EW_FILE|EW_SILENT) != OK)
3108 count = 0;
3109 }
3110
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003111# ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003112 if (count == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 {
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003114 /* Complete from active spelling. Skip "\<" in the pattern, we
3115 * don't use it as a RE. */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003116 if (pat[0] == '\\' && pat[1] == '<')
3117 ptr = pat + 2;
3118 else
3119 ptr = pat;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003120 spell_dump_compl(ptr, regmatch.rm_ic, &dir, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 }
Bram Moolenaar0b238792006-03-02 22:49:12 +00003122 else
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003123# endif
Bram Moolenaard7fd0c42006-08-22 17:55:55 +00003124 if (count > 0) /* avoid warning for using "files" uninit */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003125 {
3126 ins_compl_files(count, files, thesaurus, flags,
3127 &regmatch, buf, &dir);
3128 if (flags != DICT_EXACT)
3129 FreeWild(count, files);
3130 }
3131 if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 break;
3133 }
Bram Moolenaar0b238792006-03-02 22:49:12 +00003134
3135theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 p_scs = save_p_scs;
Bram Moolenaar473de612013-06-08 18:19:48 +02003137 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 vim_free(buf);
3139}
3140
Bram Moolenaar0b238792006-03-02 22:49:12 +00003141 static void
3142ins_compl_files(count, files, thesaurus, flags, regmatch, buf, dir)
3143 int count;
3144 char_u **files;
3145 int thesaurus;
3146 int flags;
3147 regmatch_T *regmatch;
3148 char_u *buf;
3149 int *dir;
3150{
3151 char_u *ptr;
3152 int i;
3153 FILE *fp;
3154 int add_r;
3155
3156 for (i = 0; i < count && !got_int && !compl_interrupted; i++)
3157 {
3158 fp = mch_fopen((char *)files[i], "r"); /* open dictionary file */
3159 if (flags != DICT_EXACT)
3160 {
3161 vim_snprintf((char *)IObuff, IOSIZE,
3162 _("Scanning dictionary: %s"), (char *)files[i]);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003163 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar0b238792006-03-02 22:49:12 +00003164 }
3165
3166 if (fp != NULL)
3167 {
3168 /*
3169 * Read dictionary file line by line.
3170 * Check each line for a match.
3171 */
3172 while (!got_int && !compl_interrupted
3173 && !vim_fgets(buf, LSIZE, fp))
3174 {
3175 ptr = buf;
3176 while (vim_regexec(regmatch, buf, (colnr_T)(ptr - buf)))
3177 {
3178 ptr = regmatch->startp[0];
3179 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
3180 ptr = find_line_end(ptr);
3181 else
3182 ptr = find_word_end(ptr);
3183 add_r = ins_compl_add_infercase(regmatch->startp[0],
3184 (int)(ptr - regmatch->startp[0]),
Bram Moolenaare8c3a142006-08-29 14:30:35 +00003185 p_ic, files[i], *dir, 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003186 if (thesaurus)
3187 {
3188 char_u *wstart;
3189
3190 /*
3191 * Add the other matches on the line
3192 */
Bram Moolenaara2993e12007-08-12 14:38:46 +00003193 ptr = buf;
Bram Moolenaar0b238792006-03-02 22:49:12 +00003194 while (!got_int)
3195 {
3196 /* Find start of the next word. Skip white
3197 * space and punctuation. */
3198 ptr = find_word_start(ptr);
3199 if (*ptr == NUL || *ptr == NL)
3200 break;
3201 wstart = ptr;
3202
Bram Moolenaara2993e12007-08-12 14:38:46 +00003203 /* Find end of the word. */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003204#ifdef FEAT_MBYTE
3205 if (has_mbyte)
3206 /* Japanese words may have characters in
3207 * different classes, only separate words
3208 * with single-byte non-word characters. */
3209 while (*ptr != NUL)
3210 {
3211 int l = (*mb_ptr2len)(ptr);
3212
3213 if (l < 2 && !vim_iswordc(*ptr))
3214 break;
3215 ptr += l;
3216 }
3217 else
3218#endif
3219 ptr = find_word_end(ptr);
Bram Moolenaara2993e12007-08-12 14:38:46 +00003220
3221 /* Add the word. Skip the regexp match. */
3222 if (wstart != regmatch->startp[0])
3223 add_r = ins_compl_add_infercase(wstart,
3224 (int)(ptr - wstart),
3225 p_ic, files[i], *dir, 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003226 }
3227 }
3228 if (add_r == OK)
3229 /* if dir was BACKWARD then honor it just once */
3230 *dir = FORWARD;
3231 else if (add_r == FAIL)
3232 break;
3233 /* avoid expensive call to vim_regexec() when at end
3234 * of line */
3235 if (*ptr == '\n' || got_int)
3236 break;
3237 }
3238 line_breakcheck();
3239 ins_compl_check_keys(50);
3240 }
3241 fclose(fp);
3242 }
3243 }
3244}
3245
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246/*
3247 * Find the start of the next word.
3248 * Returns a pointer to the first char of the word. Also stops at a NUL.
3249 */
3250 char_u *
3251find_word_start(ptr)
3252 char_u *ptr;
3253{
3254#ifdef FEAT_MBYTE
3255 if (has_mbyte)
3256 while (*ptr != NUL && *ptr != '\n' && mb_get_class(ptr) <= 1)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003257 ptr += (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 else
3259#endif
3260 while (*ptr != NUL && *ptr != '\n' && !vim_iswordc(*ptr))
3261 ++ptr;
3262 return ptr;
3263}
3264
3265/*
3266 * Find the end of the word. Assumes it starts inside a word.
3267 * Returns a pointer to just after the word.
3268 */
3269 char_u *
3270find_word_end(ptr)
3271 char_u *ptr;
3272{
3273#ifdef FEAT_MBYTE
3274 int start_class;
3275
3276 if (has_mbyte)
3277 {
3278 start_class = mb_get_class(ptr);
3279 if (start_class > 1)
3280 while (*ptr != NUL)
3281 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003282 ptr += (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 if (mb_get_class(ptr) != start_class)
3284 break;
3285 }
3286 }
3287 else
3288#endif
3289 while (vim_iswordc(*ptr))
3290 ++ptr;
3291 return ptr;
3292}
3293
3294/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003295 * Find the end of the line, omitting CR and NL at the end.
3296 * Returns a pointer to just after the line.
3297 */
3298 static char_u *
3299find_line_end(ptr)
3300 char_u *ptr;
3301{
3302 char_u *s;
3303
3304 s = ptr + STRLEN(ptr);
3305 while (s > ptr && (s[-1] == CAR || s[-1] == NL))
3306 --s;
3307 return s;
3308}
3309
3310/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 * Free the list of completions
3312 */
3313 static void
3314ins_compl_free()
3315{
Bram Moolenaar572cb562005-08-05 21:35:02 +00003316 compl_T *match;
Bram Moolenaar39f05632006-03-19 22:15:26 +00003317 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003319 vim_free(compl_pattern);
3320 compl_pattern = NULL;
Bram Moolenaara6557602006-02-04 22:43:20 +00003321 vim_free(compl_leader);
3322 compl_leader = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003324 if (compl_first_match == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 return;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003326
3327 ins_compl_del_pum();
3328 pum_clear();
3329
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003330 compl_curr_match = compl_first_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 do
3332 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003333 match = compl_curr_match;
Bram Moolenaar572cb562005-08-05 21:35:02 +00003334 compl_curr_match = compl_curr_match->cp_next;
3335 vim_free(match->cp_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 /* several entries may use the same fname, free it just once. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00003337 if (match->cp_flags & FREE_FNAME)
3338 vim_free(match->cp_fname);
Bram Moolenaar39f05632006-03-19 22:15:26 +00003339 for (i = 0; i < CPT_COUNT; ++i)
3340 vim_free(match->cp_text[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 vim_free(match);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003342 } while (compl_curr_match != NULL && compl_curr_match != compl_first_match);
3343 compl_first_match = compl_curr_match = NULL;
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00003344 compl_shown_match = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345}
3346
3347 static void
3348ins_compl_clear()
3349{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003350 compl_cont_status = 0;
3351 compl_started = FALSE;
3352 compl_matches = 0;
3353 vim_free(compl_pattern);
3354 compl_pattern = NULL;
Bram Moolenaara6557602006-02-04 22:43:20 +00003355 vim_free(compl_leader);
3356 compl_leader = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357 edit_submode_extra = NULL;
Bram Moolenaara94bc432006-03-10 21:42:59 +00003358 vim_free(compl_orig_text);
3359 compl_orig_text = NULL;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003360 compl_enter_selects = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361}
3362
3363/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003364 * Return TRUE when Insert completion is active.
3365 */
3366 int
3367ins_compl_active()
3368{
3369 return compl_started;
3370}
3371
3372/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003373 * Delete one character before the cursor and show the subset of the matches
3374 * that match the word that is now before the cursor.
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003375 * Returns the character to be used, NUL if the work is done and another char
3376 * to be got from the user.
Bram Moolenaara6557602006-02-04 22:43:20 +00003377 */
3378 static int
3379ins_compl_bs()
3380{
3381 char_u *line;
3382 char_u *p;
3383
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003384 line = ml_get_curline();
3385 p = line + curwin->w_cursor.col;
3386 mb_ptr_back(line, p);
3387
Bram Moolenaar711d5b52007-10-19 18:40:51 +00003388 /* Stop completion when the whole word was deleted. For Omni completion
3389 * allow the word to be deleted, we won't match everything. */
3390 if ((int)(p - line) - (int)compl_col < 0
3391 || ((int)(p - line) - (int)compl_col == 0
3392 && (ctrl_x_mode & CTRL_X_OMNI) == 0))
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003393 return K_BS;
3394
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003395 /* Deleted more than what was used to find matches or didn't finish
3396 * finding all matches: need to look for matches all over again. */
3397 if (curwin->w_cursor.col <= compl_col + compl_length
Bram Moolenaar82139082011-09-14 16:52:09 +02003398 || ins_compl_need_restart())
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003399 ins_compl_restart();
Bram Moolenaara6557602006-02-04 22:43:20 +00003400
Bram Moolenaara6557602006-02-04 22:43:20 +00003401 vim_free(compl_leader);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003402 compl_leader = vim_strnsave(line + compl_col, (int)(p - line) - compl_col);
Bram Moolenaara6557602006-02-04 22:43:20 +00003403 if (compl_leader != NULL)
3404 {
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003405 ins_compl_new_leader();
Bram Moolenaar3978e082013-03-07 19:38:54 +01003406 if (compl_shown_match != NULL)
3407 /* Make sure current match is not a hidden item. */
3408 compl_curr_match = compl_shown_match;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003409 return NUL;
3410 }
3411 return K_BS;
3412}
Bram Moolenaara6557602006-02-04 22:43:20 +00003413
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003414/*
Bram Moolenaar82139082011-09-14 16:52:09 +02003415 * Return TRUE when we need to find matches again, ins_compl_restart() is to
3416 * be called.
3417 */
3418 static int
3419ins_compl_need_restart()
3420{
3421 /* Return TRUE if we didn't complete finding matches or when the
3422 * 'completefunc' returned "always" in the "refresh" dictionary item. */
3423 return compl_was_interrupted
3424 || ((ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
3425 && compl_opt_refresh_always);
3426}
3427
3428/*
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003429 * Called after changing "compl_leader".
3430 * Show the popup menu with a different set of matches.
3431 * May also search for matches again if the previous search was interrupted.
3432 */
3433 static void
3434ins_compl_new_leader()
3435{
3436 ins_compl_del_pum();
3437 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003438 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003439 compl_used_match = FALSE;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003440
3441 if (compl_started)
3442 ins_compl_set_original_text(compl_leader);
3443 else
3444 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003445#ifdef FEAT_SPELL
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003446 spell_bad_len = 0; /* need to redetect bad word */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003447#endif
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003448 /*
3449 * Matches were cleared, need to search for them now. First display
3450 * the changed text before the cursor. Set "compl_restarting" to
3451 * avoid that the first match is inserted.
3452 */
3453 update_screen(0);
3454#ifdef FEAT_GUI
3455 if (gui.in_use)
3456 {
3457 /* Show the cursor after the match, not after the redrawn text. */
3458 setcursor();
3459 out_flush();
3460 gui_update_cursor(FALSE, FALSE);
Bram Moolenaara6557602006-02-04 22:43:20 +00003461 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003462#endif
3463 compl_restarting = TRUE;
3464 if (ins_complete(Ctrl_N) == FAIL)
3465 compl_cont_status = 0;
3466 compl_restarting = FALSE;
3467 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003468
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003469 compl_enter_selects = !compl_used_match;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003470
3471 /* Show the popup menu with a different set of matches. */
3472 ins_compl_show_pum();
Bram Moolenaar7073cc82006-08-29 16:33:06 +00003473
3474 /* Don't let Enter select the original text when there is no popup menu. */
3475 if (compl_match_array == NULL)
3476 compl_enter_selects = FALSE;
Bram Moolenaara6557602006-02-04 22:43:20 +00003477}
3478
3479/*
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003480 * Return the length of the completion, from the completion start column to
3481 * the cursor column. Making sure it never goes below zero.
3482 */
3483 static int
3484ins_compl_len()
3485{
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003486 int off = (int)curwin->w_cursor.col - (int)compl_col;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003487
3488 if (off < 0)
3489 return 0;
3490 return off;
3491}
3492
3493/*
Bram Moolenaara6557602006-02-04 22:43:20 +00003494 * Append one character to the match leader. May reduce the number of
3495 * matches.
3496 */
3497 static void
3498ins_compl_addleader(c)
3499 int c;
3500{
3501#ifdef FEAT_MBYTE
3502 int cc;
3503
3504 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
3505 {
3506 char_u buf[MB_MAXBYTES + 1];
3507
3508 (*mb_char2bytes)(c, buf);
3509 buf[cc] = NUL;
3510 ins_char_bytes(buf, cc);
Bram Moolenaar22189a42012-06-20 22:56:02 +02003511 if (compl_opt_refresh_always)
3512 AppendToRedobuff(buf);
Bram Moolenaara6557602006-02-04 22:43:20 +00003513 }
3514 else
3515#endif
Bram Moolenaar5e1a0a92012-06-20 14:26:35 +02003516 {
Bram Moolenaara6557602006-02-04 22:43:20 +00003517 ins_char(c);
Bram Moolenaar22189a42012-06-20 22:56:02 +02003518 if (compl_opt_refresh_always)
3519 AppendCharToRedobuff(c);
Bram Moolenaar5e1a0a92012-06-20 14:26:35 +02003520 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003521
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003522 /* If we didn't complete finding matches we must search again. */
Bram Moolenaar82139082011-09-14 16:52:09 +02003523 if (ins_compl_need_restart())
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003524 ins_compl_restart();
3525
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003526 /* When 'always' is set, don't reset compl_leader. While completing,
Bram Moolenaar22189a42012-06-20 22:56:02 +02003527 * cursor doesn't point original position, changing compl_leader would
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003528 * break redo. */
3529 if (!compl_opt_refresh_always)
3530 {
3531 vim_free(compl_leader);
3532 compl_leader = vim_strnsave(ml_get_curline() + compl_col,
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003533 (int)(curwin->w_cursor.col - compl_col));
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003534 if (compl_leader != NULL)
3535 ins_compl_new_leader();
3536 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003537}
3538
3539/*
3540 * Setup for finding completions again without leaving CTRL-X mode. Used when
3541 * BS or a key was typed while still searching for matches.
3542 */
3543 static void
3544ins_compl_restart()
3545{
3546 ins_compl_free();
3547 compl_started = FALSE;
3548 compl_matches = 0;
3549 compl_cont_status = 0;
3550 compl_cont_mode = 0;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003551}
3552
3553/*
3554 * Set the first match, the original text.
3555 */
3556 static void
3557ins_compl_set_original_text(str)
3558 char_u *str;
3559{
3560 char_u *p;
3561
3562 /* Replace the original text entry. */
3563 if (compl_first_match->cp_flags & ORIGINAL_TEXT) /* safety check */
3564 {
3565 p = vim_strsave(str);
3566 if (p != NULL)
3567 {
3568 vim_free(compl_first_match->cp_str);
3569 compl_first_match->cp_str = p;
3570 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003571 }
3572}
3573
3574/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003575 * Append one character to the match leader. May reduce the number of
3576 * matches.
3577 */
3578 static void
3579ins_compl_addfrommatch()
3580{
3581 char_u *p;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003582 int len = (int)curwin->w_cursor.col - (int)compl_col;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003583 int c;
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003584 compl_T *cp;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003585
3586 p = compl_shown_match->cp_str;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003587 if ((int)STRLEN(p) <= len) /* the match is too short */
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003588 {
3589 /* When still at the original match use the first entry that matches
3590 * the leader. */
3591 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
3592 {
3593 p = NULL;
3594 for (cp = compl_shown_match->cp_next; cp != NULL
3595 && cp != compl_first_match; cp = cp->cp_next)
3596 {
Bram Moolenaar132283f2006-10-03 13:22:23 +00003597 if (compl_leader == NULL
3598 || ins_compl_equal(cp, compl_leader,
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003599 (int)STRLEN(compl_leader)))
3600 {
3601 p = cp->cp_str;
3602 break;
3603 }
3604 }
3605 if (p == NULL || (int)STRLEN(p) <= len)
3606 return;
3607 }
3608 else
3609 return;
3610 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003611 p += len;
Bram Moolenaare659c952011-05-19 17:25:41 +02003612 c = PTR2CHAR(p);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003613 ins_compl_addleader(c);
3614}
3615
3616/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 * Prepare for Insert mode completion, or stop it.
Bram Moolenaar572cb562005-08-05 21:35:02 +00003618 * Called just after typing a character in Insert mode.
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003619 * Returns TRUE when the character is not to be inserted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003621 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622ins_compl_prep(c)
3623 int c;
3624{
3625 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 int want_cindent;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003627 int retval = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628
3629 /* Forget any previous 'special' messages if this is actually
3630 * a ^X mode key - bar ^R, in which case we wait to see what it gives us.
3631 */
3632 if (c != Ctrl_R && vim_is_ctrl_x_key(c))
3633 edit_submode_extra = NULL;
3634
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00003635 /* Ignore end of Select mode mapping and mouse scroll buttons. */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003636 if (c == K_SELECT || c == K_MOUSEDOWN || c == K_MOUSEUP
3637 || c == K_MOUSELEFT || c == K_MOUSERIGHT)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003638 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003640 /* Set "compl_get_longest" when finding the first matches. */
3641 if (ctrl_x_mode == CTRL_X_NOT_DEFINED_YET
3642 || (ctrl_x_mode == 0 && !compl_started))
3643 {
3644 compl_get_longest = (vim_strchr(p_cot, 'l') != NULL);
3645 compl_used_match = TRUE;
3646 }
3647
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 if (ctrl_x_mode == CTRL_X_NOT_DEFINED_YET)
3649 {
3650 /*
3651 * We have just typed CTRL-X and aren't quite sure which CTRL-X mode
3652 * it will be yet. Now we decide.
3653 */
3654 switch (c)
3655 {
3656 case Ctrl_E:
3657 case Ctrl_Y:
3658 ctrl_x_mode = CTRL_X_SCROLL;
3659 if (!(State & REPLACE_FLAG))
3660 edit_submode = (char_u *)_(" (insert) Scroll (^E/^Y)");
3661 else
3662 edit_submode = (char_u *)_(" (replace) Scroll (^E/^Y)");
3663 edit_submode_pre = NULL;
3664 showmode();
3665 break;
3666 case Ctrl_L:
3667 ctrl_x_mode = CTRL_X_WHOLE_LINE;
3668 break;
3669 case Ctrl_F:
3670 ctrl_x_mode = CTRL_X_FILES;
3671 break;
3672 case Ctrl_K:
3673 ctrl_x_mode = CTRL_X_DICTIONARY;
3674 break;
3675 case Ctrl_R:
3676 /* Simply allow ^R to happen without affecting ^X mode */
3677 break;
3678 case Ctrl_T:
3679 ctrl_x_mode = CTRL_X_THESAURUS;
3680 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003681#ifdef FEAT_COMPL_FUNC
3682 case Ctrl_U:
3683 ctrl_x_mode = CTRL_X_FUNCTION;
3684 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003685 case Ctrl_O:
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003686 ctrl_x_mode = CTRL_X_OMNI;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003687 break;
Bram Moolenaare344bea2005-09-01 20:46:49 +00003688#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00003689 case 's':
3690 case Ctrl_S:
3691 ctrl_x_mode = CTRL_X_SPELL;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003692#ifdef FEAT_SPELL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003693 ++emsg_off; /* Avoid getting the E756 error twice. */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00003694 spell_back_to_badword();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003695 --emsg_off;
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00003696#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00003697 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 case Ctrl_RSB:
3699 ctrl_x_mode = CTRL_X_TAGS;
3700 break;
3701#ifdef FEAT_FIND_ID
3702 case Ctrl_I:
3703 case K_S_TAB:
3704 ctrl_x_mode = CTRL_X_PATH_PATTERNS;
3705 break;
3706 case Ctrl_D:
3707 ctrl_x_mode = CTRL_X_PATH_DEFINES;
3708 break;
3709#endif
3710 case Ctrl_V:
3711 case Ctrl_Q:
3712 ctrl_x_mode = CTRL_X_CMDLINE;
3713 break;
3714 case Ctrl_P:
3715 case Ctrl_N:
3716 /* ^X^P means LOCAL expansion if nothing interrupted (eg we
3717 * just started ^X mode, or there were enough ^X's to cancel
3718 * the previous mode, say ^X^F^X^X^P or ^P^X^X^X^P, see below)
3719 * do normal expansion when interrupting a different mode (say
3720 * ^X^F^X^P or ^P^X^X^P, see below)
3721 * nothing changes if interrupting mode 0, (eg, the flag
3722 * doesn't change when going to ADDING mode -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003723 if (!(compl_cont_status & CONT_INTRPT))
3724 compl_cont_status |= CONT_LOCAL;
3725 else if (compl_cont_mode != 0)
3726 compl_cont_status &= ~CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 /* FALLTHROUGH */
3728 default:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003729 /* If we have typed at least 2 ^X's... for modes != 0, we set
3730 * compl_cont_status = 0 (eg, as if we had just started ^X
3731 * mode).
3732 * For mode 0, we set "compl_cont_mode" to an impossible
3733 * value, in both cases ^X^X can be used to restart the same
3734 * mode (avoiding ADDING mode).
3735 * Undocumented feature: In a mode != 0 ^X^P and ^X^X^P start
3736 * 'complete' and local ^P expansions respectively.
3737 * In mode 0 an extra ^X is needed since ^X^P goes to ADDING
3738 * mode -- Acevedo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 if (c == Ctrl_X)
3740 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003741 if (compl_cont_mode != 0)
3742 compl_cont_status = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003744 compl_cont_mode = CTRL_X_NOT_DEFINED_YET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 }
3746 ctrl_x_mode = 0;
3747 edit_submode = NULL;
3748 showmode();
3749 break;
3750 }
3751 }
3752 else if (ctrl_x_mode != 0)
3753 {
3754 /* We're already in CTRL-X mode, do we stay in it? */
3755 if (!vim_is_ctrl_x_key(c))
3756 {
3757 if (ctrl_x_mode == CTRL_X_SCROLL)
3758 ctrl_x_mode = 0;
3759 else
3760 ctrl_x_mode = CTRL_X_FINISHED;
3761 edit_submode = NULL;
3762 }
3763 showmode();
3764 }
3765
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003766 if (compl_started || ctrl_x_mode == CTRL_X_FINISHED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 {
3768 /* Show error message from attempted keyword completion (probably
3769 * 'Pattern not found') until another key is hit, then go back to
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003770 * showing what mode we are in. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 showmode();
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003772 if ((ctrl_x_mode == 0 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_R
3773 && !ins_compl_pum_key(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 || ctrl_x_mode == CTRL_X_FINISHED)
3775 {
3776 /* Get here when we have finished typing a sequence of ^N and
3777 * ^P or other completion characters in CTRL-X mode. Free up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003778 * memory that was used, and make sure we can redo the insert. */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003779 if (compl_curr_match != NULL || compl_leader != NULL || c == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 {
3781 /*
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003782 * If any of the original typed text has been changed, eg when
3783 * ignorecase is set, we must add back-spaces to the redo
3784 * buffer. We add as few as necessary to delete just the part
3785 * of the original text that has changed.
3786 * When using the longest match, edited the match or used
3787 * CTRL-E then don't use the current match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003789 if (compl_curr_match != NULL && compl_used_match && c != Ctrl_E)
3790 ptr = compl_curr_match->cp_str;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003791 else
Bram Moolenaar62951b12011-09-21 18:23:05 +02003792 ptr = NULL;
3793 ins_compl_fixRedoBufForLeader(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 }
3795
3796#ifdef FEAT_CINDENT
3797 want_cindent = (can_cindent && cindent_on());
3798#endif
3799 /*
3800 * When completing whole lines: fix indent for 'cindent'.
3801 * Otherwise, break line if it's too long.
3802 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003803 if (compl_cont_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 {
3805#ifdef FEAT_CINDENT
3806 /* re-indent the current line */
3807 if (want_cindent)
3808 {
3809 do_c_expr_indent();
3810 want_cindent = FALSE; /* don't do it again */
3811 }
3812#endif
3813 }
3814 else
3815 {
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003816 int prev_col = curwin->w_cursor.col;
3817
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 /* put the cursor on the last char, for 'tw' formatting */
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003819 if (prev_col > 0)
3820 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 if (stop_arrow() == OK)
3822 insertchar(NUL, 0, -1);
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003823 if (prev_col > 0
3824 && ml_get_curline()[curwin->w_cursor.col] != NUL)
3825 inc_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 }
3827
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003828 /* If the popup menu is displayed pressing CTRL-Y means accepting
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003829 * the selection without inserting anything. When
3830 * compl_enter_selects is set the Enter key does the same. */
3831 if ((c == Ctrl_Y || (compl_enter_selects
3832 && (c == CAR || c == K_KENTER || c == NL)))
3833 && pum_visible())
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003834 retval = TRUE;
3835
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003836 /* CTRL-E means completion is Ended, go back to the typed text. */
3837 if (c == Ctrl_E)
3838 {
3839 ins_compl_delete();
3840 if (compl_leader != NULL)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003841 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003842 else if (compl_first_match != NULL)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003843 ins_bytes(compl_orig_text + ins_compl_len());
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003844 retval = TRUE;
3845 }
3846
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003847 auto_format(FALSE, TRUE);
3848
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 ins_compl_free();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003850 compl_started = FALSE;
3851 compl_matches = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 msg_clr_cmdline(); /* necessary for "noshowmode" */
3853 ctrl_x_mode = 0;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003854 compl_enter_selects = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 if (edit_submode != NULL)
3856 {
3857 edit_submode = NULL;
3858 showmode();
3859 }
3860
3861#ifdef FEAT_CINDENT
3862 /*
3863 * Indent now if a key was typed that is in 'cinkeys'.
3864 */
3865 if (want_cindent && in_cinkeys(KEY_COMPLETE, ' ', inindent(0)))
3866 do_c_expr_indent();
3867#endif
Bram Moolenaarcfa3cae2012-07-10 17:14:56 +02003868#ifdef FEAT_AUTOCMD
3869 /* Trigger the CompleteDone event to give scripts a chance to act
3870 * upon the completion. */
3871 apply_autocmds(EVENT_COMPLETEDONE, NULL, NULL, FALSE, curbuf);
3872#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 }
3874 }
Bram Moolenaara3914322013-02-13 16:30:21 +01003875#ifdef FEAT_AUTOCMD
3876 else if (ctrl_x_mode == CTRL_X_LOCAL_MSG)
3877 /* Trigger the CompleteDone event to give scripts a chance to act
3878 * upon the (possibly failed) completion. */
3879 apply_autocmds(EVENT_COMPLETEDONE, NULL, NULL, FALSE, curbuf);
3880#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881
3882 /* reset continue_* if we left expansion-mode, if we stay they'll be
3883 * (re)set properly in ins_complete() */
3884 if (!vim_is_ctrl_x_key(c))
3885 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003886 compl_cont_status = 0;
3887 compl_cont_mode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003889
3890 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891}
3892
3893/*
Bram Moolenaar62951b12011-09-21 18:23:05 +02003894 * Fix the redo buffer for the completion leader replacing some of the typed
3895 * text. This inserts backspaces and appends the changed text.
3896 * "ptr" is the known leader text or NUL.
3897 */
3898 static void
3899ins_compl_fixRedoBufForLeader(ptr_arg)
3900 char_u *ptr_arg;
3901{
3902 int len;
3903 char_u *p;
3904 char_u *ptr = ptr_arg;
3905
3906 if (ptr == NULL)
3907 {
3908 if (compl_leader != NULL)
3909 ptr = compl_leader;
3910 else
3911 return; /* nothing to do */
3912 }
3913 if (compl_orig_text != NULL)
3914 {
3915 p = compl_orig_text;
3916 for (len = 0; p[len] != NUL && p[len] == ptr[len]; ++len)
3917 ;
3918#ifdef FEAT_MBYTE
3919 if (len > 0)
3920 len -= (*mb_head_off)(p, p + len);
3921#endif
3922 for (p += len; *p != NUL; mb_ptr_adv(p))
3923 AppendCharToRedobuff(K_BS);
3924 }
3925 else
3926 len = 0;
3927 if (ptr != NULL)
3928 AppendToRedobuffLit(ptr + len, -1);
3929}
3930
3931/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 * Loops through the list of windows, loaded-buffers or non-loaded-buffers
3933 * (depending on flag) starting from buf and looking for a non-scanned
3934 * buffer (other than curbuf). curbuf is special, if it is called with
3935 * buf=curbuf then it has to be the first call for a given flag/expansion.
3936 *
3937 * Returns the buffer to scan, if any, otherwise returns curbuf -- Acevedo
3938 */
3939 static buf_T *
3940ins_compl_next_buf(buf, flag)
3941 buf_T *buf;
3942 int flag;
3943{
3944#ifdef FEAT_WINDOWS
3945 static win_T *wp;
3946#endif
3947
3948 if (flag == 'w') /* just windows */
3949 {
3950#ifdef FEAT_WINDOWS
3951 if (buf == curbuf) /* first call for this flag/expansion */
3952 wp = curwin;
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +00003953 while ((wp = (wp->w_next != NULL ? wp->w_next : firstwin)) != curwin
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 && wp->w_buffer->b_scanned)
3955 ;
3956 buf = wp->w_buffer;
3957#else
3958 buf = curbuf;
3959#endif
3960 }
3961 else
3962 /* 'b' (just loaded buffers), 'u' (just non-loaded buffers) or 'U'
3963 * (unlisted buffers)
3964 * When completing whole lines skip unloaded buffers. */
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +00003965 while ((buf = (buf->b_next != NULL ? buf->b_next : firstbuf)) != curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 && ((flag == 'U'
3967 ? buf->b_p_bl
3968 : (!buf->b_p_bl
3969 || (buf->b_ml.ml_mfp == NULL) != (flag == 'u')))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003970 || buf->b_scanned))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 ;
3972 return buf;
3973}
3974
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003975#ifdef FEAT_COMPL_FUNC
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003976static void expand_by_function __ARGS((int type, char_u *base));
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003977
3978/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003979 * Execute user defined complete function 'completefunc' or 'omnifunc', and
Bram Moolenaare344bea2005-09-01 20:46:49 +00003980 * get matches in "matches".
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003981 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003982 static void
3983expand_by_function(type, base)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003984 int type; /* CTRL_X_OMNI or CTRL_X_FUNCTION */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003985 char_u *base;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003986{
Bram Moolenaar82139082011-09-14 16:52:09 +02003987 list_T *matchlist = NULL;
3988 dict_T *matchdict = NULL;
Bram Moolenaare344bea2005-09-01 20:46:49 +00003989 char_u *args[2];
Bram Moolenaare344bea2005-09-01 20:46:49 +00003990 char_u *funcname;
3991 pos_T pos;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003992 win_T *curwin_save;
3993 buf_T *curbuf_save;
Bram Moolenaar82139082011-09-14 16:52:09 +02003994 typval_T rettv;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003995
Bram Moolenaare344bea2005-09-01 20:46:49 +00003996 funcname = (type == CTRL_X_FUNCTION) ? curbuf->b_p_cfu : curbuf->b_p_ofu;
3997 if (*funcname == NUL)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003998 return;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003999
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00004000 /* Call 'completefunc' to obtain the list of matches. */
4001 args[0] = (char_u *)"0";
Bram Moolenaare344bea2005-09-01 20:46:49 +00004002 args[1] = base;
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00004003
Bram Moolenaare344bea2005-09-01 20:46:49 +00004004 pos = curwin->w_cursor;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004005 curwin_save = curwin;
4006 curbuf_save = curbuf;
Bram Moolenaar82139082011-09-14 16:52:09 +02004007
4008 /* Call a function, which returns a list or dict. */
Bram Moolenaar0cbba942012-07-25 16:47:03 +02004009 if (call_vim_function(funcname, 2, args, FALSE, FALSE, &rettv) == OK)
Bram Moolenaar82139082011-09-14 16:52:09 +02004010 {
4011 switch (rettv.v_type)
4012 {
4013 case VAR_LIST:
4014 matchlist = rettv.vval.v_list;
4015 break;
4016 case VAR_DICT:
4017 matchdict = rettv.vval.v_dict;
4018 break;
4019 default:
4020 /* TODO: Give error message? */
4021 clear_tv(&rettv);
4022 break;
4023 }
4024 }
4025
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004026 if (curwin_save != curwin || curbuf_save != curbuf)
4027 {
4028 EMSG(_(e_complwin));
4029 goto theend;
4030 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00004031 curwin->w_cursor = pos; /* restore the cursor position */
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004032 check_cursor();
4033 if (!equalpos(curwin->w_cursor, pos))
4034 {
4035 EMSG(_(e_compldel));
4036 goto theend;
4037 }
Bram Moolenaar82139082011-09-14 16:52:09 +02004038
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004039 if (matchlist != NULL)
4040 ins_compl_add_list(matchlist);
Bram Moolenaar82139082011-09-14 16:52:09 +02004041 else if (matchdict != NULL)
4042 ins_compl_add_dict(matchdict);
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00004043
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004044theend:
Bram Moolenaar82139082011-09-14 16:52:09 +02004045 if (matchdict != NULL)
4046 dict_unref(matchdict);
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004047 if (matchlist != NULL)
4048 list_unref(matchlist);
Bram Moolenaara94bc432006-03-10 21:42:59 +00004049}
4050#endif /* FEAT_COMPL_FUNC */
4051
Bram Moolenaar39f05632006-03-19 22:15:26 +00004052#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004053/*
4054 * Add completions from a list.
Bram Moolenaara94bc432006-03-10 21:42:59 +00004055 */
4056 static void
4057ins_compl_add_list(list)
4058 list_T *list;
4059{
4060 listitem_T *li;
Bram Moolenaara94bc432006-03-10 21:42:59 +00004061 int dir = compl_direction;
4062
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004063 /* Go through the List with matches and add each of them. */
Bram Moolenaara94bc432006-03-10 21:42:59 +00004064 for (li = list->lv_first; li != NULL; li = li->li_next)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004065 {
Bram Moolenaar39f05632006-03-19 22:15:26 +00004066 if (ins_compl_add_tv(&li->li_tv, dir) == OK)
4067 /* if dir was BACKWARD then honor it just once */
4068 dir = FORWARD;
Bram Moolenaar280f1262006-01-30 00:14:18 +00004069 else if (did_emsg)
4070 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004071 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004072}
Bram Moolenaar39f05632006-03-19 22:15:26 +00004073
4074/*
Bram Moolenaar82139082011-09-14 16:52:09 +02004075 * Add completions from a dict.
4076 */
4077 static void
4078ins_compl_add_dict(dict)
4079 dict_T *dict;
4080{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004081 dictitem_T *di_refresh;
4082 dictitem_T *di_words;
Bram Moolenaar82139082011-09-14 16:52:09 +02004083
4084 /* Check for optional "refresh" item. */
4085 compl_opt_refresh_always = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004086 di_refresh = dict_find(dict, (char_u *)"refresh", 7);
4087 if (di_refresh != NULL && di_refresh->di_tv.v_type == VAR_STRING)
Bram Moolenaar82139082011-09-14 16:52:09 +02004088 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004089 char_u *v = di_refresh->di_tv.vval.v_string;
Bram Moolenaar82139082011-09-14 16:52:09 +02004090
4091 if (v != NULL && STRCMP(v, (char_u *)"always") == 0)
4092 compl_opt_refresh_always = TRUE;
4093 }
4094
4095 /* Add completions from a "words" list. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004096 di_words = dict_find(dict, (char_u *)"words", 5);
4097 if (di_words != NULL && di_words->di_tv.v_type == VAR_LIST)
4098 ins_compl_add_list(di_words->di_tv.vval.v_list);
Bram Moolenaar82139082011-09-14 16:52:09 +02004099}
4100
4101/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00004102 * Add a match to the list of matches from a typeval_T.
4103 * If the given string is already in the list of completions, then return
4104 * NOTDONE, otherwise add it to the list and return OK. If there is an error,
4105 * maybe because alloc() returns NULL, then FAIL is returned.
4106 */
4107 int
4108ins_compl_add_tv(tv, dir)
4109 typval_T *tv;
4110 int dir;
4111{
4112 char_u *word;
Bram Moolenaar91170f82006-05-05 21:15:17 +00004113 int icase = FALSE;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004114 int adup = FALSE;
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004115 int aempty = FALSE;
Bram Moolenaar39f05632006-03-19 22:15:26 +00004116 char_u *(cptext[CPT_COUNT]);
4117
4118 if (tv->v_type == VAR_DICT && tv->vval.v_dict != NULL)
4119 {
4120 word = get_dict_string(tv->vval.v_dict, (char_u *)"word", FALSE);
4121 cptext[CPT_ABBR] = get_dict_string(tv->vval.v_dict,
4122 (char_u *)"abbr", FALSE);
4123 cptext[CPT_MENU] = get_dict_string(tv->vval.v_dict,
4124 (char_u *)"menu", FALSE);
4125 cptext[CPT_KIND] = get_dict_string(tv->vval.v_dict,
4126 (char_u *)"kind", FALSE);
4127 cptext[CPT_INFO] = get_dict_string(tv->vval.v_dict,
4128 (char_u *)"info", FALSE);
4129 if (get_dict_string(tv->vval.v_dict, (char_u *)"icase", FALSE) != NULL)
4130 icase = get_dict_number(tv->vval.v_dict, (char_u *)"icase");
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004131 if (get_dict_string(tv->vval.v_dict, (char_u *)"dup", FALSE) != NULL)
Bram Moolenaar89d40322006-08-29 15:30:07 +00004132 adup = get_dict_number(tv->vval.v_dict, (char_u *)"dup");
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004133 if (get_dict_string(tv->vval.v_dict, (char_u *)"empty", FALSE) != NULL)
4134 aempty = get_dict_number(tv->vval.v_dict, (char_u *)"empty");
Bram Moolenaar39f05632006-03-19 22:15:26 +00004135 }
4136 else
4137 {
4138 word = get_tv_string_chk(tv);
4139 vim_memset(cptext, 0, sizeof(cptext));
4140 }
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004141 if (word == NULL || (!aempty && *word == NUL))
Bram Moolenaar39f05632006-03-19 22:15:26 +00004142 return FAIL;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004143 return ins_compl_add(word, -1, icase, NULL, cptext, dir, 0, adup);
Bram Moolenaar39f05632006-03-19 22:15:26 +00004144}
Bram Moolenaara94bc432006-03-10 21:42:59 +00004145#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004146
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004147/*
4148 * Get the next expansion(s), using "compl_pattern".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004149 * The search starts at position "ini" in curbuf and in the direction
4150 * compl_direction.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004151 * When "compl_started" is FALSE start at that position, otherwise continue
4152 * where we stopped searching before.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004153 * This may return before finding all the matches.
4154 * Return the total number of matches or -1 if still unknown -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 */
4156 static int
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004157ins_compl_get_exp(ini)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 pos_T *ini;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159{
4160 static pos_T first_match_pos;
4161 static pos_T last_match_pos;
4162 static char_u *e_cpt = (char_u *)""; /* curr. entry in 'complete' */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004163 static int found_all = FALSE; /* Found all matches of a
4164 certain type. */
4165 static buf_T *ins_buf = NULL; /* buffer being scanned */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166
Bram Moolenaar572cb562005-08-05 21:35:02 +00004167 pos_T *pos;
4168 char_u **matches;
4169 int save_p_scs;
4170 int save_p_ws;
4171 int save_p_ic;
4172 int i;
4173 int num_matches;
4174 int len;
4175 int found_new_match;
4176 int type = ctrl_x_mode;
4177 char_u *ptr;
4178 char_u *dict = NULL;
4179 int dict_f = 0;
4180 compl_T *old_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004182 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 {
4184 for (ins_buf = firstbuf; ins_buf != NULL; ins_buf = ins_buf->b_next)
4185 ins_buf->b_scanned = 0;
4186 found_all = FALSE;
4187 ins_buf = curbuf;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004188 e_cpt = (compl_cont_status & CONT_LOCAL)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004189 ? (char_u *)"." : curbuf->b_p_cpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 last_match_pos = first_match_pos = *ini;
4191 }
4192
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004193 old_match = compl_curr_match; /* remember the last current match */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004194 pos = (compl_direction == FORWARD) ? &last_match_pos : &first_match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 /* For ^N/^P loop over all the flags/windows/buffers in 'complete' */
4196 for (;;)
4197 {
4198 found_new_match = FAIL;
4199
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004200 /* For ^N/^P pick a new entry from e_cpt if compl_started is off,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 * or if found_all says this entry is done. For ^X^L only use the
4202 * entries from 'complete' that look in loaded buffers. */
4203 if ((ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004204 && (!compl_started || found_all))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 {
4206 found_all = FALSE;
4207 while (*e_cpt == ',' || *e_cpt == ' ')
4208 e_cpt++;
4209 if (*e_cpt == '.' && !curbuf->b_scanned)
4210 {
4211 ins_buf = curbuf;
4212 first_match_pos = *ini;
4213 /* So that ^N can match word immediately after cursor */
4214 if (ctrl_x_mode == 0)
4215 dec(&first_match_pos);
4216 last_match_pos = first_match_pos;
4217 type = 0;
4218 }
4219 else if (vim_strchr((char_u *)"buwU", *e_cpt) != NULL
4220 && (ins_buf = ins_compl_next_buf(ins_buf, *e_cpt)) != curbuf)
4221 {
4222 /* Scan a buffer, but not the current one. */
4223 if (ins_buf->b_ml.ml_mfp != NULL) /* loaded buffer */
4224 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004225 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 first_match_pos.col = last_match_pos.col = 0;
4227 first_match_pos.lnum = ins_buf->b_ml.ml_line_count + 1;
4228 last_match_pos.lnum = 0;
4229 type = 0;
4230 }
4231 else /* unloaded buffer, scan like dictionary */
4232 {
4233 found_all = TRUE;
4234 if (ins_buf->b_fname == NULL)
4235 continue;
4236 type = CTRL_X_DICTIONARY;
4237 dict = ins_buf->b_fname;
4238 dict_f = DICT_EXACT;
4239 }
Bram Moolenaar555b2802005-05-19 21:08:39 +00004240 vim_snprintf((char *)IObuff, IOSIZE, _("Scanning: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 ins_buf->b_fname == NULL
4242 ? buf_spname(ins_buf)
4243 : ins_buf->b_sfname == NULL
Bram Moolenaar4ccb2652012-10-04 22:38:37 +02004244 ? ins_buf->b_fname
4245 : ins_buf->b_sfname);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004246 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 }
4248 else if (*e_cpt == NUL)
4249 break;
4250 else
4251 {
4252 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
4253 type = -1;
4254 else if (*e_cpt == 'k' || *e_cpt == 's')
4255 {
4256 if (*e_cpt == 'k')
4257 type = CTRL_X_DICTIONARY;
4258 else
4259 type = CTRL_X_THESAURUS;
4260 if (*++e_cpt != ',' && *e_cpt != NUL)
4261 {
4262 dict = e_cpt;
4263 dict_f = DICT_FIRST;
4264 }
4265 }
4266#ifdef FEAT_FIND_ID
4267 else if (*e_cpt == 'i')
4268 type = CTRL_X_PATH_PATTERNS;
4269 else if (*e_cpt == 'd')
4270 type = CTRL_X_PATH_DEFINES;
4271#endif
4272 else if (*e_cpt == ']' || *e_cpt == 't')
4273 {
4274 type = CTRL_X_TAGS;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004275 vim_snprintf((char *)IObuff, IOSIZE, _("Scanning tags."));
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004276 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 }
4278 else
4279 type = -1;
4280
4281 /* in any case e_cpt is advanced to the next entry */
4282 (void)copy_option_part(&e_cpt, IObuff, IOSIZE, ",");
4283
4284 found_all = TRUE;
4285 if (type == -1)
4286 continue;
4287 }
4288 }
4289
4290 switch (type)
4291 {
4292 case -1:
4293 break;
4294#ifdef FEAT_FIND_ID
4295 case CTRL_X_PATH_PATTERNS:
4296 case CTRL_X_PATH_DEFINES:
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004297 find_pattern_in_path(compl_pattern, compl_direction,
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004298 (int)STRLEN(compl_pattern), FALSE, FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 (type == CTRL_X_PATH_DEFINES
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004300 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 ? FIND_DEFINE : FIND_ANY, 1L, ACTION_EXPAND,
4302 (linenr_T)1, (linenr_T)MAXLNUM);
4303 break;
4304#endif
4305
4306 case CTRL_X_DICTIONARY:
4307 case CTRL_X_THESAURUS:
4308 ins_compl_dictionaries(
Bram Moolenaar0b238792006-03-02 22:49:12 +00004309 dict != NULL ? dict
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 : (type == CTRL_X_THESAURUS
4311 ? (*curbuf->b_p_tsr == NUL
4312 ? p_tsr
4313 : curbuf->b_p_tsr)
4314 : (*curbuf->b_p_dict == NUL
4315 ? p_dict
4316 : curbuf->b_p_dict)),
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004317 compl_pattern,
Bram Moolenaar0b238792006-03-02 22:49:12 +00004318 dict != NULL ? dict_f
4319 : 0, type == CTRL_X_THESAURUS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 dict = NULL;
4321 break;
4322
4323 case CTRL_X_TAGS:
4324 /* set p_ic according to p_ic, p_scs and pat for find_tags(). */
4325 save_p_ic = p_ic;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004326 p_ic = ignorecase(compl_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01004328 /* Find up to TAG_MANY matches. Avoids that an enormous number
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004329 * of matches is found when compl_pattern is empty */
4330 if (find_tags(compl_pattern, &num_matches, &matches,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 TAG_REGEXP | TAG_NAMES | TAG_NOIC |
4332 TAG_INS_COMP | (ctrl_x_mode ? TAG_VERBOSE : 0),
4333 TAG_MANY, curbuf->b_ffname) == OK && num_matches > 0)
4334 {
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004335 ins_compl_add_matches(num_matches, matches, p_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 }
4337 p_ic = save_p_ic;
4338 break;
4339
4340 case CTRL_X_FILES:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004341 if (expand_wildcards(1, &compl_pattern, &num_matches, &matches,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 EW_FILE|EW_DIR|EW_ADDSLASH|EW_SILENT) == OK)
4343 {
4344
4345 /* May change home directory back to "~". */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004346 tilde_replace(compl_pattern, num_matches, matches);
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01004347 ins_compl_add_matches(num_matches, matches, p_fic || p_wic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 }
4349 break;
4350
4351 case CTRL_X_CMDLINE:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004352 if (expand_cmdline(&compl_xp, compl_pattern,
4353 (int)STRLEN(compl_pattern),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 &num_matches, &matches) == EXPAND_OK)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004355 ins_compl_add_matches(num_matches, matches, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 break;
4357
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004358#ifdef FEAT_COMPL_FUNC
4359 case CTRL_X_FUNCTION:
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004360 case CTRL_X_OMNI:
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004361 expand_by_function(type, compl_pattern);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004362 break;
4363#endif
4364
Bram Moolenaar488c6512005-08-11 20:09:58 +00004365 case CTRL_X_SPELL:
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00004366#ifdef FEAT_SPELL
Bram Moolenaar488c6512005-08-11 20:09:58 +00004367 num_matches = expand_spelling(first_match_pos.lnum,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004368 compl_pattern, &matches);
Bram Moolenaar488c6512005-08-11 20:09:58 +00004369 if (num_matches > 0)
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004370 ins_compl_add_matches(num_matches, matches, p_ic);
Bram Moolenaar488c6512005-08-11 20:09:58 +00004371#endif
4372 break;
4373
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 default: /* normal ^P/^N and ^X^L */
4375 /*
4376 * If 'infercase' is set, don't use 'smartcase' here
4377 */
4378 save_p_scs = p_scs;
4379 if (ins_buf->b_p_inf)
4380 p_scs = FALSE;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004381
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 /* buffers other than curbuf are scanned from the beginning or the
4383 * end but never from the middle, thus setting nowrapscan in this
4384 * buffers is a good idea, on the other hand, we always set
4385 * wrapscan for curbuf to avoid missing matches -- Acevedo,Webb */
4386 save_p_ws = p_ws;
4387 if (ins_buf != curbuf)
4388 p_ws = FALSE;
4389 else if (*e_cpt == '.')
4390 p_ws = TRUE;
4391 for (;;)
4392 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00004393 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004395 ++msg_silent; /* Don't want messages for wrapscan. */
4396
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004397 /* ctrl_x_mode == CTRL_X_WHOLE_LINE || word-wise search that
4398 * has added a word that was at the beginning of the line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 if ( ctrl_x_mode == CTRL_X_WHOLE_LINE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004400 || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 found_new_match = search_for_exact_line(ins_buf, pos,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004402 compl_direction, compl_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 else
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004404 found_new_match = searchit(NULL, ins_buf, pos,
4405 compl_direction,
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004406 compl_pattern, 1L, SEARCH_KEEP + SEARCH_NFMSG,
Bram Moolenaar76929292008-01-06 19:07:36 +00004407 RE_LAST, (linenr_T)0, NULL);
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004408 --msg_silent;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004409 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004411 /* set "compl_started" even on fail */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004412 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 first_match_pos = *pos;
4414 last_match_pos = *pos;
4415 }
4416 else if (first_match_pos.lnum == last_match_pos.lnum
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004417 && first_match_pos.col == last_match_pos.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 found_new_match = FAIL;
4419 if (found_new_match == FAIL)
4420 {
4421 if (ins_buf == curbuf)
4422 found_all = TRUE;
4423 break;
4424 }
4425
4426 /* when ADDING, the text before the cursor matches, skip it */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004427 if ( (compl_cont_status & CONT_ADDING) && ins_buf == curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 && ini->lnum == pos->lnum
4429 && ini->col == pos->col)
4430 continue;
4431 ptr = ml_get_buf(ins_buf, pos->lnum, FALSE) + pos->col;
4432 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
4433 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004434 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 {
4436 if (pos->lnum >= ins_buf->b_ml.ml_line_count)
4437 continue;
4438 ptr = ml_get_buf(ins_buf, pos->lnum + 1, FALSE);
4439 if (!p_paste)
4440 ptr = skipwhite(ptr);
4441 }
4442 len = (int)STRLEN(ptr);
4443 }
4444 else
4445 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004446 char_u *tmp_ptr = ptr;
4447
4448 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004450 tmp_ptr += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 /* Skip if already inside a word. */
4452 if (vim_iswordp(tmp_ptr))
4453 continue;
4454 /* Find start of next word. */
4455 tmp_ptr = find_word_start(tmp_ptr);
4456 }
4457 /* Find end of this word. */
4458 tmp_ptr = find_word_end(tmp_ptr);
4459 len = (int)(tmp_ptr - ptr);
4460
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004461 if ((compl_cont_status & CONT_ADDING)
4462 && len == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 {
4464 if (pos->lnum < ins_buf->b_ml.ml_line_count)
4465 {
4466 /* Try next line, if any. the new word will be
4467 * "join" as if the normal command "J" was used.
4468 * IOSIZE is always greater than
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004469 * compl_length, so the next STRNCPY always
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 * works -- Acevedo */
4471 STRNCPY(IObuff, ptr, len);
4472 ptr = ml_get_buf(ins_buf, pos->lnum + 1, FALSE);
4473 tmp_ptr = ptr = skipwhite(ptr);
4474 /* Find start of next word. */
4475 tmp_ptr = find_word_start(tmp_ptr);
4476 /* Find end of next word. */
4477 tmp_ptr = find_word_end(tmp_ptr);
4478 if (tmp_ptr > ptr)
4479 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004480 if (*ptr != ')' && IObuff[len - 1] != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004482 if (IObuff[len - 1] != ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 IObuff[len++] = ' ';
4484 /* IObuf =~ "\k.* ", thus len >= 2 */
4485 if (p_js
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004486 && (IObuff[len - 2] == '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 || (vim_strchr(p_cpo, CPO_JOINSP)
4488 == NULL
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004489 && (IObuff[len - 2] == '?'
4490 || IObuff[len - 2] == '!'))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 IObuff[len++] = ' ';
4492 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01004493 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 if (tmp_ptr - ptr >= IOSIZE - len)
4495 tmp_ptr = ptr + IOSIZE - len - 1;
4496 STRNCPY(IObuff + len, ptr, tmp_ptr - ptr);
4497 len += (int)(tmp_ptr - ptr);
Bram Moolenaar572cb562005-08-05 21:35:02 +00004498 flags |= CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 }
4500 IObuff[len] = NUL;
4501 ptr = IObuff;
4502 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004503 if (len == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 continue;
4505 }
4506 }
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004507 if (ins_compl_add_infercase(ptr, len, p_ic,
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004508 ins_buf == curbuf ? NULL : ins_buf->b_sfname,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004509 0, flags) != NOTDONE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 {
4511 found_new_match = OK;
4512 break;
4513 }
4514 }
4515 p_scs = save_p_scs;
4516 p_ws = save_p_ws;
4517 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004518
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004519 /* check if compl_curr_match has changed, (e.g. other type of
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00004520 * expansion added something) */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004521 if (type != 0 && compl_curr_match != old_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 found_new_match = OK;
4523
4524 /* break the loop for specialized modes (use 'complete' just for the
4525 * generic ctrl_x_mode == 0) or when we've found a new match */
4526 if ((ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004527 || found_new_match != FAIL)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004528 {
4529 if (got_int)
4530 break;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004531 /* Fill the popup menu as soon as possible. */
Bram Moolenaar5948a572006-10-03 13:49:29 +00004532 if (type != -1)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004533 ins_compl_check_keys(0);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004534
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004535 if ((ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE)
4536 || compl_interrupted)
4537 break;
4538 compl_started = TRUE;
4539 }
4540 else
4541 {
4542 /* Mark a buffer scanned when it has been scanned completely */
4543 if (type == 0 || type == CTRL_X_PATH_PATTERNS)
4544 ins_buf->b_scanned = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004546 compl_started = FALSE;
4547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004549 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550
4551 if ((ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_WHOLE_LINE)
4552 && *e_cpt == NUL) /* Got to end of 'complete' */
4553 found_new_match = FAIL;
4554
4555 i = -1; /* total of matches, unknown */
4556 if (found_new_match == FAIL
4557 || (ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE))
4558 i = ins_compl_make_cyclic();
4559
4560 /* If several matches were added (FORWARD) or the search failed and has
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004561 * just been made cyclic then we have to move compl_curr_match to the next
4562 * or previous entry (if any) -- Acevedo */
Bram Moolenaara94bc432006-03-10 21:42:59 +00004563 compl_curr_match = compl_direction == FORWARD ? old_match->cp_next
4564 : old_match->cp_prev;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004565 if (compl_curr_match == NULL)
4566 compl_curr_match = old_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 return i;
4568}
4569
4570/* Delete the old text being completed. */
4571 static void
4572ins_compl_delete()
4573{
4574 int i;
4575
4576 /*
4577 * In insert mode: Delete the typed part.
4578 * In replace mode: Put the old characters back, if any.
4579 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004580 i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 backspace_until_column(i);
4582 changed_cline_bef_curs();
4583}
4584
4585/* Insert the new text being completed. */
4586 static void
4587ins_compl_insert()
4588{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00004589 ins_bytes(compl_shown_match->cp_str + ins_compl_len());
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004590 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
4591 compl_used_match = FALSE;
4592 else
4593 compl_used_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594}
4595
4596/*
4597 * Fill in the next completion in the current direction.
Bram Moolenaar572cb562005-08-05 21:35:02 +00004598 * If "allow_get_expansion" is TRUE, then we may call ins_compl_get_exp() to
4599 * get more completions. If it is FALSE, then we just do nothing when there
4600 * are no more completions in a given direction. The latter case is used when
4601 * we are still in the middle of finding completions, to allow browsing
4602 * through the ones found so far.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 * Return the total number of matches, or -1 if still unknown -- webb.
4604 *
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004605 * compl_curr_match is currently being used by ins_compl_get_exp(), so we use
4606 * compl_shown_match here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 *
4608 * Note that this function may be called recursively once only. First with
Bram Moolenaar572cb562005-08-05 21:35:02 +00004609 * "allow_get_expansion" TRUE, which calls ins_compl_get_exp(), which in turn
4610 * calls this function with "allow_get_expansion" FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 */
4612 static int
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004613ins_compl_next(allow_get_expansion, count, insert_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 int allow_get_expansion;
Bram Moolenaare3226be2005-12-18 22:10:00 +00004615 int count; /* repeat completion this many times; should
4616 be at least 1 */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004617 int insert_match; /* Insert the newly selected match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618{
4619 int num_matches = -1;
4620 int i;
Bram Moolenaare3226be2005-12-18 22:10:00 +00004621 int todo = count;
Bram Moolenaara6557602006-02-04 22:43:20 +00004622 compl_T *found_compl = NULL;
4623 int found_end = FALSE;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004624 int advance;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01004626 /* When user complete function return -1 for findstart which is next
4627 * time of 'always', compl_shown_match become NULL. */
4628 if (compl_shown_match == NULL)
4629 return -1;
4630
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004631 if (compl_leader != NULL
4632 && (compl_shown_match->cp_flags & ORIGINAL_TEXT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004634 /* Set "compl_shown_match" to the actually shown match, it may differ
4635 * when "compl_leader" is used to omit some of the matches. */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004636 while (!ins_compl_equal(compl_shown_match,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004637 compl_leader, (int)STRLEN(compl_leader))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004638 && compl_shown_match->cp_next != NULL
4639 && compl_shown_match->cp_next != compl_first_match)
4640 compl_shown_match = compl_shown_match->cp_next;
Bram Moolenaar0440ca32006-05-13 13:24:33 +00004641
4642 /* If we didn't find it searching forward, and compl_shows_dir is
4643 * backward, find the last match. */
4644 if (compl_shows_dir == BACKWARD
4645 && !ins_compl_equal(compl_shown_match,
4646 compl_leader, (int)STRLEN(compl_leader))
4647 && (compl_shown_match->cp_next == NULL
4648 || compl_shown_match->cp_next == compl_first_match))
4649 {
4650 while (!ins_compl_equal(compl_shown_match,
4651 compl_leader, (int)STRLEN(compl_leader))
4652 && compl_shown_match->cp_prev != NULL
4653 && compl_shown_match->cp_prev != compl_first_match)
4654 compl_shown_match = compl_shown_match->cp_prev;
4655 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004656 }
4657
4658 if (allow_get_expansion && insert_match
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004659 && (!(compl_get_longest || compl_restarting) || compl_used_match))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 /* Delete old text to be replaced */
4661 ins_compl_delete();
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004662
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004663 /* When finding the longest common text we stick at the original text,
4664 * don't let CTRL-N or CTRL-P move to the first match. */
4665 advance = count != 1 || !allow_get_expansion || !compl_get_longest;
4666
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004667 /* When restarting the search don't insert the first match either. */
4668 if (compl_restarting)
4669 {
4670 advance = FALSE;
4671 compl_restarting = FALSE;
4672 }
4673
Bram Moolenaare3226be2005-12-18 22:10:00 +00004674 /* Repeat this for when <PageUp> or <PageDown> is typed. But don't wrap
4675 * around. */
4676 while (--todo >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 {
Bram Moolenaare3226be2005-12-18 22:10:00 +00004678 if (compl_shows_dir == FORWARD && compl_shown_match->cp_next != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 {
Bram Moolenaare3226be2005-12-18 22:10:00 +00004680 compl_shown_match = compl_shown_match->cp_next;
Bram Moolenaara6557602006-02-04 22:43:20 +00004681 found_end = (compl_first_match != NULL
4682 && (compl_shown_match->cp_next == compl_first_match
4683 || compl_shown_match == compl_first_match));
Bram Moolenaare3226be2005-12-18 22:10:00 +00004684 }
4685 else if (compl_shows_dir == BACKWARD
4686 && compl_shown_match->cp_prev != NULL)
4687 {
Bram Moolenaara6557602006-02-04 22:43:20 +00004688 found_end = (compl_shown_match == compl_first_match);
Bram Moolenaare3226be2005-12-18 22:10:00 +00004689 compl_shown_match = compl_shown_match->cp_prev;
Bram Moolenaara6557602006-02-04 22:43:20 +00004690 found_end |= (compl_shown_match == compl_first_match);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 }
4692 else
Bram Moolenaare3226be2005-12-18 22:10:00 +00004693 {
Bram Moolenaara260a972006-06-23 19:36:29 +00004694 if (!allow_get_expansion)
4695 {
4696 if (advance)
4697 {
4698 if (compl_shows_dir == BACKWARD)
4699 compl_pending -= todo + 1;
4700 else
4701 compl_pending += todo + 1;
4702 }
4703 return -1;
4704 }
4705
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004706 if (advance)
4707 {
4708 if (compl_shows_dir == BACKWARD)
4709 --compl_pending;
4710 else
4711 ++compl_pending;
4712 }
Bram Moolenaara6557602006-02-04 22:43:20 +00004713
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004714 /* Find matches. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004715 num_matches = ins_compl_get_exp(&compl_startpos);
Bram Moolenaara260a972006-06-23 19:36:29 +00004716
4717 /* handle any pending completions */
4718 while (compl_pending != 0 && compl_direction == compl_shows_dir
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004719 && advance)
Bram Moolenaara260a972006-06-23 19:36:29 +00004720 {
4721 if (compl_pending > 0 && compl_shown_match->cp_next != NULL)
4722 {
4723 compl_shown_match = compl_shown_match->cp_next;
4724 --compl_pending;
4725 }
4726 if (compl_pending < 0 && compl_shown_match->cp_prev != NULL)
4727 {
4728 compl_shown_match = compl_shown_match->cp_prev;
4729 ++compl_pending;
4730 }
4731 else
4732 break;
4733 }
Bram Moolenaara6557602006-02-04 22:43:20 +00004734 found_end = FALSE;
4735 }
4736 if ((compl_shown_match->cp_flags & ORIGINAL_TEXT) == 0
4737 && compl_leader != NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004738 && !ins_compl_equal(compl_shown_match,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004739 compl_leader, (int)STRLEN(compl_leader)))
Bram Moolenaara6557602006-02-04 22:43:20 +00004740 ++todo;
4741 else
4742 /* Remember a matching item. */
4743 found_compl = compl_shown_match;
4744
4745 /* Stop at the end of the list when we found a usable match. */
4746 if (found_end)
4747 {
4748 if (found_compl != NULL)
4749 {
4750 compl_shown_match = found_compl;
4751 break;
4752 }
4753 todo = 1; /* use first usable match after wrapping around */
Bram Moolenaare3226be2005-12-18 22:10:00 +00004754 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 }
4756
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004757 /* Insert the text of the new completion, or the compl_leader. */
4758 if (insert_match)
4759 {
4760 if (!compl_get_longest || compl_used_match)
4761 ins_compl_insert();
4762 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00004763 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004764 }
4765 else
4766 compl_used_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767
4768 if (!allow_get_expansion)
4769 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004770 /* may undisplay the popup menu first */
4771 ins_compl_upd_pum();
4772
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004773 /* redraw to show the user what was inserted */
4774 update_screen(0);
4775
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004776 /* display the updated popup menu */
4777 ins_compl_show_pum();
Bram Moolenaar14716812006-05-04 21:54:08 +00004778#ifdef FEAT_GUI
4779 if (gui.in_use)
4780 {
4781 /* Show the cursor after the match, not after the redrawn text. */
4782 setcursor();
4783 out_flush();
4784 gui_update_cursor(FALSE, FALSE);
4785 }
4786#endif
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004787
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 /* Delete old text to be replaced, since we're still searching and
4789 * don't want to match ourselves! */
4790 ins_compl_delete();
4791 }
4792
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004793 /* Enter will select a match when the match wasn't inserted and the popup
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00004794 * menu is visible. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004795 compl_enter_selects = !insert_match && compl_match_array != NULL;
4796
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 /*
4798 * Show the file name for the match (if any)
4799 * Truncate the file name to avoid a wait for return.
4800 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00004801 if (compl_shown_match->cp_fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 {
4803 STRCPY(IObuff, "match in file ");
Bram Moolenaar572cb562005-08-05 21:35:02 +00004804 i = (vim_strsize(compl_shown_match->cp_fname) + 16) - sc_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 if (i <= 0)
4806 i = 0;
4807 else
4808 STRCAT(IObuff, "<");
Bram Moolenaar572cb562005-08-05 21:35:02 +00004809 STRCAT(IObuff, compl_shown_match->cp_fname + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 msg(IObuff);
4811 redraw_cmdline = FALSE; /* don't overwrite! */
4812 }
4813
4814 return num_matches;
4815}
4816
4817/*
4818 * Call this while finding completions, to check whether the user has hit a key
4819 * that should change the currently displayed completion, or exit completion
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004820 * mode. Also, when compl_pending is not zero, show a completion as soon as
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 * possible. -- webb
Bram Moolenaar572cb562005-08-05 21:35:02 +00004822 * "frequency" specifies out of how many calls we actually check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 */
4824 void
Bram Moolenaar572cb562005-08-05 21:35:02 +00004825ins_compl_check_keys(frequency)
4826 int frequency;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827{
4828 static int count = 0;
4829
4830 int c;
4831
4832 /* Don't check when reading keys from a script. That would break the test
4833 * scripts */
4834 if (using_script())
4835 return;
4836
4837 /* Only do this at regular intervals */
Bram Moolenaar572cb562005-08-05 21:35:02 +00004838 if (++count < frequency)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 return;
4840 count = 0;
4841
Bram Moolenaara260a972006-06-23 19:36:29 +00004842 /* Check for a typed key. Do use mappings, otherwise vim_is_ctrl_x_key()
4843 * can't do its work correctly. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 c = vpeekc_any();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 if (c != NUL)
4846 {
4847 if (vim_is_ctrl_x_key(c) && c != Ctrl_X && c != Ctrl_R)
4848 {
4849 c = safe_vgetc(); /* Eat the character */
Bram Moolenaare3226be2005-12-18 22:10:00 +00004850 compl_shows_dir = ins_compl_key2dir(c);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004851 (void)ins_compl_next(FALSE, ins_compl_key2count(c),
4852 c != K_UP && c != K_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 }
Bram Moolenaara260a972006-06-23 19:36:29 +00004854 else
4855 {
4856 /* Need to get the character to have KeyTyped set. We'll put it
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004857 * back with vungetc() below. But skip K_IGNORE. */
Bram Moolenaara260a972006-06-23 19:36:29 +00004858 c = safe_vgetc();
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004859 if (c != K_IGNORE)
4860 {
4861 /* Don't interrupt completion when the character wasn't typed,
4862 * e.g., when doing @q to replay keys. */
4863 if (c != Ctrl_R && KeyTyped)
4864 compl_interrupted = TRUE;
Bram Moolenaara260a972006-06-23 19:36:29 +00004865
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004866 vungetc(c);
4867 }
Bram Moolenaara260a972006-06-23 19:36:29 +00004868 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004870 if (compl_pending != 0 && !got_int)
Bram Moolenaara260a972006-06-23 19:36:29 +00004871 {
4872 int todo = compl_pending > 0 ? compl_pending : -compl_pending;
4873
4874 compl_pending = 0;
4875 (void)ins_compl_next(FALSE, todo, TRUE);
4876 }
Bram Moolenaare3226be2005-12-18 22:10:00 +00004877}
4878
4879/*
4880 * Decide the direction of Insert mode complete from the key typed.
4881 * Returns BACKWARD or FORWARD.
4882 */
4883 static int
4884ins_compl_key2dir(c)
4885 int c;
4886{
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004887 if (c == Ctrl_P || c == Ctrl_L
4888 || (pum_visible() && (c == K_PAGEUP || c == K_KPAGEUP
4889 || c == K_S_UP || c == K_UP)))
Bram Moolenaare3226be2005-12-18 22:10:00 +00004890 return BACKWARD;
4891 return FORWARD;
4892}
4893
4894/*
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004895 * Return TRUE for keys that are used for completion only when the popup menu
4896 * is visible.
4897 */
4898 static int
4899ins_compl_pum_key(c)
4900 int c;
4901{
4902 return pum_visible() && (c == K_PAGEUP || c == K_KPAGEUP || c == K_S_UP
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004903 || c == K_PAGEDOWN || c == K_KPAGEDOWN || c == K_S_DOWN
4904 || c == K_UP || c == K_DOWN);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004905}
4906
4907/*
Bram Moolenaare3226be2005-12-18 22:10:00 +00004908 * Decide the number of completions to move forward.
4909 * Returns 1 for most keys, height of the popup menu for page-up/down keys.
4910 */
4911 static int
4912ins_compl_key2count(c)
4913 int c;
4914{
4915 int h;
4916
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004917 if (ins_compl_pum_key(c) && c != K_UP && c != K_DOWN)
Bram Moolenaare3226be2005-12-18 22:10:00 +00004918 {
4919 h = pum_get_height();
4920 if (h > 3)
4921 h -= 2; /* keep some context */
4922 return h;
4923 }
4924 return 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925}
4926
4927/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004928 * Return TRUE if completion with "c" should insert the match, FALSE if only
4929 * to change the currently selected completion.
4930 */
4931 static int
4932ins_compl_use_match(c)
4933 int c;
4934{
4935 switch (c)
4936 {
4937 case K_UP:
4938 case K_DOWN:
4939 case K_PAGEDOWN:
4940 case K_KPAGEDOWN:
4941 case K_S_DOWN:
4942 case K_PAGEUP:
4943 case K_KPAGEUP:
4944 case K_S_UP:
4945 return FALSE;
4946 }
4947 return TRUE;
4948}
4949
4950/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 * Do Insert mode completion.
4952 * Called when character "c" was typed, which has a meaning for completion.
4953 * Returns OK if completion was done, FAIL if something failed (out of mem).
4954 */
4955 static int
4956ins_complete(c)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004957 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004959 char_u *line;
4960 int startcol = 0; /* column where searched text starts */
4961 colnr_T curs_col; /* cursor column */
4962 int n;
Bram Moolenaarbe678f82010-03-10 14:15:54 +01004963 int save_w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964
Bram Moolenaare3226be2005-12-18 22:10:00 +00004965 compl_direction = ins_compl_key2dir(c);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004966 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 {
4968 /* First time we hit ^N or ^P (in a row, I mean) */
4969
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 did_ai = FALSE;
4971#ifdef FEAT_SMARTINDENT
4972 did_si = FALSE;
4973 can_si = FALSE;
4974 can_si_back = FALSE;
4975#endif
4976 if (stop_arrow() == FAIL)
4977 return FAIL;
4978
4979 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004980 curs_col = curwin->w_cursor.col;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004981 compl_pending = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982
Bram Moolenaar711d5b52007-10-19 18:40:51 +00004983 /* If this same ctrl_x_mode has been interrupted use the text from
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004984 * "compl_startpos" to the cursor as a pattern to add a new word
4985 * instead of expand the one before the cursor, in word-wise if
Bram Moolenaar711d5b52007-10-19 18:40:51 +00004986 * "compl_startpos" is not in the same line as the cursor then fix it
4987 * (the line has been split because it was longer than 'tw'). if SOL
4988 * is set then skip the previous pattern, a word at the beginning of
4989 * the line has been inserted, we'll look for that -- Acevedo. */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004990 if ((compl_cont_status & CONT_INTRPT) == CONT_INTRPT
4991 && compl_cont_mode == ctrl_x_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 {
4993 /*
4994 * it is a continued search
4995 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004996 compl_cont_status &= ~CONT_INTRPT; /* remove INTRPT */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 if (ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_PATH_PATTERNS
4998 || ctrl_x_mode == CTRL_X_PATH_DEFINES)
4999 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005000 if (compl_startpos.lnum != curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005002 /* line (probably) wrapped, set compl_startpos to the
5003 * first non_blank in the line, if it is not a wordchar
5004 * include it to get a better pattern, but then we don't
5005 * want the "\\<" prefix, check it bellow */
5006 compl_col = (colnr_T)(skipwhite(line) - line);
5007 compl_startpos.col = compl_col;
5008 compl_startpos.lnum = curwin->w_cursor.lnum;
5009 compl_cont_status &= ~CONT_SOL; /* clear SOL if present */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 }
5011 else
5012 {
5013 /* S_IPOS was set when we inserted a word that was at the
5014 * beginning of the line, which means that we'll go to SOL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005015 * mode but first we need to redefine compl_startpos */
5016 if (compl_cont_status & CONT_S_IPOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005018 compl_cont_status |= CONT_SOL;
5019 compl_startpos.col = (colnr_T)(skipwhite(
5020 line + compl_length
5021 + compl_startpos.col) - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005023 compl_col = compl_startpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005025 compl_length = curwin->w_cursor.col - (int)compl_col;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005026 /* IObuff is used to add a "word from the next line" would we
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00005027 * have enough space? just being paranoid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028#define MIN_SPACE 75
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005029 if (compl_length > (IOSIZE - MIN_SPACE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005031 compl_cont_status &= ~CONT_SOL;
5032 compl_length = (IOSIZE - MIN_SPACE);
5033 compl_col = curwin->w_cursor.col - compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005035 compl_cont_status |= CONT_ADDING | CONT_N_ADDS;
5036 if (compl_length < 1)
5037 compl_cont_status &= CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 }
5039 else if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005040 compl_cont_status = CONT_ADDING | CONT_N_ADDS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005042 compl_cont_status = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 }
5044 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005045 compl_cont_status &= CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005047 if (!(compl_cont_status & CONT_ADDING)) /* normal expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005049 compl_cont_mode = ctrl_x_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 if (ctrl_x_mode != 0) /* Remove LOCAL if ctrl_x_mode != 0 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005051 compl_cont_status = 0;
5052 compl_cont_status |= CONT_N_ADDS;
5053 compl_startpos = curwin->w_cursor;
5054 startcol = (int)curs_col;
5055 compl_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 }
5057
5058 /* Work out completion pattern and original text -- webb */
5059 if (ctrl_x_mode == 0 || (ctrl_x_mode & CTRL_X_WANT_IDENT))
5060 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005061 if ((compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 || ctrl_x_mode == CTRL_X_PATH_DEFINES)
5063 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005064 if (!(compl_cont_status & CONT_ADDING))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005066 while (--startcol >= 0 && vim_isIDc(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005068 compl_col += ++startcol;
5069 compl_length = curs_col - startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 }
5071 if (p_ic)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005072 compl_pattern = str_foldcase(line + compl_col,
5073 compl_length, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005075 compl_pattern = vim_strnsave(line + compl_col,
5076 compl_length);
5077 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 return FAIL;
5079 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005080 else if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 {
5082 char_u *prefix = (char_u *)"\\<";
5083
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005084 /* we need up to 2 extra chars for the prefix */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005085 compl_pattern = alloc(quote_meta(NULL, line + compl_col,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005086 compl_length) + 2);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005087 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005089 if (!vim_iswordp(line + compl_col)
5090 || (compl_col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 && (
5092#ifdef FEAT_MBYTE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005093 vim_iswordp(mb_prevptr(line, line + compl_col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005095 vim_iswordc(line[compl_col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096#endif
5097 )))
5098 prefix = (char_u *)"";
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005099 STRCPY((char *)compl_pattern, prefix);
5100 (void)quote_meta(compl_pattern + STRLEN(prefix),
5101 line + compl_col, compl_length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005103 else if (--startcol < 0 ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104#ifdef FEAT_MBYTE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005105 !vim_iswordp(mb_prevptr(line, line + startcol + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005107 !vim_iswordc(line[startcol])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108#endif
5109 )
5110 {
5111 /* Match any word of at least two chars */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005112 compl_pattern = vim_strsave((char_u *)"\\<\\k\\k");
5113 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005115 compl_col += curs_col;
5116 compl_length = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 }
5118 else
5119 {
5120#ifdef FEAT_MBYTE
5121 /* Search the point of change class of multibyte character
5122 * or not a word single byte character backward. */
5123 if (has_mbyte)
5124 {
5125 int base_class;
5126 int head_off;
5127
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005128 startcol -= (*mb_head_off)(line, line + startcol);
5129 base_class = mb_get_class(line + startcol);
5130 while (--startcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005132 head_off = (*mb_head_off)(line, line + startcol);
5133 if (base_class != mb_get_class(line + startcol
5134 - head_off))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005136 startcol -= head_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 }
5138 }
5139 else
5140#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005141 while (--startcol >= 0 && vim_iswordc(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005143 compl_col += ++startcol;
5144 compl_length = (int)curs_col - startcol;
5145 if (compl_length == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 {
5147 /* Only match word with at least two chars -- webb
5148 * there's no need to call quote_meta,
5149 * alloc(7) is enough -- Acevedo
5150 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005151 compl_pattern = alloc(7);
5152 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005154 STRCPY((char *)compl_pattern, "\\<");
5155 (void)quote_meta(compl_pattern + 2, line + compl_col, 1);
5156 STRCAT((char *)compl_pattern, "\\k");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 }
5158 else
5159 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005160 compl_pattern = alloc(quote_meta(NULL, line + compl_col,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005161 compl_length) + 2);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005162 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005164 STRCPY((char *)compl_pattern, "\\<");
5165 (void)quote_meta(compl_pattern + 2, line + compl_col,
5166 compl_length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 }
5168 }
5169 }
5170 else if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
5171 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005172 compl_col = (colnr_T)(skipwhite(line) - line);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005173 compl_length = (int)curs_col - (int)compl_col;
5174 if (compl_length < 0) /* cursor in indent: empty pattern */
5175 compl_length = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 if (p_ic)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005177 compl_pattern = str_foldcase(line + compl_col, compl_length,
5178 NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005180 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5181 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182 return FAIL;
5183 }
5184 else if (ctrl_x_mode == CTRL_X_FILES)
5185 {
Bram Moolenaar00b764a2013-09-05 13:50:53 +02005186 /* Go back to just before the first filename character. */
Bram Moolenaardd407342013-09-08 20:00:48 +02005187 if (startcol > 0)
5188 {
5189 char_u *p = line + startcol;
5190
Bram Moolenaar00b764a2013-09-05 13:50:53 +02005191 mb_ptr_back(line, p);
Bram Moolenaardd407342013-09-08 20:00:48 +02005192 while (p > line && vim_isfilec(PTR2CHAR(p)))
5193 mb_ptr_back(line, p);
5194 if (p == line && vim_isfilec(PTR2CHAR(p)))
5195 startcol = 0;
5196 else
5197 startcol = (int)(p - line) + 1;
5198 }
Bram Moolenaar00b764a2013-09-05 13:50:53 +02005199
Bram Moolenaar0300e462013-09-08 16:03:45 +02005200 compl_col += startcol;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005201 compl_length = (int)curs_col - startcol;
5202 compl_pattern = addstar(line + compl_col, compl_length,
5203 EXPAND_FILES);
5204 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 return FAIL;
5206 }
5207 else if (ctrl_x_mode == CTRL_X_CMDLINE)
5208 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005209 compl_pattern = vim_strnsave(line, curs_col);
5210 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005212 set_cmd_context(&compl_xp, compl_pattern,
5213 (int)STRLEN(compl_pattern), curs_col);
5214 if (compl_xp.xp_context == EXPAND_UNSUCCESSFUL
5215 || compl_xp.xp_context == EXPAND_NOTHING)
Bram Moolenaarf83c5c02006-08-16 19:24:22 +00005216 /* No completion possible, use an empty pattern to get a
5217 * "pattern not found" message. */
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005218 compl_col = curs_col;
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005219 else
Bram Moolenaarf83c5c02006-08-16 19:24:22 +00005220 compl_col = (int)(compl_xp.xp_pattern - compl_pattern);
5221 compl_length = curs_col - compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005223 else if (ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005224 {
Bram Moolenaare344bea2005-09-01 20:46:49 +00005225#ifdef FEAT_COMPL_FUNC
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005226 /*
Bram Moolenaare344bea2005-09-01 20:46:49 +00005227 * Call user defined function 'completefunc' with "a:findstart"
5228 * set to 1 to obtain the length of text to use for completion.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005229 */
Bram Moolenaare344bea2005-09-01 20:46:49 +00005230 char_u *args[2];
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005231 int col;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005232 char_u *funcname;
5233 pos_T pos;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005234 win_T *curwin_save;
5235 buf_T *curbuf_save;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005236
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005237 /* Call 'completefunc' or 'omnifunc' and get pattern length as a
Bram Moolenaare344bea2005-09-01 20:46:49 +00005238 * string */
5239 funcname = ctrl_x_mode == CTRL_X_FUNCTION
5240 ? curbuf->b_p_cfu : curbuf->b_p_ofu;
5241 if (*funcname == NUL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005242 {
5243 EMSG2(_(e_notset), ctrl_x_mode == CTRL_X_FUNCTION
5244 ? "completefunc" : "omnifunc");
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005245 return FAIL;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005246 }
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005247
5248 args[0] = (char_u *)"1";
Bram Moolenaare344bea2005-09-01 20:46:49 +00005249 args[1] = NULL;
5250 pos = curwin->w_cursor;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005251 curwin_save = curwin;
5252 curbuf_save = curbuf;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005253 col = call_func_retnr(funcname, 2, args, FALSE);
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005254 if (curwin_save != curwin || curbuf_save != curbuf)
5255 {
5256 EMSG(_(e_complwin));
5257 return FAIL;
5258 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00005259 curwin->w_cursor = pos; /* restore the cursor position */
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005260 check_cursor();
5261 if (!equalpos(curwin->w_cursor, pos))
5262 {
5263 EMSG(_(e_compldel));
5264 return FAIL;
5265 }
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005266
Bram Moolenaar6110a002012-01-26 18:58:38 +01005267 /* Return value -2 means the user complete function wants to
Bram Moolenaar8a4c1362012-05-18 16:35:21 +02005268 * cancel the complete without an error.
5269 * Return value -3 does the same as -2 and leaves CTRL-X mode.*/
Bram Moolenaar6110a002012-01-26 18:58:38 +01005270 if (col == -2)
5271 return FAIL;
Bram Moolenaar8a4c1362012-05-18 16:35:21 +02005272 if (col == -3)
5273 {
5274 ctrl_x_mode = 0;
5275 edit_submode = NULL;
5276 msg_clr_cmdline();
5277 return FAIL;
5278 }
Bram Moolenaar6110a002012-01-26 18:58:38 +01005279
Bram Moolenaar82139082011-09-14 16:52:09 +02005280 /*
5281 * Reset extended parameters of completion, when start new
5282 * completion.
5283 */
5284 compl_opt_refresh_always = FALSE;
5285
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005286 if (col < 0)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005287 col = curs_col;
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005288 compl_col = col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005289 if (compl_col > curs_col)
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005290 compl_col = curs_col;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005291
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005292 /* Setup variables for completion. Need to obtain "line" again,
5293 * it may have become invalid. */
5294 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005295 compl_length = curs_col - compl_col;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005296 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5297 if (compl_pattern == NULL)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005298#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005299 return FAIL;
5300 }
Bram Moolenaar488c6512005-08-11 20:09:58 +00005301 else if (ctrl_x_mode == CTRL_X_SPELL)
5302 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005303#ifdef FEAT_SPELL
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00005304 if (spell_bad_len > 0)
5305 compl_col = curs_col - spell_bad_len;
5306 else
5307 compl_col = spell_word_start(startcol);
5308 if (compl_col >= (colnr_T)startcol)
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005309 {
5310 compl_length = 0;
5311 compl_col = curs_col;
5312 }
5313 else
5314 {
5315 spell_expand_check_cap(compl_col);
5316 compl_length = (int)curs_col - compl_col;
5317 }
Bram Moolenaare2f98b92006-03-29 21:18:24 +00005318 /* Need to obtain "line" again, it may have become invalid. */
5319 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar488c6512005-08-11 20:09:58 +00005320 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5321 if (compl_pattern == NULL)
5322#endif
5323 return FAIL;
5324 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005325 else
5326 {
5327 EMSG2(_(e_intern2), "ins_complete()");
5328 return FAIL;
5329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005331 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 {
5333 edit_submode_pre = (char_u *)_(" Adding");
5334 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
5335 {
5336 /* Insert a new line, keep indentation but ignore 'comments' */
5337#ifdef FEAT_COMMENTS
5338 char_u *old = curbuf->b_p_com;
5339
5340 curbuf->b_p_com = (char_u *)"";
5341#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005342 compl_startpos.lnum = curwin->w_cursor.lnum;
5343 compl_startpos.col = compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344 ins_eol('\r');
5345#ifdef FEAT_COMMENTS
5346 curbuf->b_p_com = old;
5347#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005348 compl_length = 0;
5349 compl_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 }
5351 }
5352 else
5353 {
5354 edit_submode_pre = NULL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005355 compl_startpos.col = compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 }
5357
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005358 if (compl_cont_status & CONT_LOCAL)
5359 edit_submode = (char_u *)_(ctrl_x_msgs[CTRL_X_LOCAL_MSG]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 else
5361 edit_submode = (char_u *)_(CTRL_X_MSG(ctrl_x_mode));
5362
Bram Moolenaar62951b12011-09-21 18:23:05 +02005363 /* If any of the original typed text has been changed we need to fix
5364 * the redo buffer. */
5365 ins_compl_fixRedoBufForLeader(NULL);
5366
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005367 /* Always add completion for the original text. */
5368 vim_free(compl_orig_text);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005369 compl_orig_text = vim_strnsave(line + compl_col, compl_length);
5370 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005371 -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005373 vim_free(compl_pattern);
5374 compl_pattern = NULL;
5375 vim_free(compl_orig_text);
5376 compl_orig_text = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 return FAIL;
5378 }
5379
5380 /* showmode might reset the internal line pointers, so it must
5381 * be called before line = ml_get(), or when this address is no
5382 * longer needed. -- Acevedo.
5383 */
5384 edit_submode_extra = (char_u *)_("-- Searching...");
5385 edit_submode_highl = HLF_COUNT;
5386 showmode();
5387 edit_submode_extra = NULL;
5388 out_flush();
5389 }
5390
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005391 compl_shown_match = compl_curr_match;
5392 compl_shows_dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393
5394 /*
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005395 * Find next match (and following matches).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 */
Bram Moolenaarbe678f82010-03-10 14:15:54 +01005397 save_w_wrow = curwin->w_wrow;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005398 n = ins_compl_next(TRUE, ins_compl_key2count(c), ins_compl_use_match(c));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005400 /* may undisplay the popup menu */
5401 ins_compl_upd_pum();
5402
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005403 if (n > 1) /* all matches have been found */
5404 compl_matches = n;
5405 compl_curr_match = compl_shown_match;
5406 compl_direction = compl_shows_dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407
Bram Moolenaard68071d2006-05-02 22:08:30 +00005408 /* Eat the ESC that vgetc() returns after a CTRL-C to avoid leaving Insert
5409 * mode. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 if (got_int && !global_busy)
5411 {
5412 (void)vgetc();
5413 got_int = FALSE;
5414 }
5415
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005416 /* we found no match if the list has only the "compl_orig_text"-entry */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005417 if (compl_first_match == compl_first_match->cp_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005419 edit_submode_extra = (compl_cont_status & CONT_ADDING)
5420 && compl_length > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 ? (char_u *)_(e_hitend) : (char_u *)_(e_patnotf);
5422 edit_submode_highl = HLF_E;
5423 /* remove N_ADDS flag, so next ^X<> won't try to go to ADDING mode,
5424 * because we couldn't expand anything at first place, but if we used
5425 * ^P, ^N, ^X^I or ^X^D we might want to add-expand a single-char-word
5426 * (such as M in M'exico) if not tried already. -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005427 if ( compl_length > 1
5428 || (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 || (ctrl_x_mode != 0
5430 && ctrl_x_mode != CTRL_X_PATH_PATTERNS
5431 && ctrl_x_mode != CTRL_X_PATH_DEFINES))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005432 compl_cont_status &= ~CONT_N_ADDS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 }
5434
Bram Moolenaar572cb562005-08-05 21:35:02 +00005435 if (compl_curr_match->cp_flags & CONT_S_IPOS)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005436 compl_cont_status |= CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005438 compl_cont_status &= ~CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439
5440 if (edit_submode_extra == NULL)
5441 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005442 if (compl_curr_match->cp_flags & ORIGINAL_TEXT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 {
5444 edit_submode_extra = (char_u *)_("Back at original");
5445 edit_submode_highl = HLF_W;
5446 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005447 else if (compl_cont_status & CONT_S_IPOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 {
5449 edit_submode_extra = (char_u *)_("Word from other line");
5450 edit_submode_highl = HLF_COUNT;
5451 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00005452 else if (compl_curr_match->cp_next == compl_curr_match->cp_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 {
5454 edit_submode_extra = (char_u *)_("The only match");
5455 edit_submode_highl = HLF_COUNT;
5456 }
5457 else
5458 {
5459 /* Update completion sequence number when needed. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005460 if (compl_curr_match->cp_number == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005462 int number = 0;
5463 compl_T *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005465 if (compl_direction == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 {
5467 /* search backwards for the first valid (!= -1) number.
5468 * This should normally succeed already at the first loop
5469 * cycle, so it's fast! */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005470 for (match = compl_curr_match->cp_prev; match != NULL
5471 && match != compl_first_match;
5472 match = match->cp_prev)
5473 if (match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005475 number = match->cp_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 break;
5477 }
5478 if (match != NULL)
5479 /* go up and assign all numbers which are not assigned
5480 * yet */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005481 for (match = match->cp_next;
5482 match != NULL && match->cp_number == -1;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005483 match = match->cp_next)
5484 match->cp_number = ++number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 }
5486 else /* BACKWARD */
5487 {
5488 /* search forwards (upwards) for the first valid (!= -1)
5489 * number. This should normally succeed already at the
5490 * first loop cycle, so it's fast! */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005491 for (match = compl_curr_match->cp_next; match != NULL
5492 && match != compl_first_match;
5493 match = match->cp_next)
5494 if (match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005496 number = match->cp_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 break;
5498 }
5499 if (match != NULL)
5500 /* go down and assign all numbers which are not
5501 * assigned yet */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005502 for (match = match->cp_prev; match
5503 && match->cp_number == -1;
5504 match = match->cp_prev)
5505 match->cp_number = ++number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 }
5507 }
5508
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005509 /* The match should always have a sequence number now, this is
5510 * just a safety check. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005511 if (compl_curr_match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 {
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005513 /* Space for 10 text chars. + 2x10-digit no.s = 31.
5514 * Translations may need more than twice that. */
5515 static char_u match_ref[81];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005517 if (compl_matches > 0)
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005518 vim_snprintf((char *)match_ref, sizeof(match_ref),
5519 _("match %d of %d"),
Bram Moolenaar572cb562005-08-05 21:35:02 +00005520 compl_curr_match->cp_number, compl_matches);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 else
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005522 vim_snprintf((char *)match_ref, sizeof(match_ref),
5523 _("match %d"),
5524 compl_curr_match->cp_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 edit_submode_extra = match_ref;
5526 edit_submode_highl = HLF_R;
Bram Moolenaar76b9b362012-02-04 23:35:00 +01005527 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 curs_columns(FALSE);
5529 }
5530 }
5531 }
5532
5533 /* Show a message about what (completion) mode we're in. */
5534 showmode();
5535 if (edit_submode_extra != NULL)
5536 {
5537 if (!p_smd)
5538 msg_attr(edit_submode_extra,
5539 edit_submode_highl < HLF_COUNT
5540 ? hl_attr(edit_submode_highl) : 0);
5541 }
5542 else
5543 msg_clr_cmdline(); /* necessary for "noshowmode" */
5544
Bram Moolenaard68071d2006-05-02 22:08:30 +00005545 /* Show the popup menu, unless we got interrupted. */
5546 if (!compl_interrupted)
5547 {
5548 /* RedrawingDisabled may be set when invoked through complete(). */
5549 n = RedrawingDisabled;
5550 RedrawingDisabled = 0;
Bram Moolenaarbe678f82010-03-10 14:15:54 +01005551
5552 /* If the cursor moved we need to remove the pum first. */
5553 setcursor();
5554 if (save_w_wrow != curwin->w_wrow)
5555 ins_compl_del_pum();
5556
Bram Moolenaard68071d2006-05-02 22:08:30 +00005557 ins_compl_show_pum();
5558 setcursor();
5559 RedrawingDisabled = n;
5560 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00005561 compl_was_interrupted = compl_interrupted;
Bram Moolenaard68071d2006-05-02 22:08:30 +00005562 compl_interrupted = FALSE;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005563
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 return OK;
5565}
5566
5567/*
5568 * Looks in the first "len" chars. of "src" for search-metachars.
5569 * If dest is not NULL the chars. are copied there quoting (with
5570 * a backslash) the metachars, and dest would be NUL terminated.
5571 * Returns the length (needed) of dest
5572 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005573 static unsigned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574quote_meta(dest, src, len)
5575 char_u *dest;
5576 char_u *src;
5577 int len;
5578{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005579 unsigned m = (unsigned)len + 1; /* one extra for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005581 for ( ; --len >= 0; src++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 {
5583 switch (*src)
5584 {
5585 case '.':
5586 case '*':
5587 case '[':
5588 if (ctrl_x_mode == CTRL_X_DICTIONARY
5589 || ctrl_x_mode == CTRL_X_THESAURUS)
5590 break;
5591 case '~':
5592 if (!p_magic) /* quote these only if magic is set */
5593 break;
5594 case '\\':
5595 if (ctrl_x_mode == CTRL_X_DICTIONARY
5596 || ctrl_x_mode == CTRL_X_THESAURUS)
5597 break;
5598 case '^': /* currently it's not needed. */
5599 case '$':
5600 m++;
5601 if (dest != NULL)
5602 *dest++ = '\\';
5603 break;
5604 }
5605 if (dest != NULL)
5606 *dest++ = *src;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005607# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 /* Copy remaining bytes of a multibyte character. */
5609 if (has_mbyte)
5610 {
5611 int i, mb_len;
5612
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005613 mb_len = (*mb_ptr2len)(src) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 if (mb_len > 0 && len >= mb_len)
5615 for (i = 0; i < mb_len; ++i)
5616 {
5617 --len;
5618 ++src;
5619 if (dest != NULL)
5620 *dest++ = *src;
5621 }
5622 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00005623# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 }
5625 if (dest != NULL)
5626 *dest = NUL;
5627
5628 return m;
5629}
5630#endif /* FEAT_INS_EXPAND */
5631
5632/*
5633 * Next character is interpreted literally.
5634 * A one, two or three digit decimal number is interpreted as its byte value.
5635 * If one or two digits are entered, the next character is given to vungetc().
5636 * For Unicode a character > 255 may be returned.
5637 */
5638 int
5639get_literal()
5640{
5641 int cc;
5642 int nc;
5643 int i;
5644 int hex = FALSE;
5645 int octal = FALSE;
5646#ifdef FEAT_MBYTE
5647 int unicode = 0;
5648#endif
5649
5650 if (got_int)
5651 return Ctrl_C;
5652
5653#ifdef FEAT_GUI
5654 /*
5655 * In GUI there is no point inserting the internal code for a special key.
5656 * It is more useful to insert the string "<KEY>" instead. This would
5657 * probably be useful in a text window too, but it would not be
5658 * vi-compatible (maybe there should be an option for it?) -- webb
5659 */
5660 if (gui.in_use)
5661 ++allow_keys;
5662#endif
5663#ifdef USE_ON_FLY_SCROLL
5664 dont_scroll = TRUE; /* disallow scrolling here */
5665#endif
5666 ++no_mapping; /* don't map the next key hits */
5667 cc = 0;
5668 i = 0;
5669 for (;;)
5670 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005671 nc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672#ifdef FEAT_CMDL_INFO
5673 if (!(State & CMDLINE)
5674# ifdef FEAT_MBYTE
5675 && MB_BYTE2LEN_CHECK(nc) == 1
5676# endif
5677 )
5678 add_to_showcmd(nc);
5679#endif
5680 if (nc == 'x' || nc == 'X')
5681 hex = TRUE;
5682 else if (nc == 'o' || nc == 'O')
5683 octal = TRUE;
5684#ifdef FEAT_MBYTE
5685 else if (nc == 'u' || nc == 'U')
5686 unicode = nc;
5687#endif
5688 else
5689 {
5690 if (hex
5691#ifdef FEAT_MBYTE
5692 || unicode != 0
5693#endif
5694 )
5695 {
5696 if (!vim_isxdigit(nc))
5697 break;
5698 cc = cc * 16 + hex2nr(nc);
5699 }
5700 else if (octal)
5701 {
5702 if (nc < '0' || nc > '7')
5703 break;
5704 cc = cc * 8 + nc - '0';
5705 }
5706 else
5707 {
5708 if (!VIM_ISDIGIT(nc))
5709 break;
5710 cc = cc * 10 + nc - '0';
5711 }
5712
5713 ++i;
5714 }
5715
5716 if (cc > 255
5717#ifdef FEAT_MBYTE
5718 && unicode == 0
5719#endif
5720 )
5721 cc = 255; /* limit range to 0-255 */
5722 nc = 0;
5723
5724 if (hex) /* hex: up to two chars */
5725 {
5726 if (i >= 2)
5727 break;
5728 }
5729#ifdef FEAT_MBYTE
5730 else if (unicode) /* Unicode: up to four or eight chars */
5731 {
5732 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
5733 break;
5734 }
5735#endif
5736 else if (i >= 3) /* decimal or octal: up to three chars */
5737 break;
5738 }
5739 if (i == 0) /* no number entered */
5740 {
5741 if (nc == K_ZERO) /* NUL is stored as NL */
5742 {
5743 cc = '\n';
5744 nc = 0;
5745 }
5746 else
5747 {
5748 cc = nc;
5749 nc = 0;
5750 }
5751 }
5752
5753 if (cc == 0) /* NUL is stored as NL */
5754 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00005755#ifdef FEAT_MBYTE
5756 if (enc_dbcs && (cc & 0xff) == 0)
5757 cc = '?'; /* don't accept an illegal DBCS char, the NUL in the
5758 second byte will cause trouble! */
5759#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760
5761 --no_mapping;
5762#ifdef FEAT_GUI
5763 if (gui.in_use)
5764 --allow_keys;
5765#endif
5766 if (nc)
5767 vungetc(nc);
5768 got_int = FALSE; /* CTRL-C typed after CTRL-V is not an interrupt */
5769 return cc;
5770}
5771
5772/*
5773 * Insert character, taking care of special keys and mod_mask
5774 */
5775 static void
5776insert_special(c, allow_modmask, ctrlv)
5777 int c;
5778 int allow_modmask;
5779 int ctrlv; /* c was typed after CTRL-V */
5780{
5781 char_u *p;
5782 int len;
5783
5784 /*
5785 * Special function key, translate into "<Key>". Up to the last '>' is
5786 * inserted with ins_str(), so as not to replace characters in replace
5787 * mode.
5788 * Only use mod_mask for special keys, to avoid things like <S-Space>,
5789 * unless 'allow_modmask' is TRUE.
5790 */
5791#ifdef MACOS
5792 /* Command-key never produces a normal key */
5793 if (mod_mask & MOD_MASK_CMD)
5794 allow_modmask = TRUE;
5795#endif
5796 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
5797 {
5798 p = get_special_key_name(c, mod_mask);
5799 len = (int)STRLEN(p);
5800 c = p[len - 1];
5801 if (len > 2)
5802 {
5803 if (stop_arrow() == FAIL)
5804 return;
5805 p[len - 1] = NUL;
5806 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00005807 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 ctrlv = FALSE;
5809 }
5810 }
5811 if (stop_arrow() == OK)
5812 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
5813}
5814
5815/*
5816 * Special characters in this context are those that need processing other
5817 * than the simple insertion that can be performed here. This includes ESC
5818 * which terminates the insert, and CR/NL which need special processing to
5819 * open up a new line. This routine tries to optimize insertions performed by
5820 * the "redo", "undo" or "put" commands, so it needs to know when it should
5821 * stop and defer processing to the "normal" mechanism.
5822 * '0' and '^' are special, because they can be followed by CTRL-D.
5823 */
5824#ifdef EBCDIC
5825# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
5826#else
5827# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
5828#endif
5829
5830#ifdef FEAT_MBYTE
5831# define WHITECHAR(cc) (vim_iswhite(cc) && (!enc_utf8 || !utf_iscomposing(utf_ptr2char(ml_get_cursor() + 1))))
5832#else
5833# define WHITECHAR(cc) vim_iswhite(cc)
5834#endif
5835
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005836/*
5837 * "flags": INSCHAR_FORMAT - force formatting
5838 * INSCHAR_CTRLV - char typed just after CTRL-V
5839 * INSCHAR_NO_FEX - don't use 'formatexpr'
5840 *
5841 * NOTE: passes the flags value straight through to internal_format() which,
5842 * beside INSCHAR_FORMAT (above), is also looking for these:
5843 * INSCHAR_DO_COM - format comments
5844 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
5845 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 void
5847insertchar(c, flags, second_indent)
5848 int c; /* character to insert or NUL */
5849 int flags; /* INSCHAR_FORMAT, etc. */
5850 int second_indent; /* indent for second line if >= 0 */
5851{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852 int textwidth;
5853#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 int fo_ins_blank;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857
5858 textwidth = comp_textwidth(flags & INSCHAR_FORMAT);
5859 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860
5861 /*
5862 * Try to break the line in two or more pieces when:
5863 * - Always do this if we have been called to do formatting only.
5864 * - Always do this when 'formatoptions' has the 'a' flag and the line
5865 * ends in white space.
5866 * - Otherwise:
5867 * - Don't do this if inserting a blank
5868 * - Don't do this if an existing character is being replaced, unless
5869 * we're in VREPLACE mode.
5870 * - Do this if the cursor is not on the line where insert started
5871 * or - 'formatoptions' doesn't have 'l' or the line was not too long
5872 * before the insert.
5873 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
5874 * before 'textwidth'
5875 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005876 if (textwidth > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 && ((flags & INSCHAR_FORMAT)
5878 || (!vim_iswhite(c)
5879 && !((State & REPLACE_FLAG)
5880#ifdef FEAT_VREPLACE
5881 && !(State & VREPLACE_FLAG)
5882#endif
5883 && *ml_get_cursor() != NUL)
5884 && (curwin->w_cursor.lnum != Insstart.lnum
5885 || ((!has_format_option(FO_INS_LONG)
5886 || Insstart_textlen <= (colnr_T)textwidth)
5887 && (!fo_ins_blank
5888 || Insstart_blank_vcol <= (colnr_T)textwidth
5889 ))))))
5890 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005891 /* Format with 'formatexpr' when it's set. Use internal formatting
5892 * when 'formatexpr' isn't set or it returns non-zero. */
5893#if defined(FEAT_EVAL)
Bram Moolenaarf3442e72006-10-10 13:49:10 +00005894 int do_internal = TRUE;
5895
Bram Moolenaar81a82092008-03-12 16:27:00 +00005896 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0)
Bram Moolenaarf3442e72006-10-10 13:49:10 +00005897 {
5898 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
5899 /* It may be required to save for undo again, e.g. when setline()
5900 * was called. */
5901 ins_need_undo = TRUE;
5902 }
5903 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00005905 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005907
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 if (c == NUL) /* only formatting was wanted */
5909 return;
5910
5911#ifdef FEAT_COMMENTS
5912 /* Check whether this character should end a comment. */
5913 if (did_ai && (int)c == end_comment_pending)
5914 {
5915 char_u *line;
5916 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
5917 int middle_len, end_len;
5918 int i;
5919
5920 /*
5921 * Need to remove existing (middle) comment leader and insert end
5922 * comment leader. First, check what comment leader we can find.
5923 */
Bram Moolenaar81340392012-06-06 16:12:59 +02005924 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) /* Just checking */
5926 {
5927 /* Skip middle-comment string */
5928 while (*p && p[-1] != ':') /* find end of middle flags */
5929 ++p;
5930 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
5931 /* Don't count trailing white space for middle_len */
5932 while (middle_len > 0 && vim_iswhite(lead_end[middle_len - 1]))
5933 --middle_len;
5934
5935 /* Find the end-comment string */
5936 while (*p && p[-1] != ':') /* find end of end flags */
5937 ++p;
5938 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
5939
5940 /* Skip white space before the cursor */
5941 i = curwin->w_cursor.col;
5942 while (--i >= 0 && vim_iswhite(line[i]))
5943 ;
5944 i++;
5945
5946 /* Skip to before the middle leader */
5947 i -= middle_len;
5948
5949 /* Check some expected things before we go on */
5950 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
5951 {
5952 /* Backspace over all the stuff we want to replace */
5953 backspace_until_column(i);
5954
5955 /*
5956 * Insert the end-comment string, except for the last
5957 * character, which will get inserted as normal later.
5958 */
5959 ins_bytes_len(lead_end, end_len - 1);
5960 }
5961 }
5962 }
5963 end_comment_pending = NUL;
5964#endif
5965
5966 did_ai = FALSE;
5967#ifdef FEAT_SMARTINDENT
5968 did_si = FALSE;
5969 can_si = FALSE;
5970 can_si_back = FALSE;
5971#endif
5972
5973 /*
5974 * If there's any pending input, grab up to INPUT_BUFLEN at once.
5975 * This speeds up normal text input considerably.
5976 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
5977 * need to re-indent at a ':', or any other character (but not what
5978 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005979 * Don't do this when there an InsertCharPre autocommand is defined,
5980 * because we need to fire the event for every character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981 */
5982#ifdef USE_ON_FLY_SCROLL
5983 dont_scroll = FALSE; /* allow scrolling here */
5984#endif
5985
5986 if ( !ISSPECIAL(c)
5987#ifdef FEAT_MBYTE
5988 && (!has_mbyte || (*mb_char2len)(c) == 1)
5989#endif
5990 && vpeekc() != NUL
5991 && !(State & REPLACE_FLAG)
5992#ifdef FEAT_CINDENT
5993 && !cindent_on()
5994#endif
5995#ifdef FEAT_RIGHTLEFT
5996 && !p_ri
5997#endif
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005998#ifdef FEAT_AUTOCMD
5999 && !has_insertcharpre()
6000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 )
6002 {
6003#define INPUT_BUFLEN 100
6004 char_u buf[INPUT_BUFLEN + 1];
6005 int i;
6006 colnr_T virtcol = 0;
6007
6008 buf[0] = c;
6009 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006010 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 virtcol = get_nolist_virtcol();
6012 /*
6013 * Stop the string when:
6014 * - no more chars available
6015 * - finding a special character (command key)
6016 * - buffer is full
6017 * - running into the 'textwidth' boundary
6018 * - need to check for abbreviation: A non-word char after a word-char
6019 */
6020 while ( (c = vpeekc()) != NUL
6021 && !ISSPECIAL(c)
6022#ifdef FEAT_MBYTE
6023 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
6024#endif
6025 && i < INPUT_BUFLEN
6026 && (textwidth == 0
6027 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
6028 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
6029 {
6030#ifdef FEAT_RIGHTLEFT
6031 c = vgetc();
6032 if (p_hkmap && KeyTyped)
6033 c = hkmap(c); /* Hebrew mode mapping */
6034# ifdef FEAT_FKMAP
6035 if (p_fkmap && KeyTyped)
6036 c = fkmap(c); /* Farsi mode mapping */
6037# endif
6038 buf[i++] = c;
6039#else
6040 buf[i++] = vgetc();
6041#endif
6042 }
6043
6044#ifdef FEAT_DIGRAPHS
6045 do_digraph(-1); /* clear digraphs */
6046 do_digraph(buf[i-1]); /* may be the start of a digraph */
6047#endif
6048 buf[i] = NUL;
6049 ins_str(buf);
6050 if (flags & INSCHAR_CTRLV)
6051 {
6052 redo_literal(*buf);
6053 i = 1;
6054 }
6055 else
6056 i = 0;
6057 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00006058 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 }
6060 else
6061 {
6062#ifdef FEAT_MBYTE
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006063 int cc;
6064
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
6066 {
6067 char_u buf[MB_MAXBYTES + 1];
6068
6069 (*mb_char2bytes)(c, buf);
6070 buf[cc] = NUL;
6071 ins_char_bytes(buf, cc);
6072 AppendCharToRedobuff(c);
6073 }
6074 else
6075#endif
6076 {
6077 ins_char(c);
6078 if (flags & INSCHAR_CTRLV)
6079 redo_literal(c);
6080 else
6081 AppendCharToRedobuff(c);
6082 }
6083 }
6084}
6085
6086/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006087 * Format text at the current insert position.
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006088 *
6089 * If the INSCHAR_COM_LIST flag is present, then the value of second_indent
6090 * will be the comment leader length sent to open_line().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006091 */
6092 static void
Bram Moolenaar97b98102009-11-17 16:41:01 +00006093internal_format(textwidth, second_indent, flags, format_only, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006094 int textwidth;
6095 int second_indent;
6096 int flags;
6097 int format_only;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006098 int c; /* character to be inserted (can be NUL) */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006099{
6100 int cc;
6101 int save_char = NUL;
6102 int haveto_redraw = FALSE;
6103 int fo_ins_blank = has_format_option(FO_INS_BLANK);
6104#ifdef FEAT_MBYTE
6105 int fo_multibyte = has_format_option(FO_MBYTE_BREAK);
6106#endif
6107 int fo_white_par = has_format_option(FO_WHITE_PAR);
6108 int first_line = TRUE;
6109#ifdef FEAT_COMMENTS
6110 colnr_T leader_len;
6111 int no_leader = FALSE;
6112 int do_comments = (flags & INSCHAR_DO_COM);
6113#endif
6114
6115 /*
6116 * When 'ai' is off we don't want a space under the cursor to be
6117 * deleted. Replace it with an 'x' temporarily.
6118 */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006119 if (!curbuf->b_p_ai
6120#ifdef FEAT_VREPLACE
6121 && !(State & VREPLACE_FLAG)
6122#endif
6123 )
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006124 {
6125 cc = gchar_cursor();
6126 if (vim_iswhite(cc))
6127 {
6128 save_char = cc;
6129 pchar_cursor('x');
6130 }
6131 }
6132
6133 /*
6134 * Repeat breaking lines, until the current line is not too long.
6135 */
6136 while (!got_int)
6137 {
6138 int startcol; /* Cursor column at entry */
6139 int wantcol; /* column at textwidth border */
6140 int foundcol; /* column for start of spaces */
6141 int end_foundcol = 0; /* column for start of word */
6142 colnr_T len;
6143 colnr_T virtcol;
6144#ifdef FEAT_VREPLACE
6145 int orig_col = 0;
6146 char_u *saved_text = NULL;
6147#endif
6148 colnr_T col;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006149 colnr_T end_col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006150
Bram Moolenaar97b98102009-11-17 16:41:01 +00006151 virtcol = get_nolist_virtcol()
6152 + char2cells(c != NUL ? c : gchar_cursor());
6153 if (virtcol <= (colnr_T)textwidth)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006154 break;
6155
6156#ifdef FEAT_COMMENTS
6157 if (no_leader)
6158 do_comments = FALSE;
6159 else if (!(flags & INSCHAR_FORMAT)
6160 && has_format_option(FO_WRAP_COMS))
6161 do_comments = TRUE;
6162
6163 /* Don't break until after the comment leader */
6164 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02006165 leader_len = get_leader_len(ml_get_curline(), NULL, FALSE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006166 else
6167 leader_len = 0;
6168
6169 /* If the line doesn't start with a comment leader, then don't
6170 * start one in a following broken line. Avoids that a %word
6171 * moved to the start of the next line causes all following lines
6172 * to start with %. */
6173 if (leader_len == 0)
6174 no_leader = TRUE;
6175#endif
6176 if (!(flags & INSCHAR_FORMAT)
6177#ifdef FEAT_COMMENTS
6178 && leader_len == 0
6179#endif
6180 && !has_format_option(FO_WRAP))
6181
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006182 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006183 if ((startcol = curwin->w_cursor.col) == 0)
6184 break;
6185
6186 /* find column of textwidth border */
6187 coladvance((colnr_T)textwidth);
6188 wantcol = curwin->w_cursor.col;
6189
Bram Moolenaar97b98102009-11-17 16:41:01 +00006190 curwin->w_cursor.col = startcol;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006191 foundcol = 0;
6192
6193 /*
6194 * Find position to break at.
6195 * Stop at first entered white when 'formatoptions' has 'v'
6196 */
6197 while ((!fo_ins_blank && !has_format_option(FO_INS_VI))
Bram Moolenaara27ad5a2011-10-26 17:04:29 +02006198 || (flags & INSCHAR_FORMAT)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006199 || curwin->w_cursor.lnum != Insstart.lnum
6200 || curwin->w_cursor.col >= Insstart.col)
6201 {
Bram Moolenaar97b98102009-11-17 16:41:01 +00006202 if (curwin->w_cursor.col == startcol && c != NUL)
6203 cc = c;
6204 else
6205 cc = gchar_cursor();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006206 if (WHITECHAR(cc))
6207 {
6208 /* remember position of blank just before text */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006209 end_col = curwin->w_cursor.col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006210
6211 /* find start of sequence of blanks */
6212 while (curwin->w_cursor.col > 0 && WHITECHAR(cc))
6213 {
6214 dec_cursor();
6215 cc = gchar_cursor();
6216 }
6217 if (curwin->w_cursor.col == 0 && WHITECHAR(cc))
6218 break; /* only spaces in front of text */
6219#ifdef FEAT_COMMENTS
6220 /* Don't break until after the comment leader */
6221 if (curwin->w_cursor.col < leader_len)
6222 break;
6223#endif
6224 if (has_format_option(FO_ONE_LETTER))
6225 {
6226 /* do not break after one-letter words */
6227 if (curwin->w_cursor.col == 0)
6228 break; /* one-letter word at begin */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006229#ifdef FEAT_COMMENTS
6230 /* do not break "#a b" when 'tw' is 2 */
6231 if (curwin->w_cursor.col <= leader_len)
6232 break;
6233#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006234 col = curwin->w_cursor.col;
6235 dec_cursor();
6236 cc = gchar_cursor();
6237
6238 if (WHITECHAR(cc))
6239 continue; /* one-letter, continue */
6240 curwin->w_cursor.col = col;
6241 }
Bram Moolenaar97b98102009-11-17 16:41:01 +00006242
6243 inc_cursor();
6244
6245 end_foundcol = end_col + 1;
6246 foundcol = curwin->w_cursor.col;
6247 if (curwin->w_cursor.col <= (colnr_T)wantcol)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006248 break;
6249 }
6250#ifdef FEAT_MBYTE
Bram Moolenaar97b98102009-11-17 16:41:01 +00006251 else if (cc >= 0x100 && fo_multibyte)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006252 {
6253 /* Break after or before a multi-byte character. */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006254 if (curwin->w_cursor.col != startcol)
6255 {
6256#ifdef FEAT_COMMENTS
6257 /* Don't break until after the comment leader */
6258 if (curwin->w_cursor.col < leader_len)
6259 break;
6260#endif
6261 col = curwin->w_cursor.col;
6262 inc_cursor();
6263 /* Don't change end_foundcol if already set. */
6264 if (foundcol != curwin->w_cursor.col)
6265 {
6266 foundcol = curwin->w_cursor.col;
6267 end_foundcol = foundcol;
6268 if (curwin->w_cursor.col <= (colnr_T)wantcol)
6269 break;
6270 }
6271 curwin->w_cursor.col = col;
6272 }
6273
6274 if (curwin->w_cursor.col == 0)
6275 break;
6276
6277 col = curwin->w_cursor.col;
6278
6279 dec_cursor();
6280 cc = gchar_cursor();
6281
6282 if (WHITECHAR(cc))
6283 continue; /* break with space */
6284#ifdef FEAT_COMMENTS
6285 /* Don't break until after the comment leader */
6286 if (curwin->w_cursor.col < leader_len)
6287 break;
6288#endif
6289
6290 curwin->w_cursor.col = col;
6291
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006292 foundcol = curwin->w_cursor.col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006293 end_foundcol = foundcol;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006294 if (curwin->w_cursor.col <= (colnr_T)wantcol)
6295 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006296 }
6297#endif
6298 if (curwin->w_cursor.col == 0)
6299 break;
6300 dec_cursor();
6301 }
6302
6303 if (foundcol == 0) /* no spaces, cannot break line */
6304 {
6305 curwin->w_cursor.col = startcol;
6306 break;
6307 }
6308
6309 /* Going to break the line, remove any "$" now. */
6310 undisplay_dollar();
6311
6312 /*
6313 * Offset between cursor position and line break is used by replace
6314 * stack functions. VREPLACE does not use this, and backspaces
6315 * over the text instead.
6316 */
6317#ifdef FEAT_VREPLACE
6318 if (State & VREPLACE_FLAG)
6319 orig_col = startcol; /* Will start backspacing from here */
6320 else
6321#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00006322 replace_offset = startcol - end_foundcol;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006323
6324 /*
6325 * adjust startcol for spaces that will be deleted and
6326 * characters that will remain on top line
6327 */
6328 curwin->w_cursor.col = foundcol;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006329 while ((cc = gchar_cursor(), WHITECHAR(cc))
6330 && (!fo_white_par || curwin->w_cursor.col < startcol))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006331 inc_cursor();
6332 startcol -= curwin->w_cursor.col;
6333 if (startcol < 0)
6334 startcol = 0;
6335
6336#ifdef FEAT_VREPLACE
6337 if (State & VREPLACE_FLAG)
6338 {
6339 /*
6340 * In VREPLACE mode, we will backspace over the text to be
6341 * wrapped, so save a copy now to put on the next line.
6342 */
6343 saved_text = vim_strsave(ml_get_cursor());
6344 curwin->w_cursor.col = orig_col;
6345 if (saved_text == NULL)
6346 break; /* Can't do it, out of memory */
6347 saved_text[startcol] = NUL;
6348
6349 /* Backspace over characters that will move to the next line */
6350 if (!fo_white_par)
6351 backspace_until_column(foundcol);
6352 }
6353 else
6354#endif
6355 {
6356 /* put cursor after pos. to break line */
6357 if (!fo_white_par)
6358 curwin->w_cursor.col = foundcol;
6359 }
6360
6361 /*
6362 * Split the line just before the margin.
6363 * Only insert/delete lines, but don't really redraw the window.
6364 */
6365 open_line(FORWARD, OPENLINE_DELSPACES + OPENLINE_MARKFIX
6366 + (fo_white_par ? OPENLINE_KEEPTRAIL : 0)
6367#ifdef FEAT_COMMENTS
6368 + (do_comments ? OPENLINE_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006369 + ((flags & INSCHAR_COM_LIST) ? OPENLINE_COM_LIST : 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006370#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006371 , ((flags & INSCHAR_COM_LIST) ? second_indent : old_indent));
6372 if (!(flags & INSCHAR_COM_LIST))
6373 old_indent = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006374
6375 replace_offset = 0;
6376 if (first_line)
6377 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006378 if (!(flags & INSCHAR_COM_LIST))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006379 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006380 /*
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006381 * This section is for auto-wrap of numeric lists. When not
6382 * in insert mode (i.e. format_lines()), the INSCHAR_COM_LIST
6383 * flag will be set and open_line() will handle it (as seen
6384 * above). The code here (and in get_number_indent()) will
6385 * recognize comments if needed...
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006386 */
6387 if (second_indent < 0 && has_format_option(FO_Q_NUMBER))
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006388 second_indent =
6389 get_number_indent(curwin->w_cursor.lnum - 1);
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006390 if (second_indent >= 0)
6391 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006392#ifdef FEAT_VREPLACE
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006393 if (State & VREPLACE_FLAG)
6394 change_indent(INDENT_SET, second_indent,
6395 FALSE, NUL, TRUE);
6396 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006397#endif
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006398#ifdef FEAT_COMMENTS
6399 if (leader_len > 0 && second_indent - leader_len > 0)
6400 {
6401 int i;
6402 int padding = second_indent - leader_len;
6403
6404 /* We started at the first_line of a numbered list
6405 * that has a comment. the open_line() function has
6406 * inserted the proper comment leader and positioned
6407 * the cursor at the end of the split line. Now we
6408 * add the additional whitespace needed after the
6409 * comment leader for the numbered list. */
6410 for (i = 0; i < padding; i++)
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006411 ins_str((char_u *)" ");
Bram Moolenaar5967abb2012-07-06 13:36:48 +02006412 changed_bytes(curwin->w_cursor.lnum, leader_len);
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006413 }
6414 else
6415 {
6416#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006417 (void)set_indent(second_indent, SIN_CHANGED);
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006418#ifdef FEAT_COMMENTS
6419 }
6420#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006421 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006422 }
6423 first_line = FALSE;
6424 }
6425
6426#ifdef FEAT_VREPLACE
6427 if (State & VREPLACE_FLAG)
6428 {
6429 /*
6430 * In VREPLACE mode we have backspaced over the text to be
6431 * moved, now we re-insert it into the new line.
6432 */
6433 ins_bytes(saved_text);
6434 vim_free(saved_text);
6435 }
6436 else
6437#endif
6438 {
6439 /*
6440 * Check if cursor is not past the NUL off the line, cindent
6441 * may have added or removed indent.
6442 */
6443 curwin->w_cursor.col += startcol;
6444 len = (colnr_T)STRLEN(ml_get_curline());
6445 if (curwin->w_cursor.col > len)
6446 curwin->w_cursor.col = len;
6447 }
6448
6449 haveto_redraw = TRUE;
6450#ifdef FEAT_CINDENT
6451 can_cindent = TRUE;
6452#endif
6453 /* moved the cursor, don't autoindent or cindent now */
6454 did_ai = FALSE;
6455#ifdef FEAT_SMARTINDENT
6456 did_si = FALSE;
6457 can_si = FALSE;
6458 can_si_back = FALSE;
6459#endif
6460 line_breakcheck();
6461 }
6462
6463 if (save_char != NUL) /* put back space after cursor */
6464 pchar_cursor(save_char);
6465
6466 if (!format_only && haveto_redraw)
6467 {
6468 update_topline();
6469 redraw_curbuf_later(VALID);
6470 }
6471}
6472
6473/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474 * Called after inserting or deleting text: When 'formatoptions' includes the
6475 * 'a' flag format from the current line until the end of the paragraph.
6476 * Keep the cursor at the same position relative to the text.
6477 * The caller must have saved the cursor line for undo, following ones will be
6478 * saved here.
6479 */
6480 void
6481auto_format(trailblank, prev_line)
6482 int trailblank; /* when TRUE also format with trailing blank */
6483 int prev_line; /* may start in previous line */
6484{
6485 pos_T pos;
6486 colnr_T len;
6487 char_u *old;
6488 char_u *new, *pnew;
6489 int wasatend;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006490 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491
6492 if (!has_format_option(FO_AUTO))
6493 return;
6494
6495 pos = curwin->w_cursor;
6496 old = ml_get_curline();
6497
6498 /* may remove added space */
6499 check_auto_format(FALSE);
6500
6501 /* Don't format in Insert mode when the cursor is on a trailing blank, the
6502 * user might insert normal text next. Also skip formatting when "1" is
6503 * in 'formatoptions' and there is a single character before the cursor.
6504 * Otherwise the line would be broken and when typing another non-white
6505 * next they are not joined back together. */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006506 wasatend = (pos.col == (colnr_T)STRLEN(old));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 if (*old != NUL && !trailblank && wasatend)
6508 {
6509 dec_cursor();
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006510 cc = gchar_cursor();
6511 if (!WHITECHAR(cc) && curwin->w_cursor.col > 0
6512 && has_format_option(FO_ONE_LETTER))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 dec_cursor();
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006514 cc = gchar_cursor();
6515 if (WHITECHAR(cc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 {
6517 curwin->w_cursor = pos;
6518 return;
6519 }
6520 curwin->w_cursor = pos;
6521 }
6522
6523#ifdef FEAT_COMMENTS
6524 /* With the 'c' flag in 'formatoptions' and 't' missing: only format
6525 * comments. */
6526 if (has_format_option(FO_WRAP_COMS) && !has_format_option(FO_WRAP)
Bram Moolenaar81340392012-06-06 16:12:59 +02006527 && get_leader_len(old, NULL, FALSE, TRUE) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 return;
6529#endif
6530
6531 /*
6532 * May start formatting in a previous line, so that after "x" a word is
6533 * moved to the previous line if it fits there now. Only when this is not
6534 * the start of a paragraph.
6535 */
6536 if (prev_line && !paragraph_start(curwin->w_cursor.lnum))
6537 {
6538 --curwin->w_cursor.lnum;
6539 if (u_save_cursor() == FAIL)
6540 return;
6541 }
6542
6543 /*
6544 * Do the formatting and restore the cursor position. "saved_cursor" will
6545 * be adjusted for the text formatting.
6546 */
6547 saved_cursor = pos;
Bram Moolenaar81a82092008-03-12 16:27:00 +00006548 format_lines((linenr_T)-1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549 curwin->w_cursor = saved_cursor;
6550 saved_cursor.lnum = 0;
6551
6552 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6553 {
6554 /* "cannot happen" */
6555 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6556 coladvance((colnr_T)MAXCOL);
6557 }
6558 else
6559 check_cursor_col();
6560
6561 /* Insert mode: If the cursor is now after the end of the line while it
6562 * previously wasn't, the line was broken. Because of the rule above we
6563 * need to add a space when 'w' is in 'formatoptions' to keep a paragraph
6564 * formatted. */
6565 if (!wasatend && has_format_option(FO_WHITE_PAR))
6566 {
6567 new = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006568 len = (colnr_T)STRLEN(new);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569 if (curwin->w_cursor.col == len)
6570 {
6571 pnew = vim_strnsave(new, len + 2);
6572 pnew[len] = ' ';
6573 pnew[len + 1] = NUL;
6574 ml_replace(curwin->w_cursor.lnum, pnew, FALSE);
6575 /* remove the space later */
6576 did_add_space = TRUE;
6577 }
6578 else
6579 /* may remove added space */
6580 check_auto_format(FALSE);
6581 }
6582
6583 check_cursor();
6584}
6585
6586/*
6587 * When an extra space was added to continue a paragraph for auto-formatting,
6588 * delete it now. The space must be under the cursor, just after the insert
6589 * position.
6590 */
6591 static void
6592check_auto_format(end_insert)
6593 int end_insert; /* TRUE when ending Insert mode */
6594{
6595 int c = ' ';
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006596 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597
6598 if (did_add_space)
6599 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006600 cc = gchar_cursor();
6601 if (!WHITECHAR(cc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 /* Somehow the space was removed already. */
6603 did_add_space = FALSE;
6604 else
6605 {
6606 if (!end_insert)
6607 {
6608 inc_cursor();
6609 c = gchar_cursor();
6610 dec_cursor();
6611 }
6612 if (c != NUL)
6613 {
6614 /* The space is no longer at the end of the line, delete it. */
6615 del_char(FALSE);
6616 did_add_space = FALSE;
6617 }
6618 }
6619 }
6620}
6621
6622/*
6623 * Find out textwidth to be used for formatting:
6624 * if 'textwidth' option is set, use it
6625 * else if 'wrapmargin' option is set, use W_WIDTH(curwin) - 'wrapmargin'
6626 * if invalid value, use 0.
6627 * Set default to window width (maximum 79) for "gq" operator.
6628 */
6629 int
6630comp_textwidth(ff)
Bram Moolenaar91170f82006-05-05 21:15:17 +00006631 int ff; /* force formatting (for "gq" command) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632{
6633 int textwidth;
6634
6635 textwidth = curbuf->b_p_tw;
6636 if (textwidth == 0 && curbuf->b_p_wm)
6637 {
6638 /* The width is the window width minus 'wrapmargin' minus all the
6639 * things that add to the margin. */
6640 textwidth = W_WIDTH(curwin) - curbuf->b_p_wm;
6641#ifdef FEAT_CMDWIN
6642 if (cmdwin_type != 0)
6643 textwidth -= 1;
6644#endif
6645#ifdef FEAT_FOLDING
6646 textwidth -= curwin->w_p_fdc;
6647#endif
6648#ifdef FEAT_SIGNS
6649 if (curwin->w_buffer->b_signlist != NULL
6650# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02006651 || netbeans_active()
Bram Moolenaar071d4272004-06-13 20:20:40 +00006652# endif
6653 )
6654 textwidth -= 1;
6655#endif
Bram Moolenaar64486672010-05-16 15:46:46 +02006656 if (curwin->w_p_nu || curwin->w_p_rnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 textwidth -= 8;
6658 }
6659 if (textwidth < 0)
6660 textwidth = 0;
6661 if (ff && textwidth == 0)
6662 {
6663 textwidth = W_WIDTH(curwin) - 1;
6664 if (textwidth > 79)
6665 textwidth = 79;
6666 }
6667 return textwidth;
6668}
6669
6670/*
6671 * Put a character in the redo buffer, for when just after a CTRL-V.
6672 */
6673 static void
6674redo_literal(c)
6675 int c;
6676{
6677 char_u buf[10];
6678
6679 /* Only digits need special treatment. Translate them into a string of
6680 * three digits. */
6681 if (VIM_ISDIGIT(c))
6682 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006683 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684 AppendToRedobuff(buf);
6685 }
6686 else
6687 AppendCharToRedobuff(c);
6688}
6689
6690/*
6691 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006692 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006693 */
6694 static void
6695start_arrow(end_insert_pos)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006696 pos_T *end_insert_pos; /* can be NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697{
6698 if (!arrow_used) /* something has been inserted */
6699 {
6700 AppendToRedobuff(ESC_STR);
Bram Moolenaarf332a652013-11-04 04:20:33 +01006701 stop_insert(end_insert_pos, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702 arrow_used = TRUE; /* this means we stopped the current insert */
6703 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006704#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00006705 check_spell_redraw();
6706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006707}
6708
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006709#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00006710/*
6711 * If we skipped highlighting word at cursor, do it now.
6712 * It may be skipped again, thus reset spell_redraw_lnum first.
6713 */
6714 static void
6715check_spell_redraw()
6716{
6717 if (spell_redraw_lnum != 0)
6718 {
6719 linenr_T lnum = spell_redraw_lnum;
6720
6721 spell_redraw_lnum = 0;
6722 redrawWinline(lnum, FALSE);
6723 }
6724}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006725
6726/*
6727 * Called when starting CTRL_X_SPELL mode: Move backwards to a previous badly
6728 * spelled word, if there is one.
6729 */
6730 static void
6731spell_back_to_badword()
6732{
6733 pos_T tpos = curwin->w_cursor;
6734
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00006735 spell_bad_len = spell_move_to(curwin, BACKWARD, TRUE, TRUE, NULL);
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006736 if (curwin->w_cursor.col != tpos.col)
6737 start_arrow(&tpos);
6738}
Bram Moolenaar217ad922005-03-20 22:37:15 +00006739#endif
6740
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741/*
6742 * stop_arrow() is called before a change is made in insert mode.
6743 * If an arrow key has been used, start a new insertion.
6744 * Returns FAIL if undo is impossible, shouldn't insert then.
6745 */
6746 int
6747stop_arrow()
6748{
6749 if (arrow_used)
6750 {
6751 if (u_save_cursor() == OK)
6752 {
6753 arrow_used = FALSE;
6754 ins_need_undo = FALSE;
6755 }
6756 Insstart = curwin->w_cursor; /* new insertion starts here */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006757 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758 ai_col = 0;
6759#ifdef FEAT_VREPLACE
6760 if (State & VREPLACE_FLAG)
6761 {
6762 orig_line_count = curbuf->b_ml.ml_line_count;
6763 vr_lines_changed = 1;
6764 }
6765#endif
6766 ResetRedobuff();
6767 AppendToRedobuff((char_u *)"1i"); /* pretend we start an insertion */
Bram Moolenaara9b1e742005-12-19 22:14:58 +00006768 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 }
6770 else if (ins_need_undo)
6771 {
6772 if (u_save_cursor() == OK)
6773 ins_need_undo = FALSE;
6774 }
6775
6776#ifdef FEAT_FOLDING
6777 /* Always open fold at the cursor line when inserting something. */
6778 foldOpenCursor();
6779#endif
6780
6781 return (arrow_used || ins_need_undo ? FAIL : OK);
6782}
6783
6784/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006785 * Do a few things to stop inserting.
6786 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
6787 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788 */
6789 static void
Bram Moolenaarf332a652013-11-04 04:20:33 +01006790stop_insert(end_insert_pos, esc, nomove)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006791 pos_T *end_insert_pos;
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006792 int esc; /* called by ins_esc() */
Bram Moolenaarf332a652013-11-04 04:20:33 +01006793 int nomove; /* <c-\><c-o>, don't move cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006795 int cc;
6796 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006797
6798 stop_redo_ins();
6799 replace_flush(); /* abandon replace stack */
6800
6801 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006802 * Save the inserted text for later redo with ^@ and CTRL-A.
6803 * Don't do it when "restart_edit" was set and nothing was inserted,
6804 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006806 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00006807 if (did_restart_edit == 0 || (ptr != NULL
6808 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006809 {
6810 vim_free(last_insert);
6811 last_insert = ptr;
6812 last_insert_skip = new_insert_skip;
6813 }
6814 else
6815 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006817 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818 {
6819 /* Auto-format now. It may seem strange to do this when stopping an
6820 * insertion (or moving the cursor), but it's required when appending
6821 * a line and having it end in a space. But only do it when something
6822 * was actually inserted, otherwise undo won't work. */
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006823 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006825 pos_T tpos = curwin->w_cursor;
6826
Bram Moolenaar071d4272004-06-13 20:20:40 +00006827 /* When the cursor is at the end of the line after a space the
6828 * formatting will move it to the following word. Avoid that by
6829 * moving the cursor onto the space. */
6830 cc = 'x';
6831 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
6832 {
6833 dec_cursor();
6834 cc = gchar_cursor();
6835 if (!vim_iswhite(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006836 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006837 }
6838
6839 auto_format(TRUE, FALSE);
6840
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006841 if (vim_iswhite(cc))
6842 {
6843 if (gchar_cursor() != NUL)
6844 inc_cursor();
6845#ifdef FEAT_VIRTUALEDIT
6846 /* If the cursor is still at the same character, also keep
6847 * the "coladd". */
6848 if (gchar_cursor() == NUL
6849 && curwin->w_cursor.lnum == tpos.lnum
6850 && curwin->w_cursor.col == tpos.col)
6851 curwin->w_cursor.coladd = tpos.coladd;
6852#endif
6853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854 }
6855
6856 /* If a space was inserted for auto-formatting, remove it now. */
6857 check_auto_format(TRUE);
6858
6859 /* If we just did an auto-indent, remove the white space from the end
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006860 * of the line, and put the cursor back.
Bram Moolenaar4be50682009-05-26 09:02:10 +00006861 * Do this when ESC was used or moving the cursor up/down.
6862 * Check for the old position still being valid, just in case the text
6863 * got changed unexpectedly. */
Bram Moolenaarf332a652013-11-04 04:20:33 +01006864 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00006865 && curwin->w_cursor.lnum != end_insert_pos->lnum))
6866 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006868 pos_T tpos = curwin->w_cursor;
6869
6870 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar4be50682009-05-26 09:02:10 +00006871 check_cursor_col(); /* make sure it is not past the line */
Bram Moolenaar39f05632006-03-19 22:15:26 +00006872 for (;;)
6873 {
6874 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
6875 --curwin->w_cursor.col;
6876 cc = gchar_cursor();
6877 if (!vim_iswhite(cc))
6878 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00006879 if (del_char(TRUE) == FAIL)
6880 break; /* should not happen */
Bram Moolenaar39f05632006-03-19 22:15:26 +00006881 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006882 if (curwin->w_cursor.lnum != tpos.lnum)
6883 curwin->w_cursor = tpos;
6884 else if (cc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 ++curwin->w_cursor.col; /* put cursor back on the NUL */
6886
6887#ifdef FEAT_VISUAL
6888 /* <C-S-Right> may have started Visual mode, adjust the position for
6889 * deleted characters. */
6890 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
6891 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006892 int len = (int)STRLEN(ml_get_curline());
6893
6894 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006895 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006896 VIsual.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897# ifdef FEAT_VIRTUALEDIT
6898 VIsual.coladd = 0;
6899# endif
6900 }
6901 }
6902#endif
6903 }
6904 }
6905 did_ai = FALSE;
6906#ifdef FEAT_SMARTINDENT
6907 did_si = FALSE;
6908 can_si = FALSE;
6909 can_si_back = FALSE;
6910#endif
6911
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006912 /* Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
6913 * now in a different buffer. */
6914 if (end_insert_pos != NULL)
6915 {
6916 curbuf->b_op_start = Insstart;
6917 curbuf->b_op_end = *end_insert_pos;
6918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919}
6920
6921/*
6922 * Set the last inserted text to a single character.
6923 * Used for the replace command.
6924 */
6925 void
6926set_last_insert(c)
6927 int c;
6928{
6929 char_u *s;
6930
6931 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933 if (last_insert != NULL)
6934 {
6935 s = last_insert;
6936 /* Use the CTRL-V only when entering a special char */
6937 if (c < ' ' || c == DEL)
6938 *s++ = Ctrl_V;
6939 s = add_char2buf(c, s);
6940 *s++ = ESC;
6941 *s++ = NUL;
6942 last_insert_skip = 0;
6943 }
6944}
6945
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006946#if defined(EXITFREE) || defined(PROTO)
6947 void
6948free_last_insert()
6949{
6950 vim_free(last_insert);
6951 last_insert = NULL;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00006952# ifdef FEAT_INS_EXPAND
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00006953 vim_free(compl_orig_text);
6954 compl_orig_text = NULL;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00006955# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006956}
6957#endif
6958
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959/*
6960 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
6961 * and CSI. Handle multi-byte characters.
6962 * Returns a pointer to after the added bytes.
6963 */
6964 char_u *
6965add_char2buf(c, s)
6966 int c;
6967 char_u *s;
6968{
6969#ifdef FEAT_MBYTE
Bram Moolenaar9a920d82012-06-01 15:21:02 +02006970 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971 int i;
6972 int len;
6973
6974 len = (*mb_char2bytes)(c, temp);
6975 for (i = 0; i < len; ++i)
6976 {
6977 c = temp[i];
6978#endif
6979 /* Need to escape K_SPECIAL and CSI like in the typeahead buffer. */
6980 if (c == K_SPECIAL)
6981 {
6982 *s++ = K_SPECIAL;
6983 *s++ = KS_SPECIAL;
6984 *s++ = KE_FILLER;
6985 }
6986#ifdef FEAT_GUI
6987 else if (c == CSI)
6988 {
6989 *s++ = CSI;
6990 *s++ = KS_EXTRA;
6991 *s++ = (int)KE_CSI;
6992 }
6993#endif
6994 else
6995 *s++ = c;
6996#ifdef FEAT_MBYTE
6997 }
6998#endif
6999 return s;
7000}
7001
7002/*
7003 * move cursor to start of line
7004 * if flags & BL_WHITE move to first non-white
7005 * if flags & BL_SOL move to first non-white if startofline is set,
7006 * otherwise keep "curswant" column
7007 * if flags & BL_FIX don't leave the cursor on a NUL.
7008 */
7009 void
7010beginline(flags)
7011 int flags;
7012{
7013 if ((flags & BL_SOL) && !p_sol)
7014 coladvance(curwin->w_curswant);
7015 else
7016 {
7017 curwin->w_cursor.col = 0;
7018#ifdef FEAT_VIRTUALEDIT
7019 curwin->w_cursor.coladd = 0;
7020#endif
7021
7022 if (flags & (BL_WHITE | BL_SOL))
7023 {
7024 char_u *ptr;
7025
7026 for (ptr = ml_get_curline(); vim_iswhite(*ptr)
7027 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
7028 ++curwin->w_cursor.col;
7029 }
7030 curwin->w_set_curswant = TRUE;
7031 }
7032}
7033
7034/*
7035 * oneright oneleft cursor_down cursor_up
7036 *
7037 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007038 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 * Return OK when successful, FAIL when we hit a line of file boundary.
7040 */
7041
7042 int
7043oneright()
7044{
7045 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007046 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047
7048#ifdef FEAT_VIRTUALEDIT
7049 if (virtual_active())
7050 {
7051 pos_T prevpos = curwin->w_cursor;
7052
7053 /* Adjust for multi-wide char (excluding TAB) */
7054 ptr = ml_get_cursor();
7055 coladvance(getviscol() + ((*ptr != TAB && vim_isprintc(
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007056# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 (*mb_ptr2char)(ptr)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007058# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059 *ptr
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 ))
7062 ? ptr2cells(ptr) : 1));
7063 curwin->w_set_curswant = TRUE;
7064 /* Return OK if the cursor moved, FAIL otherwise (at window edge). */
7065 return (prevpos.col != curwin->w_cursor.col
7066 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
7067 }
7068#endif
7069
7070 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007071 if (*ptr == NUL)
7072 return FAIL; /* already at the very end */
7073
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074#ifdef FEAT_MBYTE
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007075 if (has_mbyte)
7076 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077 else
7078#endif
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007079 l = 1;
7080
7081 /* move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
7082 * contains "onemore". */
7083 if (ptr[l] == NUL
7084#ifdef FEAT_VIRTUALEDIT
7085 && (ve_flags & VE_ONEMORE) == 0
7086#endif
7087 )
7088 return FAIL;
7089 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090
7091 curwin->w_set_curswant = TRUE;
7092 return OK;
7093}
7094
7095 int
7096oneleft()
7097{
7098#ifdef FEAT_VIRTUALEDIT
7099 if (virtual_active())
7100 {
7101 int width;
7102 int v = getviscol();
7103
7104 if (v == 0)
7105 return FAIL;
7106
7107# ifdef FEAT_LINEBREAK
7108 /* We might get stuck on 'showbreak', skip over it. */
7109 width = 1;
7110 for (;;)
7111 {
7112 coladvance(v - width);
7113 /* getviscol() is slow, skip it when 'showbreak' is empty and
7114 * there are no multi-byte characters */
7115 if ((*p_sbr == NUL
7116# ifdef FEAT_MBYTE
7117 && !has_mbyte
7118# endif
7119 ) || getviscol() < v)
7120 break;
7121 ++width;
7122 }
7123# else
7124 coladvance(v - 1);
7125# endif
7126
7127 if (curwin->w_cursor.coladd == 1)
7128 {
7129 char_u *ptr;
7130
7131 /* Adjust for multi-wide char (not a TAB) */
7132 ptr = ml_get_cursor();
7133 if (*ptr != TAB && vim_isprintc(
7134# ifdef FEAT_MBYTE
7135 (*mb_ptr2char)(ptr)
7136# else
7137 *ptr
7138# endif
7139 ) && ptr2cells(ptr) > 1)
7140 curwin->w_cursor.coladd = 0;
7141 }
7142
7143 curwin->w_set_curswant = TRUE;
7144 return OK;
7145 }
7146#endif
7147
7148 if (curwin->w_cursor.col == 0)
7149 return FAIL;
7150
7151 curwin->w_set_curswant = TRUE;
7152 --curwin->w_cursor.col;
7153
7154#ifdef FEAT_MBYTE
7155 /* if the character on the left of the current cursor is a multi-byte
7156 * character, move to its first byte */
7157 if (has_mbyte)
7158 mb_adjust_cursor();
7159#endif
7160 return OK;
7161}
7162
7163 int
7164cursor_up(n, upd_topline)
7165 long n;
7166 int upd_topline; /* When TRUE: update topline */
7167{
7168 linenr_T lnum;
7169
7170 if (n > 0)
7171 {
7172 lnum = curwin->w_cursor.lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007173 /* This fails if the cursor is already in the first line or the count
7174 * is larger than the line number and '-' is in 'cpoptions' */
7175 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007176 return FAIL;
7177 if (n >= lnum)
7178 lnum = 1;
7179 else
7180#ifdef FEAT_FOLDING
7181 if (hasAnyFolding(curwin))
7182 {
7183 /*
7184 * Count each sequence of folded lines as one logical line.
7185 */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007186 /* go to the start of the current fold */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007187 (void)hasFolding(lnum, &lnum, NULL);
7188
7189 while (n--)
7190 {
7191 /* move up one line */
7192 --lnum;
7193 if (lnum <= 1)
7194 break;
7195 /* If we entered a fold, move to the beginning, unless in
7196 * Insert mode or when 'foldopen' contains "all": it will open
7197 * in a moment. */
7198 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
7199 (void)hasFolding(lnum, &lnum, NULL);
7200 }
7201 if (lnum < 1)
7202 lnum = 1;
7203 }
7204 else
7205#endif
7206 lnum -= n;
7207 curwin->w_cursor.lnum = lnum;
7208 }
7209
7210 /* try to advance to the column we want to be at */
7211 coladvance(curwin->w_curswant);
7212
7213 if (upd_topline)
7214 update_topline(); /* make sure curwin->w_topline is valid */
7215
7216 return OK;
7217}
7218
7219/*
7220 * Cursor down a number of logical lines.
7221 */
7222 int
7223cursor_down(n, upd_topline)
7224 long n;
7225 int upd_topline; /* When TRUE: update topline */
7226{
7227 linenr_T lnum;
7228
7229 if (n > 0)
7230 {
7231 lnum = curwin->w_cursor.lnum;
7232#ifdef FEAT_FOLDING
7233 /* Move to last line of fold, will fail if it's the end-of-file. */
7234 (void)hasFolding(lnum, NULL, &lnum);
7235#endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00007236 /* This fails if the cursor is already in the last line or would move
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007237 * beyond the last line and '-' is in 'cpoptions' */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007238 if (lnum >= curbuf->b_ml.ml_line_count
7239 || (lnum + n > curbuf->b_ml.ml_line_count
7240 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241 return FAIL;
7242 if (lnum + n >= curbuf->b_ml.ml_line_count)
7243 lnum = curbuf->b_ml.ml_line_count;
7244 else
7245#ifdef FEAT_FOLDING
7246 if (hasAnyFolding(curwin))
7247 {
7248 linenr_T last;
7249
7250 /* count each sequence of folded lines as one logical line */
7251 while (n--)
7252 {
7253 if (hasFolding(lnum, NULL, &last))
7254 lnum = last + 1;
7255 else
7256 ++lnum;
7257 if (lnum >= curbuf->b_ml.ml_line_count)
7258 break;
7259 }
7260 if (lnum > curbuf->b_ml.ml_line_count)
7261 lnum = curbuf->b_ml.ml_line_count;
7262 }
7263 else
7264#endif
7265 lnum += n;
7266 curwin->w_cursor.lnum = lnum;
7267 }
7268
7269 /* try to advance to the column we want to be at */
7270 coladvance(curwin->w_curswant);
7271
7272 if (upd_topline)
7273 update_topline(); /* make sure curwin->w_topline is valid */
7274
7275 return OK;
7276}
7277
7278/*
7279 * Stuff the last inserted text in the read buffer.
7280 * Last_insert actually is a copy of the redo buffer, so we
7281 * first have to remove the command.
7282 */
7283 int
7284stuff_inserted(c, count, no_esc)
7285 int c; /* Command character to be inserted */
7286 long count; /* Repeat this many times */
7287 int no_esc; /* Don't add an ESC at the end */
7288{
7289 char_u *esc_ptr;
7290 char_u *ptr;
7291 char_u *last_ptr;
7292 char_u last = NUL;
7293
7294 ptr = get_last_insert();
7295 if (ptr == NULL)
7296 {
7297 EMSG(_(e_noinstext));
7298 return FAIL;
7299 }
7300
7301 /* may want to stuff the command character, to start Insert mode */
7302 if (c != NUL)
7303 stuffcharReadbuff(c);
7304 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
7305 *esc_ptr = NUL; /* remove the ESC */
7306
7307 /* when the last char is either "0" or "^" it will be quoted if no ESC
7308 * comes after it OR if it will inserted more than once and "ptr"
7309 * starts with ^D. -- Acevedo
7310 */
7311 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
7312 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
7313 && (no_esc || (*ptr == Ctrl_D && count > 1)))
7314 {
7315 last = *last_ptr;
7316 *last_ptr = NUL;
7317 }
7318
7319 do
7320 {
7321 stuffReadbuff(ptr);
7322 /* a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^" */
7323 if (last)
7324 stuffReadbuff((char_u *)(last == '0'
7325 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
7326 : IF_EB("\026^", CTRL_V_STR "^")));
7327 }
7328 while (--count > 0);
7329
7330 if (last)
7331 *last_ptr = last;
7332
7333 if (esc_ptr != NULL)
7334 *esc_ptr = ESC; /* put the ESC back */
7335
7336 /* may want to stuff a trailing ESC, to get out of Insert mode */
7337 if (!no_esc)
7338 stuffcharReadbuff(ESC);
7339
7340 return OK;
7341}
7342
7343 char_u *
7344get_last_insert()
7345{
7346 if (last_insert == NULL)
7347 return NULL;
7348 return last_insert + last_insert_skip;
7349}
7350
7351/*
7352 * Get last inserted string, and remove trailing <Esc>.
7353 * Returns pointer to allocated memory (must be freed) or NULL.
7354 */
7355 char_u *
7356get_last_insert_save()
7357{
7358 char_u *s;
7359 int len;
7360
7361 if (last_insert == NULL)
7362 return NULL;
7363 s = vim_strsave(last_insert + last_insert_skip);
7364 if (s != NULL)
7365 {
7366 len = (int)STRLEN(s);
7367 if (len > 0 && s[len - 1] == ESC) /* remove trailing ESC */
7368 s[len - 1] = NUL;
7369 }
7370 return s;
7371}
7372
7373/*
7374 * Check the word in front of the cursor for an abbreviation.
7375 * Called when the non-id character "c" has been entered.
7376 * When an abbreviation is recognized it is removed from the text and
7377 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
7378 */
7379 static int
7380echeck_abbr(c)
7381 int c;
7382{
7383 /* Don't check for abbreviation in paste mode, when disabled and just
7384 * after moving around with cursor keys. */
7385 if (p_paste || no_abbr || arrow_used)
7386 return FALSE;
7387
7388 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
7389 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
7390}
7391
7392/*
7393 * replace-stack functions
7394 *
7395 * When replacing characters, the replaced characters are remembered for each
7396 * new character. This is used to re-insert the old text when backspacing.
7397 *
7398 * There is a NUL headed list of characters for each character that is
7399 * currently in the file after the insertion point. When BS is used, one NUL
7400 * headed list is put back for the deleted character.
7401 *
7402 * For a newline, there are two NUL headed lists. One contains the characters
7403 * that the NL replaced. The extra one stores the characters after the cursor
7404 * that were deleted (always white space).
7405 *
7406 * Replace_offset is normally 0, in which case replace_push will add a new
7407 * character at the end of the stack. If replace_offset is not 0, that many
7408 * characters will be left on the stack above the newly inserted character.
7409 */
7410
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00007411static char_u *replace_stack = NULL;
7412static long replace_stack_nr = 0; /* next entry in replace stack */
7413static long replace_stack_len = 0; /* max. number of entries */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414
7415 void
7416replace_push(c)
7417 int c; /* character that is replaced (NUL is none) */
7418{
7419 char_u *p;
7420
7421 if (replace_stack_nr < replace_offset) /* nothing to do */
7422 return;
7423 if (replace_stack_len <= replace_stack_nr)
7424 {
7425 replace_stack_len += 50;
7426 p = lalloc(sizeof(char_u) * replace_stack_len, TRUE);
7427 if (p == NULL) /* out of memory */
7428 {
7429 replace_stack_len -= 50;
7430 return;
7431 }
7432 if (replace_stack != NULL)
7433 {
7434 mch_memmove(p, replace_stack,
7435 (size_t)(replace_stack_nr * sizeof(char_u)));
7436 vim_free(replace_stack);
7437 }
7438 replace_stack = p;
7439 }
7440 p = replace_stack + replace_stack_nr - replace_offset;
7441 if (replace_offset)
7442 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
7443 *p = c;
7444 ++replace_stack_nr;
7445}
7446
Bram Moolenaar2c994e82008-01-02 16:49:36 +00007447#if defined(FEAT_MBYTE) || defined(PROTO)
7448/*
7449 * Push a character onto the replace stack. Handles a multi-byte character in
7450 * reverse byte order, so that the first byte is popped off first.
7451 * Return the number of bytes done (includes composing characters).
7452 */
7453 int
7454replace_push_mb(p)
7455 char_u *p;
7456{
7457 int l = (*mb_ptr2len)(p);
7458 int j;
7459
7460 for (j = l - 1; j >= 0; --j)
7461 replace_push(p[j]);
7462 return l;
7463}
7464#endif
7465
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466/*
7467 * Pop one item from the replace stack.
7468 * return -1 if stack empty
7469 * return replaced character or NUL otherwise
7470 */
7471 static int
7472replace_pop()
7473{
7474 if (replace_stack_nr == 0)
7475 return -1;
7476 return (int)replace_stack[--replace_stack_nr];
7477}
7478
7479/*
7480 * Join the top two items on the replace stack. This removes to "off"'th NUL
7481 * encountered.
7482 */
7483 static void
7484replace_join(off)
7485 int off; /* offset for which NUL to remove */
7486{
7487 int i;
7488
7489 for (i = replace_stack_nr; --i >= 0; )
7490 if (replace_stack[i] == NUL && off-- <= 0)
7491 {
7492 --replace_stack_nr;
7493 mch_memmove(replace_stack + i, replace_stack + i + 1,
7494 (size_t)(replace_stack_nr - i));
7495 return;
7496 }
7497}
7498
7499/*
7500 * Pop bytes from the replace stack until a NUL is found, and insert them
7501 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
7502 */
7503 static void
7504replace_pop_ins()
7505{
7506 int cc;
7507 int oldState = State;
7508
7509 State = NORMAL; /* don't want REPLACE here */
7510 while ((cc = replace_pop()) > 0)
7511 {
7512#ifdef FEAT_MBYTE
7513 mb_replace_pop_ins(cc);
7514#else
7515 ins_char(cc);
7516#endif
7517 dec_cursor();
7518 }
7519 State = oldState;
7520}
7521
7522#ifdef FEAT_MBYTE
7523/*
7524 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
7525 * indicates a multi-byte char, pop the other bytes too.
7526 */
7527 static void
7528mb_replace_pop_ins(cc)
7529 int cc;
7530{
7531 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02007532 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533 int i;
7534 int c;
7535
7536 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
7537 {
7538 buf[0] = cc;
7539 for (i = 1; i < n; ++i)
7540 buf[i] = replace_pop();
7541 ins_bytes_len(buf, n);
7542 }
7543 else
7544 ins_char(cc);
7545
7546 if (enc_utf8)
7547 /* Handle composing chars. */
7548 for (;;)
7549 {
7550 c = replace_pop();
7551 if (c == -1) /* stack empty */
7552 break;
7553 if ((n = MB_BYTE2LEN(c)) == 1)
7554 {
7555 /* Not a multi-byte char, put it back. */
7556 replace_push(c);
7557 break;
7558 }
7559 else
7560 {
7561 buf[0] = c;
7562 for (i = 1; i < n; ++i)
7563 buf[i] = replace_pop();
7564 if (utf_iscomposing(utf_ptr2char(buf)))
7565 ins_bytes_len(buf, n);
7566 else
7567 {
7568 /* Not a composing char, put it back. */
7569 for (i = n - 1; i >= 0; --i)
7570 replace_push(buf[i]);
7571 break;
7572 }
7573 }
7574 }
7575}
7576#endif
7577
7578/*
7579 * make the replace stack empty
7580 * (called when exiting replace mode)
7581 */
7582 static void
7583replace_flush()
7584{
7585 vim_free(replace_stack);
7586 replace_stack = NULL;
7587 replace_stack_len = 0;
7588 replace_stack_nr = 0;
7589}
7590
7591/*
7592 * Handle doing a BS for one character.
7593 * cc < 0: replace stack empty, just move cursor
7594 * cc == 0: character was inserted, delete it
7595 * cc > 0: character was replaced, put cc (first byte of original char) back
7596 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007597 * When "limit_col" is >= 0, don't delete before this column. Matters when
7598 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007599 */
7600 static void
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007601replace_do_bs(limit_col)
7602 int limit_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007603{
7604 int cc;
7605#ifdef FEAT_VREPLACE
7606 int orig_len = 0;
7607 int ins_len;
7608 int orig_vcols = 0;
7609 colnr_T start_vcol;
7610 char_u *p;
7611 int i;
7612 int vcol;
7613#endif
7614
7615 cc = replace_pop();
7616 if (cc > 0)
7617 {
7618#ifdef FEAT_VREPLACE
7619 if (State & VREPLACE_FLAG)
7620 {
7621 /* Get the number of screen cells used by the character we are
7622 * going to delete. */
7623 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
7624 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
7625 }
7626#endif
7627#ifdef FEAT_MBYTE
7628 if (has_mbyte)
7629 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007630 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631# ifdef FEAT_VREPLACE
7632 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007633 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007634# endif
7635 replace_push(cc);
7636 }
7637 else
7638#endif
7639 {
7640 pchar_cursor(cc);
7641#ifdef FEAT_VREPLACE
7642 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007643 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007644#endif
7645 }
7646 replace_pop_ins();
7647
7648#ifdef FEAT_VREPLACE
7649 if (State & VREPLACE_FLAG)
7650 {
7651 /* Get the number of screen cells used by the inserted characters */
7652 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007653 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007654 vcol = start_vcol;
7655 for (i = 0; i < ins_len; ++i)
7656 {
7657 vcol += chartabsize(p + i, vcol);
7658#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007659 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007660#endif
7661 }
7662 vcol -= start_vcol;
7663
7664 /* Delete spaces that were inserted after the cursor to keep the
7665 * text aligned. */
7666 curwin->w_cursor.col += ins_len;
7667 while (vcol > orig_vcols && gchar_cursor() == ' ')
7668 {
7669 del_char(FALSE);
7670 ++orig_vcols;
7671 }
7672 curwin->w_cursor.col -= ins_len;
7673 }
7674#endif
7675
7676 /* mark the buffer as changed and prepare for displaying */
7677 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
7678 }
7679 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007680 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007681}
7682
7683#ifdef FEAT_CINDENT
7684/*
7685 * Return TRUE if C-indenting is on.
7686 */
7687 static int
7688cindent_on()
7689{
7690 return (!p_paste && (curbuf->b_p_cin
7691# ifdef FEAT_EVAL
7692 || *curbuf->b_p_inde != NUL
7693# endif
7694 ));
7695}
7696#endif
7697
7698#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
7699/*
7700 * Re-indent the current line, based on the current contents of it and the
7701 * surrounding lines. Fixing the cursor position seems really easy -- I'm very
7702 * confused what all the part that handles Control-T is doing that I'm not.
7703 * "get_the_indent" should be get_c_indent, get_expr_indent or get_lisp_indent.
7704 */
7705
7706 void
7707fixthisline(get_the_indent)
7708 int (*get_the_indent) __ARGS((void));
7709{
Bram Moolenaar21b17e72008-01-16 19:03:13 +00007710 change_indent(INDENT_SET, get_the_indent(), FALSE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007711 if (linewhite(curwin->w_cursor.lnum))
7712 did_ai = TRUE; /* delete the indent if the line stays empty */
7713}
7714
7715 void
7716fix_indent()
7717{
7718 if (p_paste)
7719 return;
7720# ifdef FEAT_LISP
7721 if (curbuf->b_p_lisp && curbuf->b_p_ai)
7722 fixthisline(get_lisp_indent);
7723# endif
7724# if defined(FEAT_LISP) && defined(FEAT_CINDENT)
7725 else
7726# endif
7727# ifdef FEAT_CINDENT
7728 if (cindent_on())
7729 do_c_expr_indent();
7730# endif
7731}
7732
7733#endif
7734
7735#ifdef FEAT_CINDENT
7736/*
7737 * return TRUE if 'cinkeys' contains the key "keytyped",
7738 * when == '*': Only if key is preceded with '*' (indent before insert)
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02007739 * when == '!': Only if key is preceded with '!' (don't insert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007740 * when == ' ': Only if key is not preceded with '*'(indent afterwards)
7741 *
7742 * "keytyped" can have a few special values:
7743 * KEY_OPEN_FORW
7744 * KEY_OPEN_BACK
7745 * KEY_COMPLETE just finished completion.
7746 *
7747 * If line_is_empty is TRUE accept keys with '0' before them.
7748 */
7749 int
7750in_cinkeys(keytyped, when, line_is_empty)
7751 int keytyped;
7752 int when;
7753 int line_is_empty;
7754{
7755 char_u *look;
7756 int try_match;
7757 int try_match_word;
7758 char_u *p;
7759 char_u *line;
7760 int icase;
7761 int i;
7762
Bram Moolenaar30848942009-12-24 14:46:12 +00007763 if (keytyped == NUL)
7764 /* Can happen with CTRL-Y and CTRL-E on a short line. */
7765 return FALSE;
7766
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767#ifdef FEAT_EVAL
7768 if (*curbuf->b_p_inde != NUL)
7769 look = curbuf->b_p_indk; /* 'indentexpr' set: use 'indentkeys' */
7770 else
7771#endif
7772 look = curbuf->b_p_cink; /* 'indentexpr' empty: use 'cinkeys' */
7773 while (*look)
7774 {
7775 /*
7776 * Find out if we want to try a match with this key, depending on
7777 * 'when' and a '*' or '!' before the key.
7778 */
7779 switch (when)
7780 {
7781 case '*': try_match = (*look == '*'); break;
7782 case '!': try_match = (*look == '!'); break;
7783 default: try_match = (*look != '*'); break;
7784 }
7785 if (*look == '*' || *look == '!')
7786 ++look;
7787
7788 /*
7789 * If there is a '0', only accept a match if the line is empty.
7790 * But may still match when typing last char of a word.
7791 */
7792 if (*look == '0')
7793 {
7794 try_match_word = try_match;
7795 if (!line_is_empty)
7796 try_match = FALSE;
7797 ++look;
7798 }
7799 else
7800 try_match_word = FALSE;
7801
7802 /*
7803 * does it look like a control character?
7804 */
7805 if (*look == '^'
7806#ifdef EBCDIC
7807 && (Ctrl_chr(look[1]) != 0)
7808#else
7809 && look[1] >= '?' && look[1] <= '_'
7810#endif
7811 )
7812 {
7813 if (try_match && keytyped == Ctrl_chr(look[1]))
7814 return TRUE;
7815 look += 2;
7816 }
7817 /*
7818 * 'o' means "o" command, open forward.
7819 * 'O' means "O" command, open backward.
7820 */
7821 else if (*look == 'o')
7822 {
7823 if (try_match && keytyped == KEY_OPEN_FORW)
7824 return TRUE;
7825 ++look;
7826 }
7827 else if (*look == 'O')
7828 {
7829 if (try_match && keytyped == KEY_OPEN_BACK)
7830 return TRUE;
7831 ++look;
7832 }
7833
7834 /*
7835 * 'e' means to check for "else" at start of line and just before the
7836 * cursor.
7837 */
7838 else if (*look == 'e')
7839 {
7840 if (try_match && keytyped == 'e' && curwin->w_cursor.col >= 4)
7841 {
7842 p = ml_get_curline();
7843 if (skipwhite(p) == p + curwin->w_cursor.col - 4 &&
7844 STRNCMP(p + curwin->w_cursor.col - 4, "else", 4) == 0)
7845 return TRUE;
7846 }
7847 ++look;
7848 }
7849
7850 /*
7851 * ':' only causes an indent if it is at the end of a label or case
7852 * statement, or when it was before typing the ':' (to fix
7853 * class::method for C++).
7854 */
7855 else if (*look == ':')
7856 {
7857 if (try_match && keytyped == ':')
7858 {
7859 p = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007860 if (cin_iscase(p, FALSE) || cin_isscopedecl(p)
7861 || cin_islabel(30))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007862 return TRUE;
Bram Moolenaar30118152007-06-28 10:49:22 +00007863 /* Need to get the line again after cin_islabel(). */
7864 p = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007865 if (curwin->w_cursor.col > 2
7866 && p[curwin->w_cursor.col - 1] == ':'
7867 && p[curwin->w_cursor.col - 2] == ':')
7868 {
7869 p[curwin->w_cursor.col - 1] = ' ';
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007870 i = (cin_iscase(p, FALSE) || cin_isscopedecl(p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007871 || cin_islabel(30));
7872 p = ml_get_curline();
7873 p[curwin->w_cursor.col - 1] = ':';
7874 if (i)
7875 return TRUE;
7876 }
7877 }
7878 ++look;
7879 }
7880
7881
7882 /*
7883 * Is it a key in <>, maybe?
7884 */
7885 else if (*look == '<')
7886 {
7887 if (try_match)
7888 {
7889 /*
7890 * make up some named keys <o>, <O>, <e>, <0>, <>>, <<>, <*>,
7891 * <:> and <!> so that people can re-indent on o, O, e, 0, <,
7892 * >, *, : and ! keys if they really really want to.
7893 */
7894 if (vim_strchr((char_u *)"<>!*oOe0:", look[1]) != NULL
7895 && keytyped == look[1])
7896 return TRUE;
7897
7898 if (keytyped == get_special_key_code(look + 1))
7899 return TRUE;
7900 }
7901 while (*look && *look != '>')
7902 look++;
7903 while (*look == '>')
7904 look++;
7905 }
7906
7907 /*
7908 * Is it a word: "=word"?
7909 */
7910 else if (*look == '=' && look[1] != ',' && look[1] != NUL)
7911 {
7912 ++look;
7913 if (*look == '~')
7914 {
7915 icase = TRUE;
7916 ++look;
7917 }
7918 else
7919 icase = FALSE;
7920 p = vim_strchr(look, ',');
7921 if (p == NULL)
7922 p = look + STRLEN(look);
7923 if ((try_match || try_match_word)
7924 && curwin->w_cursor.col >= (colnr_T)(p - look))
7925 {
7926 int match = FALSE;
7927
7928#ifdef FEAT_INS_EXPAND
7929 if (keytyped == KEY_COMPLETE)
7930 {
7931 char_u *s;
7932
7933 /* Just completed a word, check if it starts with "look".
7934 * search back for the start of a word. */
7935 line = ml_get_curline();
7936# ifdef FEAT_MBYTE
7937 if (has_mbyte)
7938 {
7939 char_u *n;
7940
7941 for (s = line + curwin->w_cursor.col; s > line; s = n)
7942 {
7943 n = mb_prevptr(line, s);
7944 if (!vim_iswordp(n))
7945 break;
7946 }
7947 }
7948 else
7949# endif
7950 for (s = line + curwin->w_cursor.col; s > line; --s)
7951 if (!vim_iswordc(s[-1]))
7952 break;
7953 if (s + (p - look) <= line + curwin->w_cursor.col
7954 && (icase
7955 ? MB_STRNICMP(s, look, p - look)
7956 : STRNCMP(s, look, p - look)) == 0)
7957 match = TRUE;
7958 }
7959 else
7960#endif
7961 /* TODO: multi-byte */
7962 if (keytyped == (int)p[-1] || (icase && keytyped < 256
7963 && TOLOWER_LOC(keytyped) == TOLOWER_LOC((int)p[-1])))
7964 {
7965 line = ml_get_cursor();
7966 if ((curwin->w_cursor.col == (colnr_T)(p - look)
7967 || !vim_iswordc(line[-(p - look) - 1]))
7968 && (icase
7969 ? MB_STRNICMP(line - (p - look), look, p - look)
7970 : STRNCMP(line - (p - look), look, p - look))
7971 == 0)
7972 match = TRUE;
7973 }
7974 if (match && try_match_word && !try_match)
7975 {
7976 /* "0=word": Check if there are only blanks before the
7977 * word. */
7978 line = ml_get_curline();
7979 if ((int)(skipwhite(line) - line) !=
7980 (int)(curwin->w_cursor.col - (p - look)))
7981 match = FALSE;
7982 }
7983 if (match)
7984 return TRUE;
7985 }
7986 look = p;
7987 }
7988
7989 /*
7990 * ok, it's a boring generic character.
7991 */
7992 else
7993 {
7994 if (try_match && *look == keytyped)
7995 return TRUE;
7996 ++look;
7997 }
7998
7999 /*
8000 * Skip over ", ".
8001 */
8002 look = skip_to_option_part(look);
8003 }
8004 return FALSE;
8005}
8006#endif /* FEAT_CINDENT */
8007
8008#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
8009/*
8010 * Map Hebrew keyboard when in hkmap mode.
8011 */
8012 int
8013hkmap(c)
8014 int c;
8015{
8016 if (p_hkmapp) /* phonetic mapping, by Ilya Dogolazky */
8017 {
8018 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
8019 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
8020 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
8021 static char_u map[26] =
8022 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
8023 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
8024 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
8025 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
8026 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
8027 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
8028 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
8029 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
8030 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
8031
8032 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
8033 return (int)(map[CharOrd(c)] - 1 + p_aleph);
8034 /* '-1'='sofit' */
8035 else if (c == 'x')
8036 return 'X';
8037 else if (c == 'q')
8038 return '\''; /* {geresh}={'} */
8039 else if (c == 246)
8040 return ' '; /* \"o --> ' ' for a german keyboard */
8041 else if (c == 228)
8042 return ' '; /* \"a --> ' ' -- / -- */
8043 else if (c == 252)
8044 return ' '; /* \"u --> ' ' -- / -- */
8045#ifdef EBCDIC
8046 else if (islower(c))
8047#else
8048 /* NOTE: islower() does not do the right thing for us on Linux so we
8049 * do this the same was as 5.7 and previous, so it works correctly on
8050 * all systems. Specifically, the e.g. Delete and Arrow keys are
8051 * munged and won't work if e.g. searching for Hebrew text.
8052 */
8053 else if (c >= 'a' && c <= 'z')
8054#endif
8055 return (int)(map[CharOrdLow(c)] + p_aleph);
8056 else
8057 return c;
8058 }
8059 else
8060 {
8061 switch (c)
8062 {
8063 case '`': return ';';
8064 case '/': return '.';
8065 case '\'': return ',';
8066 case 'q': return '/';
8067 case 'w': return '\'';
8068
8069 /* Hebrew letters - set offset from 'a' */
8070 case ',': c = '{'; break;
8071 case '.': c = 'v'; break;
8072 case ';': c = 't'; break;
8073 default: {
8074 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
8075
8076#ifdef EBCDIC
8077 /* see note about islower() above */
8078 if (!islower(c))
8079#else
8080 if (c < 'a' || c > 'z')
8081#endif
8082 return c;
8083 c = str[CharOrdLow(c)];
8084 break;
8085 }
8086 }
8087
8088 return (int)(CharOrdLow(c) + p_aleph);
8089 }
8090}
8091#endif
8092
8093 static void
8094ins_reg()
8095{
8096 int need_redraw = FALSE;
8097 int regname;
8098 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008099#ifdef FEAT_VISUAL
8100 int vis_active = VIsual_active;
8101#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008102
8103 /*
8104 * If we are going to wait for a character, show a '"'.
8105 */
8106 pc_status = PC_STATUS_UNSET;
8107 if (redrawing() && !char_avail())
8108 {
8109 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00008110 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008111
8112 edit_putchar('"', TRUE);
8113#ifdef FEAT_CMDL_INFO
8114 add_to_showcmd_c(Ctrl_R);
8115#endif
8116 }
8117
8118#ifdef USE_ON_FLY_SCROLL
8119 dont_scroll = TRUE; /* disallow scrolling here */
8120#endif
8121
8122 /*
8123 * Don't map the register name. This also prevents the mode message to be
8124 * deleted when ESC is hit.
8125 */
8126 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008127 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008128 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008129 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
8130 {
8131 /* Get a third key for literal register insertion */
8132 literally = regname;
8133#ifdef FEAT_CMDL_INFO
8134 add_to_showcmd_c(literally);
8135#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008136 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008137 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008138 }
8139 --no_mapping;
8140
8141#ifdef FEAT_EVAL
Bram Moolenaardf9259a2013-06-15 17:54:43 +02008142 /* Don't call u_sync() while typing the expression or giving an error
8143 * message for it. Only call it explicitly. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008144 ++no_u_sync;
8145 if (regname == '=')
8146 {
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008147# ifdef USE_IM_CONTROL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008148 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008149# endif
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02008150 /* Sync undo when evaluating the expression calls setline() or
8151 * append(), so that it can be undone separately. */
8152 u_sync_once = 2;
Bram Moolenaar5737ca22013-06-27 22:21:24 +02008153
Bram Moolenaar071d4272004-06-13 20:20:40 +00008154 regname = get_expr_register();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008155# ifdef USE_IM_CONTROL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008156 /* Restore the Input Method. */
8157 if (im_on)
8158 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008159# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008160 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00008161 if (regname == NUL || !valid_yank_reg(regname, FALSE))
8162 {
8163 vim_beep();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008164 need_redraw = TRUE; /* remove the '"' */
Bram Moolenaar677ee682005-01-27 14:41:15 +00008165 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008166 else
8167 {
8168#endif
8169 if (literally == Ctrl_O || literally == Ctrl_P)
8170 {
8171 /* Append the command to the redo buffer. */
8172 AppendCharToRedobuff(Ctrl_R);
8173 AppendCharToRedobuff(literally);
8174 AppendCharToRedobuff(regname);
8175
8176 do_put(regname, BACKWARD, 1L,
8177 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
8178 }
8179 else if (insert_reg(regname, literally) == FAIL)
8180 {
8181 vim_beep();
8182 need_redraw = TRUE; /* remove the '"' */
8183 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008184 else if (stop_insert_mode)
8185 /* When the '=' register was used and a function was invoked that
8186 * did ":stopinsert" then stuff_empty() returns FALSE but we won't
8187 * insert anything, need to remove the '"' */
8188 need_redraw = TRUE;
8189
Bram Moolenaar071d4272004-06-13 20:20:40 +00008190#ifdef FEAT_EVAL
8191 }
8192 --no_u_sync;
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02008193 if (u_sync_once == 1)
8194 ins_need_undo = TRUE;
8195 u_sync_once = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008196#endif
8197#ifdef FEAT_CMDL_INFO
8198 clear_showcmd();
8199#endif
8200
8201 /* If the inserted register is empty, we need to remove the '"' */
8202 if (need_redraw || stuff_empty())
8203 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008204
8205#ifdef FEAT_VISUAL
8206 /* Disallow starting Visual mode here, would get a weird mode. */
8207 if (!vis_active && VIsual_active)
8208 end_visual_mode();
8209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008210}
8211
8212/*
8213 * CTRL-G commands in Insert mode.
8214 */
8215 static void
8216ins_ctrl_g()
8217{
8218 int c;
8219
8220#ifdef FEAT_INS_EXPAND
8221 /* Right after CTRL-X the cursor will be after the ruler. */
8222 setcursor();
8223#endif
8224
8225 /*
8226 * Don't map the second key. This also prevents the mode message to be
8227 * deleted when ESC is hit.
8228 */
8229 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008230 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008231 --no_mapping;
8232 switch (c)
8233 {
8234 /* CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col */
8235 case K_UP:
8236 case Ctrl_K:
8237 case 'k': ins_up(TRUE);
8238 break;
8239
8240 /* CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col */
8241 case K_DOWN:
8242 case Ctrl_J:
8243 case 'j': ins_down(TRUE);
8244 break;
8245
8246 /* CTRL-G u: start new undoable edit */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008247 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008248 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00008249
8250 /* Need to reset Insstart, esp. because a BS that joins
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00008251 * a line to the previous one must save for undo. */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00008252 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008253 break;
8254
8255 /* Unknown CTRL-G command, reserved for future expansion. */
8256 default: vim_beep();
8257 }
8258}
8259
8260/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008261 * CTRL-^ in Insert mode.
8262 */
8263 static void
8264ins_ctrl_hat()
8265{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00008266 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008267 {
8268 /* ":lmap" mappings exists, Toggle use of ":lmap" mappings. */
8269 if (State & LANGMAP)
8270 {
8271 curbuf->b_p_iminsert = B_IMODE_NONE;
8272 State &= ~LANGMAP;
8273 }
8274 else
8275 {
8276 curbuf->b_p_iminsert = B_IMODE_LMAP;
8277 State |= LANGMAP;
8278#ifdef USE_IM_CONTROL
8279 im_set_active(FALSE);
8280#endif
8281 }
8282 }
8283#ifdef USE_IM_CONTROL
8284 else
8285 {
8286 /* There are no ":lmap" mappings, toggle IM */
8287 if (im_get_status())
8288 {
8289 curbuf->b_p_iminsert = B_IMODE_NONE;
8290 im_set_active(FALSE);
8291 }
8292 else
8293 {
8294 curbuf->b_p_iminsert = B_IMODE_IM;
8295 State &= ~LANGMAP;
8296 im_set_active(TRUE);
8297 }
8298 }
8299#endif
8300 set_iminsert_global();
8301 showmode();
8302#ifdef FEAT_GUI
8303 /* may show different cursor shape or color */
8304 if (gui.in_use)
8305 gui_update_cursor(TRUE, FALSE);
8306#endif
8307#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8308 /* Show/unshow value of 'keymap' in status lines. */
8309 status_redraw_curbuf();
8310#endif
8311}
8312
8313/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008314 * Handle ESC in insert mode.
8315 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
8316 * insert.
8317 */
8318 static int
Bram Moolenaar488c6512005-08-11 20:09:58 +00008319ins_esc(count, cmdchar, nomove)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008320 long *count;
8321 int cmdchar;
Bram Moolenaar488c6512005-08-11 20:09:58 +00008322 int nomove; /* don't move cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008323{
8324 int temp;
8325 static int disabled_redraw = FALSE;
8326
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00008327#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008328 check_spell_redraw();
8329#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008330#if defined(FEAT_HANGULIN)
8331# if defined(ESC_CHG_TO_ENG_MODE)
8332 hangul_input_state_set(0);
8333# endif
8334 if (composing_hangul)
8335 {
8336 push_raw_key(composing_hangul_buffer, 2);
8337 composing_hangul = 0;
8338 }
8339#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008340
8341 temp = curwin->w_cursor.col;
8342 if (disabled_redraw)
8343 {
8344 --RedrawingDisabled;
8345 disabled_redraw = FALSE;
8346 }
8347 if (!arrow_used)
8348 {
8349 /*
8350 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00008351 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
8352 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008353 */
8354 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00008355 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008356
8357 /*
8358 * Repeating insert may take a long time. Check for
8359 * interrupt now and then.
8360 */
8361 if (*count > 0)
8362 {
8363 line_breakcheck();
8364 if (got_int)
8365 *count = 0;
8366 }
8367
8368 if (--*count > 0) /* repeat what was typed */
8369 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00008370 /* Vi repeats the insert without replacing characters. */
8371 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
8372 State &= ~REPLACE_FLAG;
8373
Bram Moolenaar071d4272004-06-13 20:20:40 +00008374 (void)start_redo_ins();
8375 if (cmdchar == 'r' || cmdchar == 'v')
8376 stuffReadbuff(ESC_STR); /* no ESC in redo buffer */
8377 ++RedrawingDisabled;
8378 disabled_redraw = TRUE;
8379 return FALSE; /* repeat the insert */
8380 }
Bram Moolenaarf332a652013-11-04 04:20:33 +01008381 stop_insert(&curwin->w_cursor, TRUE, nomove);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008382 undisplay_dollar();
8383 }
8384
8385 /* When an autoindent was removed, curswant stays after the
8386 * indent */
8387 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
8388 curwin->w_set_curswant = TRUE;
8389
8390 /* Remember the last Insert position in the '^ mark. */
8391 if (!cmdmod.keepjumps)
8392 curbuf->b_last_insert = curwin->w_cursor;
8393
8394 /*
8395 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00008396 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008397 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00008398 if (!nomove
8399 && (curwin->w_cursor.col != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00008400#ifdef FEAT_VIRTUALEDIT
8401 || curwin->w_cursor.coladd > 0
8402#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00008403 )
8404 && (restart_edit == NUL
8405 || (gchar_cursor() == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008406#ifdef FEAT_VISUAL
Bram Moolenaar488c6512005-08-11 20:09:58 +00008407 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00008408#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00008409 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008410#ifdef FEAT_RIGHTLEFT
8411 && !revins_on
8412#endif
8413 )
8414 {
8415#ifdef FEAT_VIRTUALEDIT
8416 if (curwin->w_cursor.coladd > 0 || ve_flags == VE_ALL)
8417 {
8418 oneleft();
8419 if (restart_edit != NUL)
8420 ++curwin->w_cursor.coladd;
8421 }
8422 else
8423#endif
8424 {
8425 --curwin->w_cursor.col;
8426#ifdef FEAT_MBYTE
8427 /* Correct cursor for multi-byte character. */
8428 if (has_mbyte)
8429 mb_adjust_cursor();
8430#endif
8431 }
8432 }
8433
8434#ifdef USE_IM_CONTROL
8435 /* Disable IM to allow typing English directly for Normal mode commands.
8436 * When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
8437 * well). */
8438 if (!(State & LANGMAP))
8439 im_save_status(&curbuf->b_p_iminsert);
8440 im_set_active(FALSE);
8441#endif
8442
8443 State = NORMAL;
8444 /* need to position cursor again (e.g. when on a TAB ) */
8445 changed_cline_bef_curs();
8446
8447#ifdef FEAT_MOUSE
8448 setmouse();
8449#endif
8450#ifdef CURSOR_SHAPE
8451 ui_cursor_shape(); /* may show different cursor shape */
8452#endif
8453
8454 /*
8455 * When recording or for CTRL-O, need to display the new mode.
8456 * Otherwise remove the mode message.
8457 */
8458 if (Recording || restart_edit != NUL)
8459 showmode();
8460 else if (p_smd)
8461 MSG("");
8462
8463 return TRUE; /* exit Insert mode */
8464}
8465
8466#ifdef FEAT_RIGHTLEFT
8467/*
8468 * Toggle language: hkmap and revins_on.
8469 * Move to end of reverse inserted text.
8470 */
8471 static void
8472ins_ctrl_()
8473{
8474 if (revins_on && revins_chars && revins_scol >= 0)
8475 {
8476 while (gchar_cursor() != NUL && revins_chars--)
8477 ++curwin->w_cursor.col;
8478 }
8479 p_ri = !p_ri;
8480 revins_on = (State == INSERT && p_ri);
8481 if (revins_on)
8482 {
8483 revins_scol = curwin->w_cursor.col;
8484 revins_legal++;
8485 revins_chars = 0;
8486 undisplay_dollar();
8487 }
8488 else
8489 revins_scol = -1;
8490#ifdef FEAT_FKMAP
8491 if (p_altkeymap)
8492 {
8493 /*
8494 * to be consistent also for redo command, using '.'
8495 * set arrow_used to true and stop it - causing to redo
8496 * characters entered in one mode (normal/reverse insert).
8497 */
8498 arrow_used = TRUE;
8499 (void)stop_arrow();
8500 p_fkmap = curwin->w_p_rl ^ p_ri;
8501 if (p_fkmap && p_ri)
8502 State = INSERT;
8503 }
8504 else
8505#endif
8506 p_hkmap = curwin->w_p_rl ^ p_ri; /* be consistent! */
8507 showmode();
8508}
8509#endif
8510
8511#ifdef FEAT_VISUAL
8512/*
8513 * If 'keymodel' contains "startsel", may start selection.
8514 * Returns TRUE when a CTRL-O and other keys stuffed.
8515 */
8516 static int
8517ins_start_select(c)
8518 int c;
8519{
8520 if (km_startsel)
8521 switch (c)
8522 {
8523 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008524 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008525 case K_PAGEUP:
8526 case K_KPAGEUP:
8527 case K_PAGEDOWN:
8528 case K_KPAGEDOWN:
8529# ifdef MACOS
8530 case K_LEFT:
8531 case K_RIGHT:
8532 case K_UP:
8533 case K_DOWN:
8534 case K_END:
8535 case K_HOME:
8536# endif
8537 if (!(mod_mask & MOD_MASK_SHIFT))
8538 break;
8539 /* FALLTHROUGH */
8540 case K_S_LEFT:
8541 case K_S_RIGHT:
8542 case K_S_UP:
8543 case K_S_DOWN:
8544 case K_S_END:
8545 case K_S_HOME:
8546 /* Start selection right away, the cursor can move with
8547 * CTRL-O when beyond the end of the line. */
8548 start_selection();
8549
8550 /* Execute the key in (insert) Select mode. */
8551 stuffcharReadbuff(Ctrl_O);
8552 if (mod_mask)
8553 {
8554 char_u buf[4];
8555
8556 buf[0] = K_SPECIAL;
8557 buf[1] = KS_MODIFIER;
8558 buf[2] = mod_mask;
8559 buf[3] = NUL;
8560 stuffReadbuff(buf);
8561 }
8562 stuffcharReadbuff(c);
8563 return TRUE;
8564 }
8565 return FALSE;
8566}
8567#endif
8568
8569/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02008570 * <Insert> key in Insert mode: toggle insert/replace mode.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008571 */
8572 static void
8573ins_insert(replaceState)
8574 int replaceState;
8575{
8576#ifdef FEAT_FKMAP
8577 if (p_fkmap && p_ri)
8578 {
8579 beep_flush();
8580 EMSG(farsi_text_3); /* encoded in Farsi */
8581 return;
8582 }
8583#endif
8584
8585#ifdef FEAT_AUTOCMD
Bram Moolenaar1e015462005-09-25 22:16:38 +00008586# ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008587 set_vim_var_string(VV_INSERTMODE,
8588 (char_u *)((State & REPLACE_FLAG) ? "i" :
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008589# ifdef FEAT_VREPLACE
8590 replaceState == VREPLACE ? "v" :
8591# endif
8592 "r"), 1);
Bram Moolenaar1e015462005-09-25 22:16:38 +00008593# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008594 apply_autocmds(EVENT_INSERTCHANGE, NULL, NULL, FALSE, curbuf);
8595#endif
8596 if (State & REPLACE_FLAG)
8597 State = INSERT | (State & LANGMAP);
8598 else
8599 State = replaceState | (State & LANGMAP);
8600 AppendCharToRedobuff(K_INS);
8601 showmode();
8602#ifdef CURSOR_SHAPE
8603 ui_cursor_shape(); /* may show different cursor shape */
8604#endif
8605}
8606
8607/*
8608 * Pressed CTRL-O in Insert mode.
8609 */
8610 static void
8611ins_ctrl_o()
8612{
8613#ifdef FEAT_VREPLACE
8614 if (State & VREPLACE_FLAG)
8615 restart_edit = 'V';
8616 else
8617#endif
8618 if (State & REPLACE_FLAG)
8619 restart_edit = 'R';
8620 else
8621 restart_edit = 'I';
8622#ifdef FEAT_VIRTUALEDIT
8623 if (virtual_active())
8624 ins_at_eol = FALSE; /* cursor always keeps its column */
8625 else
8626#endif
8627 ins_at_eol = (gchar_cursor() == NUL);
8628}
8629
8630/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008631 * If the cursor is on an indent, ^T/^D insert/delete one
8632 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00008633 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00008634 * with vi. But vi only supports ^T and ^D after an
8635 * autoindent, we support it everywhere.
8636 */
8637 static void
8638ins_shift(c, lastc)
8639 int c;
8640 int lastc;
8641{
8642 if (stop_arrow() == FAIL)
8643 return;
8644 AppendCharToRedobuff(c);
8645
8646 /*
8647 * 0^D and ^^D: remove all indent.
8648 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00008649 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
8650 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008651 {
8652 --curwin->w_cursor.col;
8653 (void)del_char(FALSE); /* delete the '^' or '0' */
8654 /* In Replace mode, restore the characters that '^' or '0' replaced. */
8655 if (State & REPLACE_FLAG)
8656 replace_pop_ins();
8657 if (lastc == '^')
8658 old_indent = get_indent(); /* remember curr. indent */
Bram Moolenaar21b17e72008-01-16 19:03:13 +00008659 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008660 }
8661 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00008662 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008663
8664 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
8665 did_ai = FALSE;
8666#ifdef FEAT_SMARTINDENT
8667 did_si = FALSE;
8668 can_si = FALSE;
8669 can_si_back = FALSE;
8670#endif
8671#ifdef FEAT_CINDENT
8672 can_cindent = FALSE; /* no cindenting after ^D or ^T */
8673#endif
8674}
8675
8676 static void
8677ins_del()
8678{
8679 int temp;
8680
8681 if (stop_arrow() == FAIL)
8682 return;
8683 if (gchar_cursor() == NUL) /* delete newline */
8684 {
8685 temp = curwin->w_cursor.col;
8686 if (!can_bs(BS_EOL) /* only if "eol" included */
Bram Moolenaar81340392012-06-06 16:12:59 +02008687 || do_join(2, FALSE, TRUE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008688 vim_beep();
8689 else
8690 curwin->w_cursor.col = temp;
8691 }
8692 else if (del_char(FALSE) == FAIL) /* delete char under cursor */
8693 vim_beep();
8694 did_ai = FALSE;
8695#ifdef FEAT_SMARTINDENT
8696 did_si = FALSE;
8697 can_si = FALSE;
8698 can_si_back = FALSE;
8699#endif
8700 AppendCharToRedobuff(K_DEL);
8701}
8702
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008703static void ins_bs_one __ARGS((colnr_T *vcolp));
8704
8705/*
8706 * Delete one character for ins_bs().
8707 */
8708 static void
8709ins_bs_one(vcolp)
8710 colnr_T *vcolp;
8711{
8712 dec_cursor();
8713 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
8714 if (State & REPLACE_FLAG)
8715 {
8716 /* Don't delete characters before the insert point when in
8717 * Replace mode */
8718 if (curwin->w_cursor.lnum != Insstart.lnum
8719 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00008720 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008721 }
8722 else
8723 (void)del_char(FALSE);
8724}
8725
Bram Moolenaar071d4272004-06-13 20:20:40 +00008726/*
8727 * Handle Backspace, delete-word and delete-line in Insert mode.
8728 * Return TRUE when backspace was actually used.
8729 */
8730 static int
8731ins_bs(c, mode, inserted_space_p)
8732 int c;
8733 int mode;
8734 int *inserted_space_p;
8735{
8736 linenr_T lnum;
8737 int cc;
8738 int temp = 0; /* init for GCC */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008739 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008740 colnr_T mincol;
8741 int did_backspace = FALSE;
8742 int in_indent;
8743 int oldState;
8744#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008745 int cpc[MAX_MCO]; /* composing characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008746#endif
8747
8748 /*
8749 * can't delete anything in an empty file
8750 * can't backup past first character in buffer
8751 * can't backup past starting point unless 'backspace' > 1
8752 * can backup to a previous line if 'backspace' == 0
8753 */
8754 if ( bufempty()
8755 || (
8756#ifdef FEAT_RIGHTLEFT
8757 !revins_on &&
8758#endif
8759 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
8760 || (!can_bs(BS_START)
8761 && (arrow_used
8762 || (curwin->w_cursor.lnum == Insstart.lnum
8763 && curwin->w_cursor.col <= Insstart.col)))
8764 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
8765 && curwin->w_cursor.col <= ai_col)
8766 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
8767 {
8768 vim_beep();
8769 return FALSE;
8770 }
8771
8772 if (stop_arrow() == FAIL)
8773 return FALSE;
8774 in_indent = inindent(0);
8775#ifdef FEAT_CINDENT
8776 if (in_indent)
8777 can_cindent = FALSE;
8778#endif
8779#ifdef FEAT_COMMENTS
8780 end_comment_pending = NUL; /* After BS, don't auto-end comment */
8781#endif
8782#ifdef FEAT_RIGHTLEFT
8783 if (revins_on) /* put cursor after last inserted char */
8784 inc_cursor();
8785#endif
8786
8787#ifdef FEAT_VIRTUALEDIT
8788 /* Virtualedit:
8789 * BACKSPACE_CHAR eats a virtual space
8790 * BACKSPACE_WORD eats all coladd
8791 * BACKSPACE_LINE eats all coladd and keeps going
8792 */
8793 if (curwin->w_cursor.coladd > 0)
8794 {
8795 if (mode == BACKSPACE_CHAR)
8796 {
8797 --curwin->w_cursor.coladd;
8798 return TRUE;
8799 }
8800 if (mode == BACKSPACE_WORD)
8801 {
8802 curwin->w_cursor.coladd = 0;
8803 return TRUE;
8804 }
8805 curwin->w_cursor.coladd = 0;
8806 }
8807#endif
8808
8809 /*
8810 * delete newline!
8811 */
8812 if (curwin->w_cursor.col == 0)
8813 {
8814 lnum = Insstart.lnum;
8815 if (curwin->w_cursor.lnum == Insstart.lnum
8816#ifdef FEAT_RIGHTLEFT
8817 || revins_on
8818#endif
8819 )
8820 {
8821 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
8822 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
8823 return FALSE;
8824 --Insstart.lnum;
8825 Insstart.col = MAXCOL;
8826 }
8827 /*
8828 * In replace mode:
8829 * cc < 0: NL was inserted, delete it
8830 * cc >= 0: NL was replaced, put original characters back
8831 */
8832 cc = -1;
8833 if (State & REPLACE_FLAG)
8834 cc = replace_pop(); /* returns -1 if NL was inserted */
8835 /*
8836 * In replace mode, in the line we started replacing, we only move the
8837 * cursor.
8838 */
8839 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
8840 {
8841 dec_cursor();
8842 }
8843 else
8844 {
8845#ifdef FEAT_VREPLACE
8846 if (!(State & VREPLACE_FLAG)
8847 || curwin->w_cursor.lnum > orig_line_count)
8848#endif
8849 {
8850 temp = gchar_cursor(); /* remember current char */
8851 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00008852
8853 /* When "aw" is in 'formatoptions' we must delete the space at
8854 * the end of the line, otherwise the line will be broken
8855 * again when auto-formatting. */
8856 if (has_format_option(FO_AUTO)
8857 && has_format_option(FO_WHITE_PAR))
8858 {
8859 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
8860 TRUE);
8861 int len;
8862
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008863 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00008864 if (len > 0 && ptr[len - 1] == ' ')
8865 ptr[len - 1] = NUL;
8866 }
8867
Bram Moolenaar81340392012-06-06 16:12:59 +02008868 (void)do_join(2, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008869 if (temp == NUL && gchar_cursor() != NUL)
8870 inc_cursor();
8871 }
8872#ifdef FEAT_VREPLACE
8873 else
8874 dec_cursor();
8875#endif
8876
8877 /*
8878 * In REPLACE mode we have to put back the text that was replaced
8879 * by the NL. On the replace stack is first a NUL-terminated
8880 * sequence of characters that were deleted and then the
8881 * characters that NL replaced.
8882 */
8883 if (State & REPLACE_FLAG)
8884 {
8885 /*
8886 * Do the next ins_char() in NORMAL state, to
8887 * prevent ins_char() from replacing characters and
8888 * avoiding showmatch().
8889 */
8890 oldState = State;
8891 State = NORMAL;
8892 /*
8893 * restore characters (blanks) deleted after cursor
8894 */
8895 while (cc > 0)
8896 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008897 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008898#ifdef FEAT_MBYTE
8899 mb_replace_pop_ins(cc);
8900#else
8901 ins_char(cc);
8902#endif
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008903 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008904 cc = replace_pop();
8905 }
8906 /* restore the characters that NL replaced */
8907 replace_pop_ins();
8908 State = oldState;
8909 }
8910 }
8911 did_ai = FALSE;
8912 }
8913 else
8914 {
8915 /*
8916 * Delete character(s) before the cursor.
8917 */
8918#ifdef FEAT_RIGHTLEFT
8919 if (revins_on) /* put cursor on last inserted char */
8920 dec_cursor();
8921#endif
8922 mincol = 0;
8923 /* keep indent */
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00008924 if (mode == BACKSPACE_LINE
8925 && (curbuf->b_p_ai
8926#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00008927 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00008928#endif
8929 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00008930#ifdef FEAT_RIGHTLEFT
8931 && !revins_on
8932#endif
8933 )
8934 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008935 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008936 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00008937 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008938 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008939 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008940 }
8941
8942 /*
8943 * Handle deleting one 'shiftwidth' or 'softtabstop'.
8944 */
8945 if ( mode == BACKSPACE_CHAR
8946 && ((p_sta && in_indent)
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02008947 || (get_sts_value() != 0
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00008948 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00008949 && (*(ml_get_cursor() - 1) == TAB
8950 || (*(ml_get_cursor() - 1) == ' '
8951 && (!*inserted_space_p
8952 || arrow_used))))))
8953 {
8954 int ts;
8955 colnr_T vcol;
8956 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008957 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008958
8959 *inserted_space_p = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00008960 if (p_sta && in_indent)
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01008961 ts = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008962 else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02008963 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008964 /* Compute the virtual column where we want to be. Since
8965 * 'showbreak' may get in the way, need to get the last column of
8966 * the previous character. */
8967 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008968 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008969 dec_cursor();
8970 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
8971 inc_cursor();
8972 want_vcol = (want_vcol / ts) * ts;
8973
8974 /* delete characters until we are at or before want_vcol */
8975 while (vcol > want_vcol
8976 && (cc = *(ml_get_cursor() - 1), vim_iswhite(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008977 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008978
8979 /* insert extra spaces until we are at want_vcol */
8980 while (vcol < want_vcol)
8981 {
8982 /* Remember the first char we inserted */
8983 if (curwin->w_cursor.lnum == Insstart.lnum
8984 && curwin->w_cursor.col < Insstart.col)
8985 Insstart.col = curwin->w_cursor.col;
8986
8987#ifdef FEAT_VREPLACE
8988 if (State & VREPLACE_FLAG)
8989 ins_char(' ');
8990 else
8991#endif
8992 {
8993 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008994 if ((State & REPLACE_FLAG))
8995 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008996 }
8997 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
8998 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008999
9000 /* If we are now back where we started delete one character. Can
9001 * happen when using 'sts' and 'linebreak'. */
9002 if (vcol >= start_vcol)
9003 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009004 }
9005
9006 /*
9007 * Delete upto starting point, start of line or previous word.
9008 */
9009 else do
9010 {
9011#ifdef FEAT_RIGHTLEFT
9012 if (!revins_on) /* put cursor on char to be deleted */
9013#endif
9014 dec_cursor();
9015
9016 /* start of word? */
9017 if (mode == BACKSPACE_WORD && !vim_isspace(gchar_cursor()))
9018 {
9019 mode = BACKSPACE_WORD_NOT_SPACE;
9020 temp = vim_iswordc(gchar_cursor());
9021 }
9022 /* end of word? */
9023 else if (mode == BACKSPACE_WORD_NOT_SPACE
9024 && (vim_isspace(cc = gchar_cursor())
9025 || vim_iswordc(cc) != temp))
9026 {
9027#ifdef FEAT_RIGHTLEFT
9028 if (!revins_on)
9029#endif
9030 inc_cursor();
9031#ifdef FEAT_RIGHTLEFT
9032 else if (State & REPLACE_FLAG)
9033 dec_cursor();
9034#endif
9035 break;
9036 }
9037 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00009038 replace_do_bs(-1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009039 else
9040 {
9041#ifdef FEAT_MBYTE
9042 if (enc_utf8 && p_deco)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00009043 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009044#endif
9045 (void)del_char(FALSE);
9046#ifdef FEAT_MBYTE
9047 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00009048 * If there are combining characters and 'delcombine' is set
9049 * move the cursor back. Don't back up before the base
Bram Moolenaar071d4272004-06-13 20:20:40 +00009050 * character.
9051 */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00009052 if (enc_utf8 && p_deco && cpc[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009053 inc_cursor();
9054#endif
9055#ifdef FEAT_RIGHTLEFT
9056 if (revins_chars)
9057 {
9058 revins_chars--;
9059 revins_legal++;
9060 }
9061 if (revins_on && gchar_cursor() == NUL)
9062 break;
9063#endif
9064 }
9065 /* Just a single backspace?: */
9066 if (mode == BACKSPACE_CHAR)
9067 break;
9068 } while (
9069#ifdef FEAT_RIGHTLEFT
9070 revins_on ||
9071#endif
9072 (curwin->w_cursor.col > mincol
9073 && (curwin->w_cursor.lnum != Insstart.lnum
9074 || curwin->w_cursor.col != Insstart.col)));
9075 did_backspace = TRUE;
9076 }
9077#ifdef FEAT_SMARTINDENT
9078 did_si = FALSE;
9079 can_si = FALSE;
9080 can_si_back = FALSE;
9081#endif
9082 if (curwin->w_cursor.col <= 1)
9083 did_ai = FALSE;
9084 /*
9085 * It's a little strange to put backspaces into the redo
9086 * buffer, but it makes auto-indent a lot easier to deal
9087 * with.
9088 */
9089 AppendCharToRedobuff(c);
9090
9091 /* If deleted before the insertion point, adjust it */
9092 if (curwin->w_cursor.lnum == Insstart.lnum
9093 && curwin->w_cursor.col < Insstart.col)
9094 Insstart.col = curwin->w_cursor.col;
9095
9096 /* vi behaviour: the cursor moves backward but the character that
9097 * was there remains visible
9098 * Vim behaviour: the cursor moves backward and the character that
9099 * was there is erased from the screen.
9100 * We can emulate the vi behaviour by pretending there is a dollar
9101 * displayed even when there isn't.
9102 * --pkv Sun Jan 19 01:56:40 EST 2003 */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01009103 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009104 dollar_vcol = curwin->w_virtcol;
9105
Bram Moolenaarce3be472008-01-14 19:12:28 +00009106#ifdef FEAT_FOLDING
9107 /* When deleting a char the cursor line must never be in a closed fold.
9108 * E.g., when 'foldmethod' is indent and deleting the first non-white
9109 * char before a Tab. */
9110 if (did_backspace)
9111 foldOpenCursor();
9112#endif
9113
Bram Moolenaar071d4272004-06-13 20:20:40 +00009114 return did_backspace;
9115}
9116
9117#ifdef FEAT_MOUSE
9118 static void
9119ins_mouse(c)
9120 int c;
9121{
9122 pos_T tpos;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009123 win_T *old_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009124
9125# ifdef FEAT_GUI
9126 /* When GUI is active, also move/paste when 'mouse' is empty */
9127 if (!gui.in_use)
9128# endif
9129 if (!mouse_has(MOUSE_INSERT))
9130 return;
9131
9132 undisplay_dollar();
9133 tpos = curwin->w_cursor;
9134 if (do_mouse(NULL, c, BACKWARD, 1L, 0))
9135 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009136#ifdef FEAT_WINDOWS
9137 win_T *new_curwin = curwin;
9138
9139 if (curwin != old_curwin && win_valid(old_curwin))
9140 {
9141 /* Mouse took us to another window. We need to go back to the
9142 * previous one to stop insert there properly. */
9143 curwin = old_curwin;
9144 curbuf = curwin->w_buffer;
9145 }
9146#endif
9147 start_arrow(curwin == old_curwin ? &tpos : NULL);
9148#ifdef FEAT_WINDOWS
9149 if (curwin != new_curwin && win_valid(new_curwin))
9150 {
9151 curwin = new_curwin;
9152 curbuf = curwin->w_buffer;
9153 }
9154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009155# ifdef FEAT_CINDENT
9156 can_cindent = TRUE;
9157# endif
9158 }
9159
9160#ifdef FEAT_WINDOWS
9161 /* redraw status lines (in case another window became active) */
9162 redraw_statuslines();
9163#endif
9164}
9165
9166 static void
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009167ins_mousescroll(dir)
9168 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009169{
9170 pos_T tpos;
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009171# if defined(FEAT_WINDOWS)
9172 win_T *old_curwin = curwin;
9173# endif
9174# ifdef FEAT_INS_EXPAND
9175 int did_scroll = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009176# endif
9177
9178 tpos = curwin->w_cursor;
9179
Bram Moolenaar40cf4b42013-02-26 13:30:32 +01009180# ifdef FEAT_WINDOWS
9181 if (mouse_row >= 0 && mouse_col >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009182 {
9183 int row, col;
9184
9185 row = mouse_row;
9186 col = mouse_col;
9187
9188 /* find the window at the pointer coordinates */
9189 curwin = mouse_find_win(&row, &col);
9190 curbuf = curwin->w_buffer;
9191 }
9192 if (curwin == old_curwin)
9193# endif
9194 undisplay_dollar();
9195
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009196# ifdef FEAT_INS_EXPAND
9197 /* Don't scroll the window in which completion is being done. */
9198 if (!pum_visible()
9199# if defined(FEAT_WINDOWS)
9200 || curwin != old_curwin
9201# endif
9202 )
9203# endif
9204 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009205 if (dir == MSCR_DOWN || dir == MSCR_UP)
9206 {
9207 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
9208 scroll_redraw(dir,
9209 (long)(curwin->w_botline - curwin->w_topline));
9210 else
9211 scroll_redraw(dir, 3L);
9212 }
9213#ifdef FEAT_GUI
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009214 else
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009215 {
9216 int val, step = 6;
9217
9218 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
9219 step = W_WIDTH(curwin);
9220 val = curwin->w_leftcol + (dir == MSCR_RIGHT ? -step : step);
9221 if (val < 0)
9222 val = 0;
9223 gui_do_horiz_scroll(val, TRUE);
9224 }
9225#endif
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009226# ifdef FEAT_INS_EXPAND
9227 did_scroll = TRUE;
9228# endif
9229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009230
Bram Moolenaar40cf4b42013-02-26 13:30:32 +01009231# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00009232 curwin->w_redr_status = TRUE;
9233
9234 curwin = old_curwin;
9235 curbuf = curwin->w_buffer;
9236# endif
9237
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009238# ifdef FEAT_INS_EXPAND
9239 /* The popup menu may overlay the window, need to redraw it.
9240 * TODO: Would be more efficient to only redraw the windows that are
9241 * overlapped by the popup menu. */
9242 if (pum_visible() && did_scroll)
9243 {
9244 redraw_all_later(NOT_VALID);
9245 ins_compl_show_pum();
9246 }
9247# endif
9248
Bram Moolenaar071d4272004-06-13 20:20:40 +00009249 if (!equalpos(curwin->w_cursor, tpos))
9250 {
9251 start_arrow(&tpos);
9252# ifdef FEAT_CINDENT
9253 can_cindent = TRUE;
9254# endif
9255 }
9256}
9257#endif
9258
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009259#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00009260 static void
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009261ins_tabline(c)
9262 int c;
9263{
9264 /* We will be leaving the current window, unless closing another tab. */
9265 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
9266 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
9267 {
9268 undisplay_dollar();
9269 start_arrow(&curwin->w_cursor);
9270# ifdef FEAT_CINDENT
9271 can_cindent = TRUE;
9272# endif
9273 }
9274
9275 if (c == K_TABLINE)
9276 goto_tabpage(current_tab);
9277 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009278 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009279 handle_tabmenu();
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009280 redraw_statuslines(); /* will redraw the tabline when needed */
9281 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009282}
9283#endif
9284
9285#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009286 void
9287ins_scroll()
9288{
9289 pos_T tpos;
9290
9291 undisplay_dollar();
9292 tpos = curwin->w_cursor;
9293 if (gui_do_scroll())
9294 {
9295 start_arrow(&tpos);
9296# ifdef FEAT_CINDENT
9297 can_cindent = TRUE;
9298# endif
9299 }
9300}
9301
9302 void
9303ins_horscroll()
9304{
9305 pos_T tpos;
9306
9307 undisplay_dollar();
9308 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009309 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009310 {
9311 start_arrow(&tpos);
9312# ifdef FEAT_CINDENT
9313 can_cindent = TRUE;
9314# endif
9315 }
9316}
9317#endif
9318
9319 static void
9320ins_left()
9321{
9322 pos_T tpos;
9323
9324#ifdef FEAT_FOLDING
9325 if ((fdo_flags & FDO_HOR) && KeyTyped)
9326 foldOpenCursor();
9327#endif
9328 undisplay_dollar();
9329 tpos = curwin->w_cursor;
9330 if (oneleft() == OK)
9331 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00009332#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
9333 /* Only call start_arrow() when not busy with preediting, it will
9334 * break undo. K_LEFT is inserted in im_correct_cursor(). */
9335 if (!im_is_preediting())
9336#endif
9337 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009338#ifdef FEAT_RIGHTLEFT
9339 /* If exit reversed string, position is fixed */
9340 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
9341 revins_legal++;
9342 revins_chars++;
9343#endif
9344 }
9345
9346 /*
9347 * if 'whichwrap' set for cursor in insert mode may go to
9348 * previous line
9349 */
9350 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
9351 {
9352 start_arrow(&tpos);
9353 --(curwin->w_cursor.lnum);
9354 coladvance((colnr_T)MAXCOL);
9355 curwin->w_set_curswant = TRUE; /* so we stay at the end */
9356 }
9357 else
9358 vim_beep();
9359}
9360
9361 static void
9362ins_home(c)
9363 int c;
9364{
9365 pos_T tpos;
9366
9367#ifdef FEAT_FOLDING
9368 if ((fdo_flags & FDO_HOR) && KeyTyped)
9369 foldOpenCursor();
9370#endif
9371 undisplay_dollar();
9372 tpos = curwin->w_cursor;
9373 if (c == K_C_HOME)
9374 curwin->w_cursor.lnum = 1;
9375 curwin->w_cursor.col = 0;
9376#ifdef FEAT_VIRTUALEDIT
9377 curwin->w_cursor.coladd = 0;
9378#endif
9379 curwin->w_curswant = 0;
9380 start_arrow(&tpos);
9381}
9382
9383 static void
9384ins_end(c)
9385 int c;
9386{
9387 pos_T tpos;
9388
9389#ifdef FEAT_FOLDING
9390 if ((fdo_flags & FDO_HOR) && KeyTyped)
9391 foldOpenCursor();
9392#endif
9393 undisplay_dollar();
9394 tpos = curwin->w_cursor;
9395 if (c == K_C_END)
9396 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9397 coladvance((colnr_T)MAXCOL);
9398 curwin->w_curswant = MAXCOL;
9399
9400 start_arrow(&tpos);
9401}
9402
9403 static void
9404ins_s_left()
9405{
9406#ifdef FEAT_FOLDING
9407 if ((fdo_flags & FDO_HOR) && KeyTyped)
9408 foldOpenCursor();
9409#endif
9410 undisplay_dollar();
9411 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
9412 {
9413 start_arrow(&curwin->w_cursor);
9414 (void)bck_word(1L, FALSE, FALSE);
9415 curwin->w_set_curswant = TRUE;
9416 }
9417 else
9418 vim_beep();
9419}
9420
9421 static void
9422ins_right()
9423{
9424#ifdef FEAT_FOLDING
9425 if ((fdo_flags & FDO_HOR) && KeyTyped)
9426 foldOpenCursor();
9427#endif
9428 undisplay_dollar();
Bram Moolenaar78a15312009-05-15 19:33:18 +00009429 if (gchar_cursor() != NUL
9430#ifdef FEAT_VIRTUALEDIT
9431 || virtual_active()
9432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009433 )
9434 {
9435 start_arrow(&curwin->w_cursor);
9436 curwin->w_set_curswant = TRUE;
9437#ifdef FEAT_VIRTUALEDIT
9438 if (virtual_active())
9439 oneright();
9440 else
9441#endif
9442 {
9443#ifdef FEAT_MBYTE
9444 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009445 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00009446 else
9447#endif
9448 ++curwin->w_cursor.col;
9449 }
9450
9451#ifdef FEAT_RIGHTLEFT
9452 revins_legal++;
9453 if (revins_chars)
9454 revins_chars--;
9455#endif
9456 }
9457 /* if 'whichwrap' set for cursor in insert mode, may move the
9458 * cursor to the next line */
9459 else if (vim_strchr(p_ww, ']') != NULL
9460 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
9461 {
9462 start_arrow(&curwin->w_cursor);
9463 curwin->w_set_curswant = TRUE;
9464 ++curwin->w_cursor.lnum;
9465 curwin->w_cursor.col = 0;
9466 }
9467 else
9468 vim_beep();
9469}
9470
9471 static void
9472ins_s_right()
9473{
9474#ifdef FEAT_FOLDING
9475 if ((fdo_flags & FDO_HOR) && KeyTyped)
9476 foldOpenCursor();
9477#endif
9478 undisplay_dollar();
9479 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
9480 || gchar_cursor() != NUL)
9481 {
9482 start_arrow(&curwin->w_cursor);
9483 (void)fwd_word(1L, FALSE, 0);
9484 curwin->w_set_curswant = TRUE;
9485 }
9486 else
9487 vim_beep();
9488}
9489
9490 static void
9491ins_up(startcol)
9492 int startcol; /* when TRUE move to Insstart.col */
9493{
9494 pos_T tpos;
9495 linenr_T old_topline = curwin->w_topline;
9496#ifdef FEAT_DIFF
9497 int old_topfill = curwin->w_topfill;
9498#endif
9499
9500 undisplay_dollar();
9501 tpos = curwin->w_cursor;
9502 if (cursor_up(1L, TRUE) == OK)
9503 {
9504 if (startcol)
9505 coladvance(getvcol_nolist(&Insstart));
9506 if (old_topline != curwin->w_topline
9507#ifdef FEAT_DIFF
9508 || old_topfill != curwin->w_topfill
9509#endif
9510 )
9511 redraw_later(VALID);
9512 start_arrow(&tpos);
9513#ifdef FEAT_CINDENT
9514 can_cindent = TRUE;
9515#endif
9516 }
9517 else
9518 vim_beep();
9519}
9520
9521 static void
9522ins_pageup()
9523{
9524 pos_T tpos;
9525
9526 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009527
9528#ifdef FEAT_WINDOWS
9529 if (mod_mask & MOD_MASK_CTRL)
9530 {
9531 /* <C-PageUp>: tab page back */
Bram Moolenaarbc444822006-10-17 11:37:50 +00009532 if (first_tabpage->tp_next != NULL)
9533 {
9534 start_arrow(&curwin->w_cursor);
9535 goto_tabpage(-1);
9536 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009537 return;
9538 }
9539#endif
9540
Bram Moolenaar071d4272004-06-13 20:20:40 +00009541 tpos = curwin->w_cursor;
9542 if (onepage(BACKWARD, 1L) == OK)
9543 {
9544 start_arrow(&tpos);
9545#ifdef FEAT_CINDENT
9546 can_cindent = TRUE;
9547#endif
9548 }
9549 else
9550 vim_beep();
9551}
9552
9553 static void
9554ins_down(startcol)
9555 int startcol; /* when TRUE move to Insstart.col */
9556{
9557 pos_T tpos;
9558 linenr_T old_topline = curwin->w_topline;
9559#ifdef FEAT_DIFF
9560 int old_topfill = curwin->w_topfill;
9561#endif
9562
9563 undisplay_dollar();
9564 tpos = curwin->w_cursor;
9565 if (cursor_down(1L, TRUE) == OK)
9566 {
9567 if (startcol)
9568 coladvance(getvcol_nolist(&Insstart));
9569 if (old_topline != curwin->w_topline
9570#ifdef FEAT_DIFF
9571 || old_topfill != curwin->w_topfill
9572#endif
9573 )
9574 redraw_later(VALID);
9575 start_arrow(&tpos);
9576#ifdef FEAT_CINDENT
9577 can_cindent = TRUE;
9578#endif
9579 }
9580 else
9581 vim_beep();
9582}
9583
9584 static void
9585ins_pagedown()
9586{
9587 pos_T tpos;
9588
9589 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009590
9591#ifdef FEAT_WINDOWS
9592 if (mod_mask & MOD_MASK_CTRL)
9593 {
9594 /* <C-PageDown>: tab page forward */
Bram Moolenaarbc444822006-10-17 11:37:50 +00009595 if (first_tabpage->tp_next != NULL)
9596 {
9597 start_arrow(&curwin->w_cursor);
9598 goto_tabpage(0);
9599 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009600 return;
9601 }
9602#endif
9603
Bram Moolenaar071d4272004-06-13 20:20:40 +00009604 tpos = curwin->w_cursor;
9605 if (onepage(FORWARD, 1L) == OK)
9606 {
9607 start_arrow(&tpos);
9608#ifdef FEAT_CINDENT
9609 can_cindent = TRUE;
9610#endif
9611 }
9612 else
9613 vim_beep();
9614}
9615
9616#ifdef FEAT_DND
9617 static void
9618ins_drop()
9619{
9620 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9621}
9622#endif
9623
9624/*
9625 * Handle TAB in Insert or Replace mode.
9626 * Return TRUE when the TAB needs to be inserted like a normal character.
9627 */
9628 static int
9629ins_tab()
9630{
9631 int ind;
9632 int i;
9633 int temp;
9634
9635 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
9636 Insstart_blank_vcol = get_nolist_virtcol();
9637 if (echeck_abbr(TAB + ABBR_OFF))
9638 return FALSE;
9639
9640 ind = inindent(0);
9641#ifdef FEAT_CINDENT
9642 if (ind)
9643 can_cindent = FALSE;
9644#endif
9645
9646 /*
9647 * When nothing special, insert TAB like a normal character
9648 */
9649 if (!curbuf->b_p_et
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01009650 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02009651 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009652 return TRUE;
9653
9654 if (stop_arrow() == FAIL)
9655 return TRUE;
9656
9657 did_ai = FALSE;
9658#ifdef FEAT_SMARTINDENT
9659 did_si = FALSE;
9660 can_si = FALSE;
9661 can_si_back = FALSE;
9662#endif
9663 AppendToRedobuff((char_u *)"\t");
9664
9665 if (p_sta && ind) /* insert tab in indent, use 'shiftwidth' */
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01009666 temp = (int)get_sw_value(curbuf);
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02009667 else if (curbuf->b_p_sts != 0) /* use 'softtabstop' when set */
9668 temp = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009669 else /* otherwise use 'tabstop' */
9670 temp = (int)curbuf->b_p_ts;
9671 temp -= get_nolist_virtcol() % temp;
9672
9673 /*
9674 * Insert the first space with ins_char(). It will delete one char in
9675 * replace mode. Insert the rest with ins_str(); it will not delete any
9676 * chars. For VREPLACE mode, we use ins_char() for all characters.
9677 */
9678 ins_char(' ');
9679 while (--temp > 0)
9680 {
9681#ifdef FEAT_VREPLACE
9682 if (State & VREPLACE_FLAG)
9683 ins_char(' ');
9684 else
9685#endif
9686 {
9687 ins_str((char_u *)" ");
9688 if (State & REPLACE_FLAG) /* no char replaced */
9689 replace_push(NUL);
9690 }
9691 }
9692
9693 /*
9694 * When 'expandtab' not set: Replace spaces by TABs where possible.
9695 */
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02009696 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009697 {
9698 char_u *ptr;
9699#ifdef FEAT_VREPLACE
9700 char_u *saved_line = NULL; /* init for GCC */
9701 pos_T pos;
9702#endif
9703 pos_T fpos;
9704 pos_T *cursor;
9705 colnr_T want_vcol, vcol;
9706 int change_col = -1;
9707 int save_list = curwin->w_p_list;
9708
9709 /*
9710 * Get the current line. For VREPLACE mode, don't make real changes
9711 * yet, just work on a copy of the line.
9712 */
9713#ifdef FEAT_VREPLACE
9714 if (State & VREPLACE_FLAG)
9715 {
9716 pos = curwin->w_cursor;
9717 cursor = &pos;
9718 saved_line = vim_strsave(ml_get_curline());
9719 if (saved_line == NULL)
9720 return FALSE;
9721 ptr = saved_line + pos.col;
9722 }
9723 else
9724#endif
9725 {
9726 ptr = ml_get_cursor();
9727 cursor = &curwin->w_cursor;
9728 }
9729
9730 /* When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces. */
9731 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
9732 curwin->w_p_list = FALSE;
9733
9734 /* Find first white before the cursor */
9735 fpos = curwin->w_cursor;
9736 while (fpos.col > 0 && vim_iswhite(ptr[-1]))
9737 {
9738 --fpos.col;
9739 --ptr;
9740 }
9741
9742 /* In Replace mode, don't change characters before the insert point. */
9743 if ((State & REPLACE_FLAG)
9744 && fpos.lnum == Insstart.lnum
9745 && fpos.col < Insstart.col)
9746 {
9747 ptr += Insstart.col - fpos.col;
9748 fpos.col = Insstart.col;
9749 }
9750
9751 /* compute virtual column numbers of first white and cursor */
9752 getvcol(curwin, &fpos, &vcol, NULL, NULL);
9753 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
9754
9755 /* Use as many TABs as possible. Beware of 'showbreak' and
9756 * 'linebreak' adding extra virtual columns. */
9757 while (vim_iswhite(*ptr))
9758 {
9759 i = lbr_chartabsize((char_u *)"\t", vcol);
9760 if (vcol + i > want_vcol)
9761 break;
9762 if (*ptr != TAB)
9763 {
9764 *ptr = TAB;
9765 if (change_col < 0)
9766 {
9767 change_col = fpos.col; /* Column of first change */
9768 /* May have to adjust Insstart */
9769 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
9770 Insstart.col = fpos.col;
9771 }
9772 }
9773 ++fpos.col;
9774 ++ptr;
9775 vcol += i;
9776 }
9777
9778 if (change_col >= 0)
9779 {
9780 int repl_off = 0;
9781
9782 /* Skip over the spaces we need. */
9783 while (vcol < want_vcol && *ptr == ' ')
9784 {
9785 vcol += lbr_chartabsize(ptr, vcol);
9786 ++ptr;
9787 ++repl_off;
9788 }
9789 if (vcol > want_vcol)
9790 {
9791 /* Must have a char with 'showbreak' just before it. */
9792 --ptr;
9793 --repl_off;
9794 }
9795 fpos.col += repl_off;
9796
9797 /* Delete following spaces. */
9798 i = cursor->col - fpos.col;
9799 if (i > 0)
9800 {
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00009801 STRMOVE(ptr, ptr + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009802 /* correct replace stack. */
9803 if ((State & REPLACE_FLAG)
9804#ifdef FEAT_VREPLACE
9805 && !(State & VREPLACE_FLAG)
9806#endif
9807 )
9808 for (temp = i; --temp >= 0; )
9809 replace_join(repl_off);
9810 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00009811#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02009812 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00009813 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02009814 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00009815 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
9816 (char_u *)"\t", 1);
9817 }
9818#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009819 cursor->col -= i;
9820
9821#ifdef FEAT_VREPLACE
9822 /*
9823 * In VREPLACE mode, we haven't changed anything yet. Do it now by
9824 * backspacing over the changed spacing and then inserting the new
9825 * spacing.
9826 */
9827 if (State & VREPLACE_FLAG)
9828 {
9829 /* Backspace from real cursor to change_col */
9830 backspace_until_column(change_col);
9831
9832 /* Insert each char in saved_line from changed_col to
9833 * ptr-cursor */
9834 ins_bytes_len(saved_line + change_col,
9835 cursor->col - change_col);
9836 }
9837#endif
9838 }
9839
9840#ifdef FEAT_VREPLACE
9841 if (State & VREPLACE_FLAG)
9842 vim_free(saved_line);
9843#endif
9844 curwin->w_p_list = save_list;
9845 }
9846
9847 return FALSE;
9848}
9849
9850/*
9851 * Handle CR or NL in insert mode.
9852 * Return TRUE when out of memory or can't undo.
9853 */
9854 static int
9855ins_eol(c)
9856 int c;
9857{
9858 int i;
9859
9860 if (echeck_abbr(c + ABBR_OFF))
9861 return FALSE;
9862 if (stop_arrow() == FAIL)
9863 return TRUE;
9864 undisplay_dollar();
9865
9866 /*
9867 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
9868 * character under the cursor. Only push a NUL on the replace stack,
9869 * nothing to put back when the NL is deleted.
9870 */
9871 if ((State & REPLACE_FLAG)
9872#ifdef FEAT_VREPLACE
9873 && !(State & VREPLACE_FLAG)
9874#endif
9875 )
9876 replace_push(NUL);
9877
9878 /*
9879 * In VREPLACE mode, a NL replaces the rest of the line, and starts
9880 * replacing the next line, so we push all of the characters left on the
9881 * line onto the replace stack. This is not done here though, it is done
9882 * in open_line().
9883 */
9884
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009885#ifdef FEAT_VIRTUALEDIT
9886 /* Put cursor on NUL if on the last char and coladd is 1 (happens after
9887 * CTRL-O). */
9888 if (virtual_active() && curwin->w_cursor.coladd > 0)
9889 coladvance(getviscol());
9890#endif
9891
Bram Moolenaar071d4272004-06-13 20:20:40 +00009892#ifdef FEAT_RIGHTLEFT
9893# ifdef FEAT_FKMAP
9894 if (p_altkeymap && p_fkmap)
9895 fkmap(NL);
9896# endif
9897 /* NL in reverse insert will always start in the end of
9898 * current line. */
9899 if (revins_on)
9900 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
9901#endif
9902
9903 AppendToRedobuff(NL_STR);
9904 i = open_line(FORWARD,
9905#ifdef FEAT_COMMENTS
9906 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM :
9907#endif
9908 0, old_indent);
9909 old_indent = 0;
9910#ifdef FEAT_CINDENT
9911 can_cindent = TRUE;
9912#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00009913#ifdef FEAT_FOLDING
9914 /* When inserting a line the cursor line must never be in a closed fold. */
9915 foldOpenCursor();
9916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009917
9918 return (!i);
9919}
9920
9921#ifdef FEAT_DIGRAPHS
9922/*
9923 * Handle digraph in insert mode.
9924 * Returns character still to be inserted, or NUL when nothing remaining to be
9925 * done.
9926 */
9927 static int
9928ins_digraph()
9929{
9930 int c;
9931 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009932 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009933
9934 pc_status = PC_STATUS_UNSET;
9935 if (redrawing() && !char_avail())
9936 {
9937 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00009938 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009939
9940 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009941 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009942#ifdef FEAT_CMDL_INFO
9943 add_to_showcmd_c(Ctrl_K);
9944#endif
9945 }
9946
9947#ifdef USE_ON_FLY_SCROLL
9948 dont_scroll = TRUE; /* disallow scrolling here */
9949#endif
9950
9951 /* don't map the digraph chars. This also prevents the
9952 * mode message to be deleted when ESC is hit */
9953 ++no_mapping;
9954 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00009955 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009956 --no_mapping;
9957 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009958 if (did_putchar)
9959 /* when the line fits in 'columns' the '?' is at the start of the next
9960 * line and will not be removed by the redraw */
9961 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02009962
Bram Moolenaar071d4272004-06-13 20:20:40 +00009963 if (IS_SPECIAL(c) || mod_mask) /* special key */
9964 {
9965#ifdef FEAT_CMDL_INFO
9966 clear_showcmd();
9967#endif
9968 insert_special(c, TRUE, FALSE);
9969 return NUL;
9970 }
9971 if (c != ESC)
9972 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009973 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009974 if (redrawing() && !char_avail())
9975 {
9976 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00009977 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009978
9979 if (char2cells(c) == 1)
9980 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00009981 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009982 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009983 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009984 }
9985#ifdef FEAT_CMDL_INFO
9986 add_to_showcmd_c(c);
9987#endif
9988 }
9989 ++no_mapping;
9990 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00009991 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009992 --no_mapping;
9993 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009994 if (did_putchar)
9995 /* when the line fits in 'columns' the '?' is at the start of the
9996 * next line and will not be removed by a redraw */
9997 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009998 if (cc != ESC)
9999 {
10000 AppendToRedobuff((char_u *)CTRL_V_STR);
10001 c = getdigraph(c, cc, TRUE);
10002#ifdef FEAT_CMDL_INFO
10003 clear_showcmd();
10004#endif
10005 return c;
10006 }
10007 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010008#ifdef FEAT_CMDL_INFO
10009 clear_showcmd();
10010#endif
10011 return NUL;
10012}
10013#endif
10014
10015/*
10016 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
10017 * Returns the char to be inserted, or NUL if none found.
10018 */
Bram Moolenaar8320da42012-04-30 18:18:47 +020010019 int
Bram Moolenaar071d4272004-06-13 20:20:40 +000010020ins_copychar(lnum)
10021 linenr_T lnum;
10022{
10023 int c;
10024 int temp;
10025 char_u *ptr, *prev_ptr;
10026
10027 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
10028 {
10029 vim_beep();
10030 return NUL;
10031 }
10032
10033 /* try to advance to the cursor column */
10034 temp = 0;
10035 ptr = ml_get(lnum);
10036 prev_ptr = ptr;
10037 validate_virtcol();
10038 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
10039 {
10040 prev_ptr = ptr;
10041 temp += lbr_chartabsize_adv(&ptr, (colnr_T)temp);
10042 }
10043 if ((colnr_T)temp > curwin->w_virtcol)
10044 ptr = prev_ptr;
10045
10046#ifdef FEAT_MBYTE
10047 c = (*mb_ptr2char)(ptr);
10048#else
10049 c = *ptr;
10050#endif
10051 if (c == NUL)
10052 vim_beep();
10053 return c;
10054}
10055
Bram Moolenaar4be06f92005-07-29 22:36:03 +000010056/*
10057 * CTRL-Y or CTRL-E typed in Insert mode.
10058 */
10059 static int
10060ins_ctrl_ey(tc)
10061 int tc;
10062{
10063 int c = tc;
10064
10065#ifdef FEAT_INS_EXPAND
10066 if (ctrl_x_mode == CTRL_X_SCROLL)
10067 {
10068 if (c == Ctrl_Y)
10069 scrolldown_clamp();
10070 else
10071 scrollup_clamp();
10072 redraw_later(VALID);
10073 }
10074 else
10075#endif
10076 {
10077 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
10078 if (c != NUL)
10079 {
10080 long tw_save;
10081
10082 /* The character must be taken literally, insert like it
10083 * was typed after a CTRL-V, and pretend 'textwidth'
10084 * wasn't set. Digits, 'o' and 'x' are special after a
10085 * CTRL-V, don't use it for these. */
10086 if (c < 256 && !isalnum(c))
10087 AppendToRedobuff((char_u *)CTRL_V_STR); /* CTRL-V */
10088 tw_save = curbuf->b_p_tw;
10089 curbuf->b_p_tw = -1;
10090 insert_special(c, TRUE, FALSE);
10091 curbuf->b_p_tw = tw_save;
10092#ifdef FEAT_RIGHTLEFT
10093 revins_chars++;
10094 revins_legal++;
10095#endif
10096 c = Ctrl_V; /* pretend CTRL-V is last character */
10097 auto_format(FALSE, TRUE);
10098 }
10099 }
10100 return c;
10101}
10102
Bram Moolenaar071d4272004-06-13 20:20:40 +000010103#ifdef FEAT_SMARTINDENT
10104/*
10105 * Try to do some very smart auto-indenting.
10106 * Used when inserting a "normal" character.
10107 */
10108 static void
10109ins_try_si(c)
10110 int c;
10111{
10112 pos_T *pos, old_pos;
10113 char_u *ptr;
10114 int i;
10115 int temp;
10116
10117 /*
10118 * do some very smart indenting when entering '{' or '}'
10119 */
10120 if (((did_si || can_si_back) && c == '{') || (can_si && c == '}'))
10121 {
10122 /*
10123 * for '}' set indent equal to indent of line containing matching '{'
10124 */
10125 if (c == '}' && (pos = findmatch(NULL, '{')) != NULL)
10126 {
10127 old_pos = curwin->w_cursor;
10128 /*
10129 * If the matching '{' has a ')' immediately before it (ignoring
10130 * white-space), then line up with the start of the line
10131 * containing the matching '(' if there is one. This handles the
10132 * case where an "if (..\n..) {" statement continues over multiple
10133 * lines -- webb
10134 */
10135 ptr = ml_get(pos->lnum);
10136 i = pos->col;
10137 if (i > 0) /* skip blanks before '{' */
10138 while (--i > 0 && vim_iswhite(ptr[i]))
10139 ;
10140 curwin->w_cursor.lnum = pos->lnum;
10141 curwin->w_cursor.col = i;
10142 if (ptr[i] == ')' && (pos = findmatch(NULL, '(')) != NULL)
10143 curwin->w_cursor = *pos;
10144 i = get_indent();
10145 curwin->w_cursor = old_pos;
10146#ifdef FEAT_VREPLACE
10147 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +000010148 change_indent(INDENT_SET, i, FALSE, NUL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010149 else
10150#endif
10151 (void)set_indent(i, SIN_CHANGED);
10152 }
10153 else if (curwin->w_cursor.col > 0)
10154 {
10155 /*
10156 * when inserting '{' after "O" reduce indent, but not
10157 * more than indent of previous line
10158 */
10159 temp = TRUE;
10160 if (c == '{' && can_si_back && curwin->w_cursor.lnum > 1)
10161 {
10162 old_pos = curwin->w_cursor;
10163 i = get_indent();
10164 while (curwin->w_cursor.lnum > 1)
10165 {
10166 ptr = skipwhite(ml_get(--(curwin->w_cursor.lnum)));
10167
10168 /* ignore empty lines and lines starting with '#'. */
10169 if (*ptr != '#' && *ptr != NUL)
10170 break;
10171 }
10172 if (get_indent() >= i)
10173 temp = FALSE;
10174 curwin->w_cursor = old_pos;
10175 }
10176 if (temp)
Bram Moolenaar21b17e72008-01-16 19:03:13 +000010177 shift_line(TRUE, FALSE, 1, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010178 }
10179 }
10180
10181 /*
10182 * set indent of '#' always to 0
10183 */
10184 if (curwin->w_cursor.col > 0 && can_si && c == '#')
10185 {
10186 /* remember current indent for next line */
10187 old_indent = get_indent();
10188 (void)set_indent(0, SIN_CHANGED);
10189 }
10190
10191 /* Adjust ai_col, the char at this position can be deleted. */
10192 if (ai_col > curwin->w_cursor.col)
10193 ai_col = curwin->w_cursor.col;
10194}
10195#endif
10196
10197/*
10198 * Get the value that w_virtcol would have when 'list' is off.
10199 * Unless 'cpo' contains the 'L' flag.
10200 */
10201 static colnr_T
10202get_nolist_virtcol()
10203{
10204 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
10205 return getvcol_nolist(&curwin->w_cursor);
10206 validate_virtcol();
10207 return curwin->w_virtcol;
10208}
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010209
10210#ifdef FEAT_AUTOCMD
10211/*
10212 * Handle the InsertCharPre autocommand.
10213 * "c" is the character that was typed.
10214 * Return a pointer to allocated memory with the replacement string.
10215 * Return NULL to continue inserting "c".
10216 */
10217 static char_u *
10218do_insert_char_pre(c)
10219 int c;
10220{
Bram Moolenaar704984a2012-06-01 14:57:51 +020010221 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +020010222 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010223
10224 /* Return quickly when there is nothing to do. */
10225 if (!has_insertcharpre())
10226 return NULL;
10227
Bram Moolenaar704984a2012-06-01 14:57:51 +020010228#ifdef FEAT_MBYTE
10229 if (has_mbyte)
10230 buf[(*mb_char2bytes)(c, buf)] = NUL;
10231 else
10232#endif
10233 {
10234 buf[0] = c;
10235 buf[1] = NUL;
10236 }
10237
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010238 /* Lock the text to avoid weird things from happening. */
10239 ++textlock;
Bram Moolenaar704984a2012-06-01 14:57:51 +020010240 set_vim_var_string(VV_CHAR, buf, -1); /* set v:char */
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010241
Bram Moolenaar704984a2012-06-01 14:57:51 +020010242 res = NULL;
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010243 if (apply_autocmds(EVENT_INSERTCHARPRE, NULL, NULL, FALSE, curbuf))
Bram Moolenaar704984a2012-06-01 14:57:51 +020010244 {
10245 /* Get the value of v:char. It may be empty or more than one
10246 * character. Only use it when changed, otherwise continue with the
10247 * original character to avoid breaking autoindent. */
10248 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
10249 res = vim_strsave(get_vim_var_str(VV_CHAR));
10250 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010251
10252 set_vim_var_string(VV_CHAR, NULL, -1); /* clear v:char */
10253 --textlock;
10254
10255 return res;
10256}
10257#endif