blob: 50c1fca6bdef6afd5d0d55207c5506c8c3c040e7 [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 Moolenaar071d4272004-06-13 20:20:40 +0000202static void stop_insert __ARGS((pos_T *end_insert_pos, int esc));
203static 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 Moolenaar1e015462005-09-25 22:16:38 +0000385# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000386 apply_autocmds(EVENT_INSERTENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar3e37fd02013-01-17 15:37:01 +0100387
388 /* Since Insert mode was not started yet a call to check_cursor_col()
389 * may have moved the cursor, especially with the "A" command. */
390 if (curwin->w_cursor.col != save_cursor.col
391 && curwin->w_cursor.lnum == save_cursor.lnum)
392 {
393 int save_state = State;
394
395 curwin->w_cursor = save_cursor;
396 State = INSERT;
397 check_cursor_col();
398 State = save_state;
399 }
Bram Moolenaar843ee412004-06-30 16:16:41 +0000400 }
401#endif
402
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200403#ifdef FEAT_CONCEAL
404 /* Check if the cursor line needs redrawing before changing State. If
405 * 'concealcursor' is "n" it needs to be redrawn without concealing. */
Bram Moolenaar8e469272010-07-28 19:38:16 +0200406 conceal_check_cursur_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200407#endif
408
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409#ifdef FEAT_MOUSE
410 /*
411 * When doing a paste with the middle mouse button, Insstart is set to
412 * where the paste started.
413 */
414 if (where_paste_started.lnum != 0)
415 Insstart = where_paste_started;
416 else
417#endif
418 {
419 Insstart = curwin->w_cursor;
420 if (startln)
421 Insstart.col = 0;
422 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000423 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 Insstart_blank_vcol = MAXCOL;
425 if (!did_ai)
426 ai_col = 0;
427
428 if (cmdchar != NUL && restart_edit == 0)
429 {
430 ResetRedobuff();
431 AppendNumberToRedobuff(count);
432#ifdef FEAT_VREPLACE
433 if (cmdchar == 'V' || cmdchar == 'v')
434 {
435 /* "gR" or "gr" command */
436 AppendCharToRedobuff('g');
437 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
438 }
439 else
440#endif
441 {
442 AppendCharToRedobuff(cmdchar);
443 if (cmdchar == 'g') /* "gI" command */
444 AppendCharToRedobuff('I');
445 else if (cmdchar == 'r') /* "r<CR>" command */
446 count = 1; /* insert only one <CR> */
447 }
448 }
449
450 if (cmdchar == 'R')
451 {
452#ifdef FEAT_FKMAP
453 if (p_fkmap && p_ri)
454 {
455 beep_flush();
456 EMSG(farsi_text_3); /* encoded in Farsi */
457 State = INSERT;
458 }
459 else
460#endif
461 State = REPLACE;
462 }
463#ifdef FEAT_VREPLACE
464 else if (cmdchar == 'V' || cmdchar == 'v')
465 {
466 State = VREPLACE;
467 replaceState = VREPLACE;
468 orig_line_count = curbuf->b_ml.ml_line_count;
469 vr_lines_changed = 1;
470 }
471#endif
472 else
473 State = INSERT;
474
475 stop_insert_mode = FALSE;
476
477 /*
478 * Need to recompute the cursor position, it might move when the cursor is
479 * on a TAB or special character.
480 */
481 curs_columns(TRUE);
482
483 /*
484 * Enable langmap or IME, indicated by 'iminsert'.
485 * Note that IME may enabled/disabled without us noticing here, thus the
486 * 'iminsert' value may not reflect what is actually used. It is updated
487 * when hitting <Esc>.
488 */
489 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
490 State |= LANGMAP;
491#ifdef USE_IM_CONTROL
492 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
493#endif
494
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495#ifdef FEAT_MOUSE
496 setmouse();
497#endif
498#ifdef FEAT_CMDL_INFO
499 clear_showcmd();
500#endif
501#ifdef FEAT_RIGHTLEFT
502 /* there is no reverse replace mode */
503 revins_on = (State == INSERT && p_ri);
504 if (revins_on)
505 undisplay_dollar();
506 revins_chars = 0;
507 revins_legal = 0;
508 revins_scol = -1;
509#endif
510
511 /*
512 * Handle restarting Insert mode.
513 * Don't do this for "CTRL-O ." (repeat an insert): we get here with
514 * restart_edit non-zero, and something in the stuff buffer.
515 */
516 if (restart_edit != 0 && stuff_empty())
517 {
518#ifdef FEAT_MOUSE
519 /*
520 * After a paste we consider text typed to be part of the insert for
521 * the pasted text. You can backspace over the pasted text too.
522 */
523 if (where_paste_started.lnum)
524 arrow_used = FALSE;
525 else
526#endif
527 arrow_used = TRUE;
528 restart_edit = 0;
529
530 /*
531 * If the cursor was after the end-of-line before the CTRL-O and it is
532 * now at the end-of-line, put it after the end-of-line (this is not
533 * correct in very rare cases).
534 * Also do this if curswant is greater than the current virtual
535 * column. Eg after "^O$" or "^O80|".
536 */
537 validate_virtcol();
538 update_curswant();
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000539 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 || curwin->w_curswant > curwin->w_virtcol)
541 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
542 {
543 if (ptr[1] == NUL)
544 ++curwin->w_cursor.col;
545#ifdef FEAT_MBYTE
546 else if (has_mbyte)
547 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000548 i = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 if (ptr[i] == NUL)
550 curwin->w_cursor.col += i;
551 }
552#endif
553 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000554 ins_at_eol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 }
556 else
557 arrow_used = FALSE;
558
559 /* we are in insert mode now, don't need to start it anymore */
560 need_start_insertmode = FALSE;
561
562 /* Need to save the line for undo before inserting the first char. */
563 ins_need_undo = TRUE;
564
565#ifdef FEAT_MOUSE
566 where_paste_started.lnum = 0;
567#endif
568#ifdef FEAT_CINDENT
569 can_cindent = TRUE;
570#endif
571#ifdef FEAT_FOLDING
572 /* The cursor line is not in a closed fold, unless 'insertmode' is set or
573 * restarting. */
574 if (!p_im && did_restart_edit == 0)
575 foldOpenCursor();
576#endif
577
578 /*
579 * If 'showmode' is set, show the current (insert/replace/..) mode.
580 * A warning message for changing a readonly file is given here, before
581 * actually changing anything. It's put after the mode, if any.
582 */
583 i = 0;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000584 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 i = showmode();
586
587 if (!p_im && did_restart_edit == 0)
Bram Moolenaar21af89e2008-01-02 21:09:33 +0000588 change_warning(i == 0 ? 0 : i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589
590#ifdef CURSOR_SHAPE
591 ui_cursor_shape(); /* may show different cursor shape */
592#endif
593#ifdef FEAT_DIGRAPHS
594 do_digraph(-1); /* clear digraphs */
595#endif
596
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000597 /*
598 * Get the current length of the redo buffer, those characters have to be
599 * skipped if we want to get to the inserted characters.
600 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 ptr = get_inserted();
602 if (ptr == NULL)
603 new_insert_skip = 0;
604 else
605 {
606 new_insert_skip = (int)STRLEN(ptr);
607 vim_free(ptr);
608 }
609
610 old_indent = 0;
611
612 /*
613 * Main loop in Insert mode: repeat until Insert mode is left.
614 */
615 for (;;)
616 {
617#ifdef FEAT_RIGHTLEFT
618 if (!revins_legal)
619 revins_scol = -1; /* reset on illegal motions */
620 else
621 revins_legal = 0;
622#endif
623 if (arrow_used) /* don't repeat insert when arrow key used */
624 count = 0;
625
626 if (stop_insert_mode)
627 {
628 /* ":stopinsert" used or 'insertmode' reset */
629 count = 0;
630 goto doESCkey;
631 }
632
633 /* set curwin->w_curswant for next K_DOWN or K_UP */
634 if (!arrow_used)
635 curwin->w_set_curswant = TRUE;
636
637 /* If there is no typeahead may check for timestamps (e.g., for when a
638 * menu invoked a shell command). */
639 if (stuff_empty())
640 {
641 did_check_timestamps = FALSE;
642 if (need_check_timestamps)
643 check_timestamps(FALSE);
644 }
645
646 /*
647 * When emsg() was called msg_scroll will have been set.
648 */
649 msg_scroll = FALSE;
650
651#ifdef FEAT_GUI
652 /* When 'mousefocus' is set a mouse movement may have taken us to
653 * another window. "need_mouse_correct" may then be set because of an
654 * autocommand. */
655 if (need_mouse_correct)
656 gui_mouse_correct();
657#endif
658
659#ifdef FEAT_FOLDING
660 /* Open fold at the cursor line, according to 'foldopen'. */
661 if (fdo_flags & FDO_INSERT)
662 foldOpenCursor();
663 /* Close folds where the cursor isn't, according to 'foldclose' */
664 if (!char_avail())
665 foldCheckClose();
666#endif
667
668 /*
669 * If we inserted a character at the last position of the last line in
670 * the window, scroll the window one line up. This avoids an extra
671 * redraw.
672 * This is detected when the cursor column is smaller after inserting
673 * something.
674 * Don't do this when the topline changed already, it has
675 * already been adjusted (by insertchar() calling open_line())).
676 */
677 if (curbuf->b_mod_set
678 && curwin->w_p_wrap
679 && !did_backspace
680 && curwin->w_topline == old_topline
681#ifdef FEAT_DIFF
682 && curwin->w_topfill == old_topfill
683#endif
684 )
685 {
686 mincol = curwin->w_wcol;
687 validate_cursor_col();
688
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000689 if ((int)curwin->w_wcol < mincol - curbuf->b_p_ts
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 && curwin->w_wrow == W_WINROW(curwin)
691 + curwin->w_height - 1 - p_so
692 && (curwin->w_cursor.lnum != curwin->w_topline
693#ifdef FEAT_DIFF
694 || curwin->w_topfill > 0
695#endif
696 ))
697 {
698#ifdef FEAT_DIFF
699 if (curwin->w_topfill > 0)
700 --curwin->w_topfill;
701 else
702#endif
703#ifdef FEAT_FOLDING
704 if (hasFolding(curwin->w_topline, NULL, &old_topline))
705 set_topline(curwin, old_topline + 1);
706 else
707#endif
708 set_topline(curwin, curwin->w_topline + 1);
709 }
710 }
711
712 /* May need to adjust w_topline to show the cursor. */
713 update_topline();
714
715 did_backspace = FALSE;
716
717 validate_cursor(); /* may set must_redraw */
718
719 /*
720 * Redraw the display when no characters are waiting.
721 * Also shows mode, ruler and positions cursor.
722 */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000723 ins_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724
725#ifdef FEAT_SCROLLBIND
726 if (curwin->w_p_scb)
727 do_check_scrollbind(TRUE);
728#endif
729
Bram Moolenaar860cae12010-06-05 23:22:07 +0200730#ifdef FEAT_CURSORBIND
731 if (curwin->w_p_crb)
732 do_check_cursorbind();
733#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 update_curswant();
735 old_topline = curwin->w_topline;
736#ifdef FEAT_DIFF
737 old_topfill = curwin->w_topfill;
738#endif
739
740#ifdef USE_ON_FLY_SCROLL
741 dont_scroll = FALSE; /* allow scrolling here */
742#endif
743
744 /*
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000745 * Get a character for Insert mode. Ignore K_IGNORE.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 */
747 lastc = c; /* remember previous char for CTRL-D */
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000748 do
749 {
750 c = safe_vgetc();
751 } while (c == K_IGNORE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000753#ifdef FEAT_AUTOCMD
754 /* Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V. */
755 did_cursorhold = TRUE;
756#endif
757
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758#ifdef FEAT_RIGHTLEFT
759 if (p_hkmap && KeyTyped)
760 c = hkmap(c); /* Hebrew mode mapping */
761#endif
762#ifdef FEAT_FKMAP
763 if (p_fkmap && KeyTyped)
764 c = fkmap(c); /* Farsi mode mapping */
765#endif
766
767#ifdef FEAT_INS_EXPAND
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000768 /*
769 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000770 * and the cursor is still in the completed word. Only when there is
771 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000772 */
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000773 if (compl_started
774 && pum_wanted()
775 && curwin->w_cursor.col >= compl_col
776 && (compl_shown_match == NULL
777 || compl_shown_match != compl_shown_match->cp_next))
Bram Moolenaara6557602006-02-04 22:43:20 +0000778 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000779 /* BS: Delete one character from "compl_leader". */
780 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000781 && curwin->w_cursor.col > compl_col
782 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000783 continue;
784
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000785 /* When no match was selected or it was edited. */
786 if (!compl_used_match)
Bram Moolenaara6557602006-02-04 22:43:20 +0000787 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000788 /* CTRL-L: Add one character from the current match to
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000789 * "compl_leader". Except when at the original match and
790 * there is nothing to add, CTRL-L works like CTRL-P then. */
791 if (c == Ctrl_L
792 && (ctrl_x_mode != CTRL_X_WHOLE_LINE
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000793 || (int)STRLEN(compl_shown_match->cp_str)
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000794 > curwin->w_cursor.col - compl_col))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000795 {
796 ins_compl_addfrommatch();
797 continue;
798 }
799
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000800 /* A non-white character that fits in with the current
801 * completion: Add to "compl_leader". */
802 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000803 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +0100804#ifdef FEAT_AUTOCMD
805 /* Trigger InsertCharPre. */
806 char_u *str = do_insert_char_pre(c);
807 char_u *p;
808
809 if (str != NULL)
810 {
811 for (p = str; *p != NUL; mb_ptr_adv(p))
812 ins_compl_addleader(PTR2CHAR(p));
813 vim_free(str);
814 }
815 else
816#endif
817 ins_compl_addleader(c);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000818 continue;
819 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000820
Bram Moolenaar0440ca32006-05-13 13:24:33 +0000821 /* Pressing CTRL-Y selects the current match. When
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000822 * compl_enter_selects is set the Enter key does the same. */
823 if (c == Ctrl_Y || (compl_enter_selects
824 && (c == CAR || c == K_KENTER || c == NL)))
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000825 {
826 ins_compl_delete();
827 ins_compl_insert();
828 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000829 }
830 }
831
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 /* Prepare for or stop CTRL-X mode. This doesn't do completion, but
833 * it does fix up the text when finishing completion. */
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000834 compl_get_longest = FALSE;
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000835 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000836 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837#endif
838
Bram Moolenaar488c6512005-08-11 20:09:58 +0000839 /* CTRL-\ CTRL-N goes to Normal mode,
840 * CTRL-\ CTRL-G goes to mode selected with 'insertmode',
841 * CTRL-\ CTRL-O is like CTRL-O but without moving the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 if (c == Ctrl_BSL)
843 {
844 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000845 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 ++no_mapping;
847 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000848 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 --no_mapping;
850 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000851 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000853 /* it's something else */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 vungetc(c);
855 c = Ctrl_BSL;
856 }
857 else if (c == Ctrl_G && p_im)
858 continue;
859 else
860 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000861 if (c == Ctrl_O)
862 {
863 ins_ctrl_o();
864 ins_at_eol = FALSE; /* cursor keeps its column */
865 nomove = TRUE;
866 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 count = 0;
868 goto doESCkey;
869 }
870 }
871
872#ifdef FEAT_DIGRAPHS
873 c = do_digraph(c);
874#endif
875
876#ifdef FEAT_INS_EXPAND
877 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode == CTRL_X_CMDLINE)
878 goto docomplete;
879#endif
880 if (c == Ctrl_V || c == Ctrl_Q)
881 {
882 ins_ctrl_v();
883 c = Ctrl_V; /* pretend CTRL-V is last typed character */
884 continue;
885 }
886
887#ifdef FEAT_CINDENT
888 if (cindent_on()
889# ifdef FEAT_INS_EXPAND
890 && ctrl_x_mode == 0
891# endif
892 )
893 {
894 /* A key name preceded by a bang means this key is not to be
895 * inserted. Skip ahead to the re-indenting below.
896 * A key name preceded by a star means that indenting has to be
897 * done before inserting the key. */
898 line_is_white = inindent(0);
899 if (in_cinkeys(c, '!', line_is_white))
900 goto force_cindent;
901 if (can_cindent && in_cinkeys(c, '*', line_is_white)
902 && stop_arrow() == OK)
903 do_c_expr_indent();
904 }
905#endif
906
907#ifdef FEAT_RIGHTLEFT
908 if (curwin->w_p_rl)
909 switch (c)
910 {
911 case K_LEFT: c = K_RIGHT; break;
912 case K_S_LEFT: c = K_S_RIGHT; break;
913 case K_C_LEFT: c = K_C_RIGHT; break;
914 case K_RIGHT: c = K_LEFT; break;
915 case K_S_RIGHT: c = K_S_LEFT; break;
916 case K_C_RIGHT: c = K_C_LEFT; break;
917 }
918#endif
919
920#ifdef FEAT_VISUAL
921 /*
922 * If 'keymodel' contains "startsel", may start selection. If it
923 * does, a CTRL-O and c will be stuffed, we need to get these
924 * characters.
925 */
926 if (ins_start_select(c))
927 continue;
928#endif
929
930 /*
931 * The big switch to handle a character in insert mode.
932 */
933 switch (c)
934 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000935 case ESC: /* End input mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 if (echeck_abbr(ESC + ABBR_OFF))
937 break;
938 /*FALLTHROUGH*/
939
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000940 case Ctrl_C: /* End input mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941#ifdef FEAT_CMDWIN
942 if (c == Ctrl_C && cmdwin_type != 0)
943 {
944 /* Close the cmdline window. */
945 cmdwin_result = K_IGNORE;
946 got_int = FALSE; /* don't stop executing autocommands et al. */
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000947 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 goto doESCkey;
949 }
950#endif
951
952#ifdef UNIX
953do_intr:
954#endif
955 /* when 'insertmode' set, and not halfway a mapping, don't leave
956 * Insert mode */
957 if (goto_im())
958 {
959 if (got_int)
960 {
961 (void)vgetc(); /* flush all buffers */
962 got_int = FALSE;
963 }
964 else
965 vim_beep();
966 break;
967 }
968doESCkey:
969 /*
970 * This is the ONLY return from edit()!
971 */
972 /* Always update o_lnum, so that a "CTRL-O ." that adds a line
973 * still puts the cursor back after the inserted text. */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000974 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 o_lnum = curwin->w_cursor.lnum;
976
Bram Moolenaar488c6512005-08-11 20:09:58 +0000977 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +0000978 {
979#ifdef FEAT_AUTOCMD
980 if (cmdchar != 'r' && cmdchar != 'v')
981 apply_autocmds(EVENT_INSERTLEAVE, NULL, NULL,
982 FALSE, curbuf);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +0000983 did_cursorhold = FALSE;
Bram Moolenaar843ee412004-06-30 16:16:41 +0000984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000986 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 continue;
988
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000989 case Ctrl_Z: /* suspend when 'insertmode' set */
990 if (!p_im)
991 goto normalchar; /* insert CTRL-Z as normal char */
992 stuffReadbuff((char_u *)":st\r");
993 c = Ctrl_O;
994 /*FALLTHROUGH*/
995
996 case Ctrl_O: /* execute one command */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000997#ifdef FEAT_COMPL_FUNC
Bram Moolenaarf75a9632005-09-13 21:20:47 +0000998 if (ctrl_x_mode == CTRL_X_OMNI)
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000999 goto docomplete;
1000#endif
1001 if (echeck_abbr(Ctrl_O + ABBR_OFF))
1002 break;
1003 ins_ctrl_o();
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001004
1005#ifdef FEAT_VIRTUALEDIT
1006 /* don't move the cursor left when 'virtualedit' has "onemore". */
1007 if (ve_flags & VE_ONEMORE)
1008 {
1009 ins_at_eol = FALSE;
1010 nomove = TRUE;
1011 }
1012#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001013 count = 0;
1014 goto doESCkey;
1015
Bram Moolenaar572cb562005-08-05 21:35:02 +00001016 case K_INS: /* toggle insert/replace mode */
1017 case K_KINS:
1018 ins_insert(replaceState);
1019 break;
1020
1021 case K_SELECT: /* end of Select mode mapping - ignore */
1022 break;
1023
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001024#ifdef FEAT_SNIFF
1025 case K_SNIFF: /* Sniff command received */
1026 stuffcharReadbuff(K_SNIFF);
1027 goto doESCkey;
1028#endif
1029
1030 case K_HELP: /* Help key works like <ESC> <Help> */
1031 case K_F1:
1032 case K_XF1:
1033 stuffcharReadbuff(K_HELP);
1034 if (p_im)
1035 need_start_insertmode = TRUE;
1036 goto doESCkey;
1037
1038#ifdef FEAT_NETBEANS_INTG
1039 case K_F21: /* NetBeans command */
1040 ++no_mapping; /* don't map the next key hits */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001041 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001042 --no_mapping;
1043 netbeans_keycommand(i);
1044 break;
1045#endif
1046
1047 case K_ZERO: /* Insert the previously inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 case NUL:
1049 case Ctrl_A:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001050 /* For ^@ the trailing ESC will end the insert, unless there is an
1051 * error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
1053 && c != Ctrl_A && !p_im)
1054 goto doESCkey; /* quit insert mode */
1055 inserted_space = FALSE;
1056 break;
1057
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001058 case Ctrl_R: /* insert the contents of a register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 ins_reg();
1060 auto_format(FALSE, TRUE);
1061 inserted_space = FALSE;
1062 break;
1063
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001064 case Ctrl_G: /* commands starting with CTRL-G */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 ins_ctrl_g();
1066 break;
1067
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001068 case Ctrl_HAT: /* switch input mode and/or langmap */
1069 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 break;
1071
1072#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001073 case Ctrl__: /* switch between languages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 if (!p_ari)
1075 goto normalchar;
1076 ins_ctrl_();
1077 break;
1078#endif
1079
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001080 case Ctrl_D: /* Make indent one shiftwidth smaller. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081#if defined(FEAT_INS_EXPAND) && defined(FEAT_FIND_ID)
1082 if (ctrl_x_mode == CTRL_X_PATH_DEFINES)
1083 goto docomplete;
1084#endif
1085 /* FALLTHROUGH */
1086
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001087 case Ctrl_T: /* Make indent one shiftwidth greater. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088# ifdef FEAT_INS_EXPAND
1089 if (c == Ctrl_T && ctrl_x_mode == CTRL_X_THESAURUS)
1090 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001091 if (has_compl_option(FALSE))
1092 goto docomplete;
1093 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 }
1095# endif
1096 ins_shift(c, lastc);
1097 auto_format(FALSE, TRUE);
1098 inserted_space = FALSE;
1099 break;
1100
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001101 case K_DEL: /* delete character under the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 case K_KDEL:
1103 ins_del();
1104 auto_format(FALSE, TRUE);
1105 break;
1106
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001107 case K_BS: /* delete character before the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 case Ctrl_H:
1109 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
1110 auto_format(FALSE, TRUE);
1111 break;
1112
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001113 case Ctrl_W: /* delete word before the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
1115 auto_format(FALSE, TRUE);
1116 break;
1117
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001118 case Ctrl_U: /* delete all inserted text in current line */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001119# ifdef FEAT_COMPL_FUNC
1120 /* CTRL-X CTRL-U completes with 'completefunc'. */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001121 if (ctrl_x_mode == CTRL_X_FUNCTION)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001122 goto docomplete;
1123# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
1125 auto_format(FALSE, TRUE);
1126 inserted_space = FALSE;
1127 break;
1128
1129#ifdef FEAT_MOUSE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001130 case K_LEFTMOUSE: /* mouse keys */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 case K_LEFTMOUSE_NM:
1132 case K_LEFTDRAG:
1133 case K_LEFTRELEASE:
1134 case K_LEFTRELEASE_NM:
1135 case K_MIDDLEMOUSE:
1136 case K_MIDDLEDRAG:
1137 case K_MIDDLERELEASE:
1138 case K_RIGHTMOUSE:
1139 case K_RIGHTDRAG:
1140 case K_RIGHTRELEASE:
1141 case K_X1MOUSE:
1142 case K_X1DRAG:
1143 case K_X1RELEASE:
1144 case K_X2MOUSE:
1145 case K_X2DRAG:
1146 case K_X2RELEASE:
1147 ins_mouse(c);
1148 break;
1149
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001150 case K_MOUSEDOWN: /* Default action for scroll wheel up: scroll up */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001151 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 break;
1153
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001154 case K_MOUSEUP: /* Default action for scroll wheel down: scroll down */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001155 ins_mousescroll(MSCR_UP);
1156 break;
1157
1158 case K_MOUSELEFT: /* Scroll wheel left */
1159 ins_mousescroll(MSCR_LEFT);
1160 break;
1161
1162 case K_MOUSERIGHT: /* Scroll wheel right */
1163 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 break;
1165#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001166#ifdef FEAT_GUI_TABLINE
1167 case K_TABLINE:
1168 case K_TABMENU:
1169 ins_tabline(c);
1170 break;
1171#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001173 case K_IGNORE: /* Something mapped to nothing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 break;
1175
Bram Moolenaar754b5602006-02-09 23:53:20 +00001176#ifdef FEAT_AUTOCMD
1177 case K_CURSORHOLD: /* Didn't type something for a while. */
1178 apply_autocmds(EVENT_CURSORHOLDI, NULL, NULL, FALSE, curbuf);
1179 did_cursorhold = TRUE;
1180 break;
1181#endif
1182
Bram Moolenaar4770d092006-01-12 23:22:24 +00001183#ifdef FEAT_GUI_W32
1184 /* On Win32 ignore <M-F4>, we get it when closing the window was
1185 * cancelled. */
1186 case K_F4:
1187 if (mod_mask != MOD_MASK_ALT)
1188 goto normalchar;
1189 break;
1190#endif
1191
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192#ifdef FEAT_GUI
1193 case K_VER_SCROLLBAR:
1194 ins_scroll();
1195 break;
1196
1197 case K_HOR_SCROLLBAR:
1198 ins_horscroll();
1199 break;
1200#endif
1201
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001202 case K_HOME: /* <Home> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 case K_S_HOME:
1205 case K_C_HOME:
1206 ins_home(c);
1207 break;
1208
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001209 case K_END: /* <End> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 case K_S_END:
1212 case K_C_END:
1213 ins_end(c);
1214 break;
1215
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001216 case K_LEFT: /* <Left> */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001217 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1218 ins_s_left();
1219 else
1220 ins_left();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 break;
1222
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001223 case K_S_LEFT: /* <S-Left> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 case K_C_LEFT:
1225 ins_s_left();
1226 break;
1227
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001228 case K_RIGHT: /* <Right> */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001229 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1230 ins_s_right();
1231 else
1232 ins_right();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 break;
1234
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001235 case K_S_RIGHT: /* <S-Right> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 case K_C_RIGHT:
1237 ins_s_right();
1238 break;
1239
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001240 case K_UP: /* <Up> */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001241#ifdef FEAT_INS_EXPAND
1242 if (pum_visible())
1243 goto docomplete;
1244#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001245 if (mod_mask & MOD_MASK_SHIFT)
1246 ins_pageup();
1247 else
1248 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 break;
1250
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001251 case K_S_UP: /* <S-Up> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 case K_PAGEUP:
1253 case K_KPAGEUP:
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001254#ifdef FEAT_INS_EXPAND
Bram Moolenaare3226be2005-12-18 22:10:00 +00001255 if (pum_visible())
1256 goto docomplete;
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001257#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 ins_pageup();
1259 break;
1260
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001261 case K_DOWN: /* <Down> */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001262#ifdef FEAT_INS_EXPAND
1263 if (pum_visible())
1264 goto docomplete;
1265#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001266 if (mod_mask & MOD_MASK_SHIFT)
1267 ins_pagedown();
1268 else
1269 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 break;
1271
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001272 case K_S_DOWN: /* <S-Down> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 case K_PAGEDOWN:
1274 case K_KPAGEDOWN:
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001275#ifdef FEAT_INS_EXPAND
Bram Moolenaare3226be2005-12-18 22:10:00 +00001276 if (pum_visible())
1277 goto docomplete;
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001278#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 ins_pagedown();
1280 break;
1281
1282#ifdef FEAT_DND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001283 case K_DROP: /* drag-n-drop event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 ins_drop();
1285 break;
1286#endif
1287
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001288 case K_S_TAB: /* When not mapped, use like a normal TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 c = TAB;
1290 /* FALLTHROUGH */
1291
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001292 case TAB: /* TAB or Complete patterns along path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293#if defined(FEAT_INS_EXPAND) && defined(FEAT_FIND_ID)
1294 if (ctrl_x_mode == CTRL_X_PATH_PATTERNS)
1295 goto docomplete;
1296#endif
1297 inserted_space = FALSE;
1298 if (ins_tab())
1299 goto normalchar; /* insert TAB as a normal char */
1300 auto_format(FALSE, TRUE);
1301 break;
1302
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001303 case K_KENTER: /* <Enter> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 c = CAR;
1305 /* FALLTHROUGH */
1306 case CAR:
1307 case NL:
1308#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1309 /* In a quickfix window a <CR> jumps to the error under the
1310 * cursor. */
1311 if (bt_quickfix(curbuf) && c == CAR)
1312 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001313 if (curwin->w_llist_ref == NULL) /* quickfix window */
1314 do_cmdline_cmd((char_u *)".cc");
1315 else /* location list window */
1316 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 break;
1318 }
1319#endif
1320#ifdef FEAT_CMDWIN
1321 if (cmdwin_type != 0)
1322 {
1323 /* Execute the command in the cmdline window. */
1324 cmdwin_result = CAR;
1325 goto doESCkey;
1326 }
1327#endif
1328 if (ins_eol(c) && !p_im)
1329 goto doESCkey; /* out of memory */
1330 auto_format(FALSE, FALSE);
1331 inserted_space = FALSE;
1332 break;
1333
Bram Moolenaar860cae12010-06-05 23:22:07 +02001334#if defined(FEAT_DIGRAPHS) || defined(FEAT_INS_EXPAND)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001335 case Ctrl_K: /* digraph or keyword completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336# ifdef FEAT_INS_EXPAND
1337 if (ctrl_x_mode == CTRL_X_DICTIONARY)
1338 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001339 if (has_compl_option(TRUE))
1340 goto docomplete;
1341 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 }
1343# endif
1344# ifdef FEAT_DIGRAPHS
1345 c = ins_digraph();
1346 if (c == NUL)
1347 break;
1348# endif
1349 goto normalchar;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351
1352#ifdef FEAT_INS_EXPAND
Bram Moolenaar572cb562005-08-05 21:35:02 +00001353 case Ctrl_X: /* Enter CTRL-X mode */
1354 ins_ctrl_x();
1355 break;
1356
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001357 case Ctrl_RSB: /* Tag name completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 if (ctrl_x_mode != CTRL_X_TAGS)
1359 goto normalchar;
1360 goto docomplete;
1361
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001362 case Ctrl_F: /* File name completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 if (ctrl_x_mode != CTRL_X_FILES)
1364 goto normalchar;
1365 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001366
1367 case 's': /* Spelling completion after ^X */
1368 case Ctrl_S:
1369 if (ctrl_x_mode != CTRL_X_SPELL)
1370 goto normalchar;
1371 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372#endif
1373
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001374 case Ctrl_L: /* Whole line completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375#ifdef FEAT_INS_EXPAND
1376 if (ctrl_x_mode != CTRL_X_WHOLE_LINE)
1377#endif
1378 {
1379 /* CTRL-L with 'insertmode' set: Leave Insert mode */
1380 if (p_im)
1381 {
1382 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1383 break;
1384 goto doESCkey;
1385 }
1386 goto normalchar;
1387 }
1388#ifdef FEAT_INS_EXPAND
1389 /* FALLTHROUGH */
1390
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001391 case Ctrl_P: /* Do previous/next pattern completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 case Ctrl_N:
1393 /* if 'complete' is empty then plain ^P is no longer special,
1394 * but it is under other ^X modes */
1395 if (*curbuf->b_p_cpt == NUL
1396 && ctrl_x_mode != 0
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001397 && !(compl_cont_status & CONT_LOCAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 goto normalchar;
1399
1400docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001401 compl_busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 if (ins_complete(c) == FAIL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001403 compl_cont_status = 0;
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001404 compl_busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 break;
1406#endif /* FEAT_INS_EXPAND */
1407
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001408 case Ctrl_Y: /* copy from previous line or scroll down */
1409 case Ctrl_E: /* copy from next line or scroll up */
1410 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 break;
1412
1413 default:
1414#ifdef UNIX
1415 if (c == intr_char) /* special interrupt char */
1416 goto do_intr;
1417#endif
1418
Bram Moolenaare659c952011-05-19 17:25:41 +02001419normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 /*
1421 * Insert a nomal character.
1422 */
Bram Moolenaare659c952011-05-19 17:25:41 +02001423#ifdef FEAT_AUTOCMD
1424 if (!p_paste)
1425 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001426 /* Trigger InsertCharPre. */
1427 char_u *str = do_insert_char_pre(c);
1428 char_u *p;
1429
1430 if (str != NULL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001431 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001432 if (*str != NUL && stop_arrow() != FAIL)
Bram Moolenaare659c952011-05-19 17:25:41 +02001433 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001434 /* Insert the new value of v:char literally. */
1435 for (p = str; *p != NUL; mb_ptr_adv(p))
Bram Moolenaare659c952011-05-19 17:25:41 +02001436 {
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001437 c = PTR2CHAR(p);
1438 if (c == CAR || c == K_KENTER || c == NL)
1439 ins_eol(c);
1440 else
1441 ins_char(c);
Bram Moolenaare659c952011-05-19 17:25:41 +02001442 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001443 AppendToRedobuffLit(str, -1);
Bram Moolenaare659c952011-05-19 17:25:41 +02001444 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001445 vim_free(str);
1446 c = NUL;
Bram Moolenaare659c952011-05-19 17:25:41 +02001447 }
1448
Bram Moolenaarf5876f12012-02-29 18:22:08 +01001449 /* If the new value is already inserted or an empty string
1450 * then don't insert any character. */
Bram Moolenaare659c952011-05-19 17:25:41 +02001451 if (c == NUL)
1452 break;
1453 }
1454#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455#ifdef FEAT_SMARTINDENT
1456 /* Try to perform smart-indenting. */
1457 ins_try_si(c);
1458#endif
1459
1460 if (c == ' ')
1461 {
1462 inserted_space = TRUE;
1463#ifdef FEAT_CINDENT
1464 if (inindent(0))
1465 can_cindent = FALSE;
1466#endif
1467 if (Insstart_blank_vcol == MAXCOL
1468 && curwin->w_cursor.lnum == Insstart.lnum)
1469 Insstart_blank_vcol = get_nolist_virtcol();
1470 }
1471
Bram Moolenaare0ebfd72012-04-05 16:07:06 +02001472 /* Insert a normal character and check for abbreviations on a
1473 * special character. Let CTRL-] expand abbreviations without
1474 * inserting it. */
1475 if (vim_iswordc(c) || (!echeck_abbr(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476#ifdef FEAT_MBYTE
1477 /* Add ABBR_OFF for characters above 0x100, this is
1478 * what check_abbr() expects. */
1479 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1480#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001481 c) && c != Ctrl_RSB))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 {
1483 insert_special(c, FALSE, FALSE);
1484#ifdef FEAT_RIGHTLEFT
1485 revins_legal++;
1486 revins_chars++;
1487#endif
1488 }
1489
1490 auto_format(FALSE, TRUE);
1491
1492#ifdef FEAT_FOLDING
1493 /* When inserting a character the cursor line must never be in a
1494 * closed fold. */
1495 foldOpenCursor();
1496#endif
1497 break;
1498 } /* end of switch (c) */
1499
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001500#ifdef FEAT_AUTOCMD
1501 /* If typed something may trigger CursorHoldI again. */
1502 if (c != K_CURSORHOLD)
1503 did_cursorhold = FALSE;
1504#endif
1505
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 /* If the cursor was moved we didn't just insert a space */
1507 if (arrow_used)
1508 inserted_space = FALSE;
1509
1510#ifdef FEAT_CINDENT
1511 if (can_cindent && cindent_on()
1512# ifdef FEAT_INS_EXPAND
1513 && ctrl_x_mode == 0
1514# endif
1515 )
1516 {
1517force_cindent:
1518 /*
1519 * Indent now if a key was typed that is in 'cinkeys'.
1520 */
1521 if (in_cinkeys(c, ' ', line_is_white))
1522 {
1523 if (stop_arrow() == OK)
1524 /* re-indent the current line */
1525 do_c_expr_indent();
1526 }
1527 }
1528#endif /* FEAT_CINDENT */
1529
1530 } /* for (;;) */
1531 /* NOTREACHED */
1532}
1533
1534/*
1535 * Redraw for Insert mode.
1536 * This is postponed until getting the next character to make '$' in the 'cpo'
1537 * option work correctly.
1538 * Only redraw when there are no characters available. This speeds up
1539 * inserting sequences of characters (e.g., for CTRL-R).
1540 */
1541 static void
Bram Moolenaar754b5602006-02-09 23:53:20 +00001542ins_redraw(ready)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00001543 int ready UNUSED; /* not busy with something */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001545#ifdef FEAT_CONCEAL
1546 linenr_T conceal_old_cursor_line = 0;
1547 linenr_T conceal_new_cursor_line = 0;
1548 int conceal_update_lines = FALSE;
1549#endif
1550
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 if (!char_avail())
1552 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001553#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001554 /* Trigger CursorMoved if the cursor moved. Not when the popup menu is
1555 * visible, the command might delete it. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001556 if (ready && (
1557# ifdef FEAT_AUTOCMD
1558 has_cursormovedI()
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001559# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001560# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1561 ||
1562# endif
1563# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001564 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001565# endif
1566 )
1567 && !equalpos(last_cursormoved, curwin->w_cursor)
1568# ifdef FEAT_INS_EXPAND
1569 && !pum_visible()
1570# endif
1571 )
Bram Moolenaar754b5602006-02-09 23:53:20 +00001572 {
Bram Moolenaare77c7602008-01-12 17:13:50 +00001573# ifdef FEAT_SYN_HL
1574 /* Need to update the screen first, to make sure syntax
1575 * highlighting is correct after making a change (e.g., inserting
1576 * a "(". The autocommand may also require a redraw, so it's done
1577 * again below, unfortunately. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001578 if (syntax_present(curwin) && must_redraw)
Bram Moolenaare77c7602008-01-12 17:13:50 +00001579 update_screen(0);
1580# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001581# ifdef FEAT_AUTOCMD
1582 if (has_cursormovedI())
1583 apply_autocmds(EVENT_CURSORMOVEDI, NULL, NULL, FALSE, curbuf);
1584# endif
1585# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001586 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001587 {
1588 conceal_old_cursor_line = last_cursormoved.lnum;
1589 conceal_new_cursor_line = curwin->w_cursor.lnum;
1590 conceal_update_lines = TRUE;
1591 }
1592# endif
Bram Moolenaar754b5602006-02-09 23:53:20 +00001593 last_cursormoved = curwin->w_cursor;
1594 }
1595#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 if (must_redraw)
1597 update_screen(0);
1598 else if (clear_cmdline || redraw_cmdline)
1599 showmode(); /* clear cmdline and show mode */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001600# if defined(FEAT_CONCEAL)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001601 if ((conceal_update_lines
1602 && (conceal_old_cursor_line != conceal_new_cursor_line
1603 || conceal_cursor_line(curwin)))
1604 || need_cursor_line_redraw)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001605 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001606 if (conceal_old_cursor_line != conceal_new_cursor_line)
1607 update_single_line(curwin, conceal_old_cursor_line);
1608 update_single_line(curwin, conceal_new_cursor_line == 0
1609 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001610 curwin->w_valid &= ~VALID_CROW;
1611 }
1612# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 showruler(FALSE);
1614 setcursor();
1615 emsg_on_display = FALSE; /* may remove error message now */
1616 }
1617}
1618
1619/*
1620 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1621 */
1622 static void
1623ins_ctrl_v()
1624{
1625 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001626 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627
1628 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00001629 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630
1631 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001632 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001634 did_putchar = TRUE;
1635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 AppendToRedobuff((char_u *)CTRL_V_STR); /* CTRL-V */
1637
1638#ifdef FEAT_CMDL_INFO
1639 add_to_showcmd_c(Ctrl_V);
1640#endif
1641
1642 c = get_literal();
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001643 if (did_putchar)
1644 /* when the line fits in 'columns' the '^' is at the start of the next
1645 * line and will not removed by the redraw */
1646 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647#ifdef FEAT_CMDL_INFO
1648 clear_showcmd();
1649#endif
1650 insert_special(c, FALSE, TRUE);
1651#ifdef FEAT_RIGHTLEFT
1652 revins_chars++;
1653 revins_legal++;
1654#endif
1655}
1656
1657/*
1658 * Put a character directly onto the screen. It's not stored in a buffer.
1659 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1660 */
1661static int pc_status;
1662#define PC_STATUS_UNSET 0 /* pc_bytes was not set */
1663#define PC_STATUS_RIGHT 1 /* right halve of double-wide char */
1664#define PC_STATUS_LEFT 2 /* left halve of double-wide char */
1665#define PC_STATUS_SET 3 /* pc_bytes was filled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666static char_u pc_bytes[MB_MAXBYTES + 1]; /* saved bytes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667static int pc_attr;
1668static int pc_row;
1669static int pc_col;
1670
1671 void
1672edit_putchar(c, highlight)
1673 int c;
1674 int highlight;
1675{
1676 int attr;
1677
1678 if (ScreenLines != NULL)
1679 {
1680 update_topline(); /* just in case w_topline isn't valid */
1681 validate_cursor();
1682 if (highlight)
1683 attr = hl_attr(HLF_8);
1684 else
1685 attr = 0;
1686 pc_row = W_WINROW(curwin) + curwin->w_wrow;
1687 pc_col = W_WINCOL(curwin);
1688#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
1689 pc_status = PC_STATUS_UNSET;
1690#endif
1691#ifdef FEAT_RIGHTLEFT
1692 if (curwin->w_p_rl)
1693 {
1694 pc_col += W_WIDTH(curwin) - 1 - curwin->w_wcol;
1695# ifdef FEAT_MBYTE
1696 if (has_mbyte)
1697 {
1698 int fix_col = mb_fix_col(pc_col, pc_row);
1699
1700 if (fix_col != pc_col)
1701 {
1702 screen_putchar(' ', pc_row, fix_col, attr);
1703 --curwin->w_wcol;
1704 pc_status = PC_STATUS_RIGHT;
1705 }
1706 }
1707# endif
1708 }
1709 else
1710#endif
1711 {
1712 pc_col += curwin->w_wcol;
1713#ifdef FEAT_MBYTE
1714 if (mb_lefthalve(pc_row, pc_col))
1715 pc_status = PC_STATUS_LEFT;
1716#endif
1717 }
1718
1719 /* save the character to be able to put it back */
1720#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
1721 if (pc_status == PC_STATUS_UNSET)
1722#endif
1723 {
1724 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1725 pc_status = PC_STATUS_SET;
1726 }
1727 screen_putchar(c, pc_row, pc_col, attr);
1728 }
1729}
1730
1731/*
1732 * Undo the previous edit_putchar().
1733 */
1734 void
1735edit_unputchar()
1736{
1737 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1738 {
1739#if defined(FEAT_MBYTE)
1740 if (pc_status == PC_STATUS_RIGHT)
1741 ++curwin->w_wcol;
1742 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
1743 redrawWinline(curwin->w_cursor.lnum, FALSE);
1744 else
1745#endif
1746 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1747 }
1748}
1749
1750/*
1751 * Called when p_dollar is set: display a '$' at the end of the changed text
1752 * Only works when cursor is in the line that changes.
1753 */
1754 void
1755display_dollar(col)
1756 colnr_T col;
1757{
1758 colnr_T save_col;
1759
1760 if (!redrawing())
1761 return;
1762
1763 cursor_off();
1764 save_col = curwin->w_cursor.col;
1765 curwin->w_cursor.col = col;
1766#ifdef FEAT_MBYTE
1767 if (has_mbyte)
1768 {
1769 char_u *p;
1770
1771 /* If on the last byte of a multi-byte move to the first byte. */
1772 p = ml_get_curline();
1773 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1774 }
1775#endif
1776 curs_columns(FALSE); /* recompute w_wrow and w_wcol */
1777 if (curwin->w_wcol < W_WIDTH(curwin))
1778 {
1779 edit_putchar('$', FALSE);
1780 dollar_vcol = curwin->w_virtcol;
1781 }
1782 curwin->w_cursor.col = save_col;
1783}
1784
1785/*
1786 * Call this function before moving the cursor from the normal insert position
1787 * in insert mode.
1788 */
1789 static void
1790undisplay_dollar()
1791{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001792 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001794 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 redrawWinline(curwin->w_cursor.lnum, FALSE);
1796 }
1797}
1798
1799/*
1800 * Insert an indent (for <Tab> or CTRL-T) or delete an indent (for CTRL-D).
1801 * Keep the cursor on the same character.
1802 * type == INDENT_INC increase indent (for CTRL-T or <Tab>)
1803 * type == INDENT_DEC decrease indent (for CTRL-D)
1804 * type == INDENT_SET set indent to "amount"
1805 * if round is TRUE, round the indent to 'shiftwidth' (only with _INC and _Dec).
1806 */
1807 void
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001808change_indent(type, amount, round, replaced, call_changed_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 int type;
1810 int amount;
1811 int round;
1812 int replaced; /* replaced character, put on replace stack */
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001813 int call_changed_bytes; /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814{
1815 int vcol;
1816 int last_vcol;
1817 int insstart_less; /* reduction for Insstart.col */
1818 int new_cursor_col;
1819 int i;
1820 char_u *ptr;
1821 int save_p_list;
1822 int start_col;
1823 colnr_T vc;
1824#ifdef FEAT_VREPLACE
1825 colnr_T orig_col = 0; /* init for GCC */
1826 char_u *new_line, *orig_line = NULL; /* init for GCC */
1827
1828 /* VREPLACE mode needs to know what the line was like before changing */
1829 if (State & VREPLACE_FLAG)
1830 {
1831 orig_line = vim_strsave(ml_get_curline()); /* Deal with NULL below */
1832 orig_col = curwin->w_cursor.col;
1833 }
1834#endif
1835
1836 /* for the following tricks we don't want list mode */
1837 save_p_list = curwin->w_p_list;
1838 curwin->w_p_list = FALSE;
1839 vc = getvcol_nolist(&curwin->w_cursor);
1840 vcol = vc;
1841
1842 /*
1843 * For Replace mode we need to fix the replace stack later, which is only
1844 * possible when the cursor is in the indent. Remember the number of
1845 * characters before the cursor if it's possible.
1846 */
1847 start_col = curwin->w_cursor.col;
1848
1849 /* determine offset from first non-blank */
1850 new_cursor_col = curwin->w_cursor.col;
1851 beginline(BL_WHITE);
1852 new_cursor_col -= curwin->w_cursor.col;
1853
1854 insstart_less = curwin->w_cursor.col;
1855
1856 /*
1857 * If the cursor is in the indent, compute how many screen columns the
1858 * cursor is to the left of the first non-blank.
1859 */
1860 if (new_cursor_col < 0)
1861 vcol = get_indent() - vcol;
1862
1863 if (new_cursor_col > 0) /* can't fix replace stack */
1864 start_col = -1;
1865
1866 /*
1867 * Set the new indent. The cursor will be put on the first non-blank.
1868 */
1869 if (type == INDENT_SET)
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001870 (void)set_indent(amount, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 else
1872 {
1873#ifdef FEAT_VREPLACE
1874 int save_State = State;
1875
1876 /* Avoid being called recursively. */
1877 if (State & VREPLACE_FLAG)
1878 State = INSERT;
1879#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001880 shift_line(type == INDENT_DEC, round, 1, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881#ifdef FEAT_VREPLACE
1882 State = save_State;
1883#endif
1884 }
1885 insstart_less -= curwin->w_cursor.col;
1886
1887 /*
1888 * Try to put cursor on same character.
1889 * If the cursor is at or after the first non-blank in the line,
1890 * compute the cursor column relative to the column of the first
1891 * non-blank character.
1892 * If we are not in insert mode, leave the cursor on the first non-blank.
1893 * If the cursor is before the first non-blank, position it relative
1894 * to the first non-blank, counted in screen columns.
1895 */
1896 if (new_cursor_col >= 0)
1897 {
1898 /*
1899 * When changing the indent while the cursor is touching it, reset
1900 * Insstart_col to 0.
1901 */
1902 if (new_cursor_col == 0)
1903 insstart_less = MAXCOL;
1904 new_cursor_col += curwin->w_cursor.col;
1905 }
1906 else if (!(State & INSERT))
1907 new_cursor_col = curwin->w_cursor.col;
1908 else
1909 {
1910 /*
1911 * Compute the screen column where the cursor should be.
1912 */
1913 vcol = get_indent() - vcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001914 curwin->w_virtcol = (colnr_T)((vcol < 0) ? 0 : vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915
1916 /*
1917 * Advance the cursor until we reach the right screen column.
1918 */
1919 vcol = last_vcol = 0;
1920 new_cursor_col = -1;
1921 ptr = ml_get_curline();
1922 while (vcol <= (int)curwin->w_virtcol)
1923 {
1924 last_vcol = vcol;
1925#ifdef FEAT_MBYTE
1926 if (has_mbyte && new_cursor_col >= 0)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001927 new_cursor_col += (*mb_ptr2len)(ptr + new_cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 else
1929#endif
1930 ++new_cursor_col;
1931 vcol += lbr_chartabsize(ptr + new_cursor_col, (colnr_T)vcol);
1932 }
1933 vcol = last_vcol;
1934
1935 /*
1936 * May need to insert spaces to be able to position the cursor on
1937 * the right screen column.
1938 */
1939 if (vcol != (int)curwin->w_virtcol)
1940 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001941 curwin->w_cursor.col = (colnr_T)new_cursor_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 i = (int)curwin->w_virtcol - vcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001943 ptr = alloc((unsigned)(i + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 if (ptr != NULL)
1945 {
1946 new_cursor_col += i;
1947 ptr[i] = NUL;
1948 while (--i >= 0)
1949 ptr[i] = ' ';
1950 ins_str(ptr);
1951 vim_free(ptr);
1952 }
1953 }
1954
1955 /*
1956 * When changing the indent while the cursor is in it, reset
1957 * Insstart_col to 0.
1958 */
1959 insstart_less = MAXCOL;
1960 }
1961
1962 curwin->w_p_list = save_p_list;
1963
1964 if (new_cursor_col <= 0)
1965 curwin->w_cursor.col = 0;
1966 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001967 curwin->w_cursor.col = (colnr_T)new_cursor_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 curwin->w_set_curswant = TRUE;
1969 changed_cline_bef_curs();
1970
1971 /*
1972 * May have to adjust the start of the insert.
1973 */
1974 if (State & INSERT)
1975 {
1976 if (curwin->w_cursor.lnum == Insstart.lnum && Insstart.col != 0)
1977 {
1978 if ((int)Insstart.col <= insstart_less)
1979 Insstart.col = 0;
1980 else
1981 Insstart.col -= insstart_less;
1982 }
1983 if ((int)ai_col <= insstart_less)
1984 ai_col = 0;
1985 else
1986 ai_col -= insstart_less;
1987 }
1988
1989 /*
1990 * For REPLACE mode, may have to fix the replace stack, if it's possible.
1991 * If the number of characters before the cursor decreased, need to pop a
1992 * few characters from the replace stack.
1993 * If the number of characters before the cursor increased, need to push a
1994 * few NULs onto the replace stack.
1995 */
1996 if (REPLACE_NORMAL(State) && start_col >= 0)
1997 {
1998 while (start_col > (int)curwin->w_cursor.col)
1999 {
2000 replace_join(0); /* remove a NUL from the replace stack */
2001 --start_col;
2002 }
2003 while (start_col < (int)curwin->w_cursor.col || replaced)
2004 {
2005 replace_push(NUL);
2006 if (replaced)
2007 {
2008 replace_push(replaced);
2009 replaced = NUL;
2010 }
2011 ++start_col;
2012 }
2013 }
2014
2015#ifdef FEAT_VREPLACE
2016 /*
2017 * For VREPLACE mode, we also have to fix the replace stack. In this case
2018 * it is always possible because we backspace over the whole line and then
2019 * put it back again the way we wanted it.
2020 */
2021 if (State & VREPLACE_FLAG)
2022 {
2023 /* If orig_line didn't allocate, just return. At least we did the job,
2024 * even if you can't backspace. */
2025 if (orig_line == NULL)
2026 return;
2027
2028 /* Save new line */
2029 new_line = vim_strsave(ml_get_curline());
2030 if (new_line == NULL)
2031 return;
2032
2033 /* We only put back the new line up to the cursor */
2034 new_line[curwin->w_cursor.col] = NUL;
2035
2036 /* Put back original line */
2037 ml_replace(curwin->w_cursor.lnum, orig_line, FALSE);
2038 curwin->w_cursor.col = orig_col;
2039
2040 /* Backspace from cursor to start of line */
2041 backspace_until_column(0);
2042
2043 /* Insert new stuff into line again */
2044 ins_bytes(new_line);
2045
2046 vim_free(new_line);
2047 }
2048#endif
2049}
2050
2051/*
2052 * Truncate the space at the end of a line. This is to be used only in an
2053 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
2054 * modes.
2055 */
2056 void
2057truncate_spaces(line)
2058 char_u *line;
2059{
2060 int i;
2061
2062 /* find start of trailing white space */
2063 for (i = (int)STRLEN(line) - 1; i >= 0 && vim_iswhite(line[i]); i--)
2064 {
2065 if (State & REPLACE_FLAG)
2066 replace_join(0); /* remove a NUL from the replace stack */
2067 }
2068 line[i + 1] = NUL;
2069}
2070
2071#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
2072 || defined(FEAT_COMMENTS) || defined(PROTO)
2073/*
2074 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
2075 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002076 * Will attempt not to go before "col" even when there is a composing
2077 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 */
2079 void
2080backspace_until_column(col)
2081 int col;
2082{
2083 while ((int)curwin->w_cursor.col > col)
2084 {
2085 curwin->w_cursor.col--;
2086 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002087 replace_do_bs(col);
2088 else if (!del_char_after_col(col))
2089 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 }
2091}
2092#endif
2093
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002094/*
2095 * Like del_char(), but make sure not to go before column "limit_col".
2096 * Only matters when there are composing characters.
2097 * Return TRUE when something was deleted.
2098 */
2099 static int
2100del_char_after_col(limit_col)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00002101 int limit_col UNUSED;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002102{
2103#ifdef FEAT_MBYTE
2104 if (enc_utf8 && limit_col >= 0)
2105 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002106 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002107
2108 /* Make sure the cursor is at the start of a character, but
2109 * skip forward again when going too far back because of a
2110 * composing character. */
2111 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00002112 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002113 {
2114 int l = utf_ptr2len(ml_get_cursor());
2115
2116 if (l == 0) /* end of line */
2117 break;
2118 curwin->w_cursor.col += l;
2119 }
2120 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
2121 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002122 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002123 }
2124 else
2125#endif
2126 (void)del_char(FALSE);
2127 return TRUE;
2128}
2129
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130#if defined(FEAT_INS_EXPAND) || defined(PROTO)
2131/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002132 * CTRL-X pressed in Insert mode.
2133 */
2134 static void
2135ins_ctrl_x()
2136{
2137 /* CTRL-X after CTRL-X CTRL-V doesn't do anything, so that CTRL-X
2138 * CTRL-V works like CTRL-N */
2139 if (ctrl_x_mode != CTRL_X_CMDLINE)
2140 {
2141 /* if the next ^X<> won't ADD nothing, then reset
2142 * compl_cont_status */
2143 if (compl_cont_status & CONT_N_ADDS)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002144 compl_cont_status |= CONT_INTRPT;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002145 else
2146 compl_cont_status = 0;
2147 /* We're not sure which CTRL-X mode it will be yet */
2148 ctrl_x_mode = CTRL_X_NOT_DEFINED_YET;
2149 edit_submode = (char_u *)_(CTRL_X_MSG(ctrl_x_mode));
2150 edit_submode_pre = NULL;
2151 showmode();
2152 }
2153}
2154
2155/*
2156 * Return TRUE if the 'dict' or 'tsr' option can be used.
2157 */
2158 static int
2159has_compl_option(dict_opt)
2160 int dict_opt;
2161{
Bram Moolenaar0b238792006-03-02 22:49:12 +00002162 if (dict_opt ? (*curbuf->b_p_dict == NUL && *p_dict == NUL
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002163# ifdef FEAT_SPELL
2164 && !curwin->w_p_spell
2165# endif
2166 )
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002167 : (*curbuf->b_p_tsr == NUL && *p_tsr == NUL))
2168 {
2169 ctrl_x_mode = 0;
2170 edit_submode = NULL;
2171 msg_attr(dict_opt ? (char_u *)_("'dictionary' option is empty")
2172 : (char_u *)_("'thesaurus' option is empty"),
2173 hl_attr(HLF_E));
2174 if (emsg_silent == 0)
2175 {
2176 vim_beep();
2177 setcursor();
2178 out_flush();
2179 ui_delay(2000L, FALSE);
2180 }
2181 return FALSE;
2182 }
2183 return TRUE;
2184}
2185
2186/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 * Is the character 'c' a valid key to go to or keep us in CTRL-X mode?
2188 * This depends on the current mode.
2189 */
2190 int
2191vim_is_ctrl_x_key(c)
2192 int c;
2193{
2194 /* Always allow ^R - let it's results then be checked */
2195 if (c == Ctrl_R)
2196 return TRUE;
2197
Bram Moolenaare3226be2005-12-18 22:10:00 +00002198 /* Accept <PageUp> and <PageDown> if the popup menu is visible. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002199 if (ins_compl_pum_key(c))
Bram Moolenaare3226be2005-12-18 22:10:00 +00002200 return TRUE;
2201
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 switch (ctrl_x_mode)
2203 {
2204 case 0: /* Not in any CTRL-X mode */
2205 return (c == Ctrl_N || c == Ctrl_P || c == Ctrl_X);
2206 case CTRL_X_NOT_DEFINED_YET:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002207 return ( c == Ctrl_X || c == Ctrl_Y || c == Ctrl_E
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 || c == Ctrl_L || c == Ctrl_F || c == Ctrl_RSB
2209 || c == Ctrl_I || c == Ctrl_D || c == Ctrl_P
2210 || c == Ctrl_N || c == Ctrl_T || c == Ctrl_V
Bram Moolenaar488c6512005-08-11 20:09:58 +00002211 || c == Ctrl_Q || c == Ctrl_U || c == Ctrl_O
Bram Moolenaarbbd9fd72011-12-23 13:15:03 +01002212 || c == Ctrl_S || c == Ctrl_K || c == 's');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 case CTRL_X_SCROLL:
2214 return (c == Ctrl_Y || c == Ctrl_E);
2215 case CTRL_X_WHOLE_LINE:
2216 return (c == Ctrl_L || c == Ctrl_P || c == Ctrl_N);
2217 case CTRL_X_FILES:
2218 return (c == Ctrl_F || c == Ctrl_P || c == Ctrl_N);
2219 case CTRL_X_DICTIONARY:
2220 return (c == Ctrl_K || c == Ctrl_P || c == Ctrl_N);
2221 case CTRL_X_THESAURUS:
2222 return (c == Ctrl_T || c == Ctrl_P || c == Ctrl_N);
2223 case CTRL_X_TAGS:
2224 return (c == Ctrl_RSB || c == Ctrl_P || c == Ctrl_N);
2225#ifdef FEAT_FIND_ID
2226 case CTRL_X_PATH_PATTERNS:
2227 return (c == Ctrl_P || c == Ctrl_N);
2228 case CTRL_X_PATH_DEFINES:
2229 return (c == Ctrl_D || c == Ctrl_P || c == Ctrl_N);
2230#endif
2231 case CTRL_X_CMDLINE:
2232 return (c == Ctrl_V || c == Ctrl_Q || c == Ctrl_P || c == Ctrl_N
2233 || c == Ctrl_X);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002234#ifdef FEAT_COMPL_FUNC
2235 case CTRL_X_FUNCTION:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002236 return (c == Ctrl_U || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002237 case CTRL_X_OMNI:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002238 return (c == Ctrl_O || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002239#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00002240 case CTRL_X_SPELL:
2241 return (c == Ctrl_S || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 }
2243 EMSG(_(e_internal));
2244 return FALSE;
2245}
2246
2247/*
Bram Moolenaar711d5b52007-10-19 18:40:51 +00002248 * Return TRUE when character "c" is part of the item currently being
2249 * completed. Used to decide whether to abandon complete mode when the menu
2250 * is visible.
2251 */
2252 static int
2253ins_compl_accept_char(c)
2254 int c;
2255{
2256 if (ctrl_x_mode & CTRL_X_WANT_IDENT)
2257 /* When expanding an identifier only accept identifier chars. */
2258 return vim_isIDc(c);
2259
2260 switch (ctrl_x_mode)
2261 {
2262 case CTRL_X_FILES:
2263 /* When expanding file name only accept file name chars. But not
2264 * path separators, so that "proto/<Tab>" expands files in
2265 * "proto", not "proto/" as a whole */
2266 return vim_isfilec(c) && !vim_ispathsep(c);
2267
2268 case CTRL_X_CMDLINE:
2269 case CTRL_X_OMNI:
2270 /* Command line and Omni completion can work with just about any
2271 * printable character, but do stop at white space. */
2272 return vim_isprintc(c) && !vim_iswhite(c);
2273
2274 case CTRL_X_WHOLE_LINE:
2275 /* For while line completion a space can be part of the line. */
2276 return vim_isprintc(c);
2277 }
2278 return vim_iswordc(c);
2279}
2280
2281/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002282 * This is like ins_compl_add(), but if 'ic' and 'inf' are set, then the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 * case of the originally typed text is used, and the case of the completed
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00002284 * text is inferred, ie this tries to work out what case you probably wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 * the rest of the word to be in -- webb
2286 */
2287 int
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002288ins_compl_add_infercase(str, len, icase, fname, dir, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 char_u *str;
2290 int len;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002291 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 char_u *fname;
2293 int dir;
Bram Moolenaar572cb562005-08-05 21:35:02 +00002294 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295{
Bram Moolenaara2993e12007-08-12 14:38:46 +00002296 char_u *p;
2297 int i, c;
2298 int actual_len; /* Take multi-byte characters */
2299 int actual_compl_length; /* into account. */
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002300 int min_len;
Bram Moolenaar97b98102009-11-17 16:41:01 +00002301 int *wca; /* Wide character array. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 int has_lower = FALSE;
2303 int was_letter = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304
Bram Moolenaare40e57c2007-11-08 12:04:26 +00002305 if (p_ic && curbuf->b_p_inf && len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002307 /* Infer case of completed part. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308
Bram Moolenaara2993e12007-08-12 14:38:46 +00002309 /* Find actual length of completion. */
2310#ifdef FEAT_MBYTE
2311 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002313 p = str;
2314 actual_len = 0;
2315 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002317 mb_ptr_adv(p);
2318 ++actual_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 }
2320 }
Bram Moolenaara2993e12007-08-12 14:38:46 +00002321 else
2322#endif
2323 actual_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324
Bram Moolenaara2993e12007-08-12 14:38:46 +00002325 /* Find actual length of original text. */
2326#ifdef FEAT_MBYTE
2327 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002329 p = compl_orig_text;
2330 actual_compl_length = 0;
2331 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002333 mb_ptr_adv(p);
2334 ++actual_compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 }
2336 }
Bram Moolenaara2993e12007-08-12 14:38:46 +00002337 else
2338#endif
2339 actual_compl_length = compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002341 /* "actual_len" may be smaller than "actual_compl_length" when using
2342 * thesaurus, only use the minimum when comparing. */
2343 min_len = actual_len < actual_compl_length
2344 ? actual_len : actual_compl_length;
2345
Bram Moolenaara2993e12007-08-12 14:38:46 +00002346 /* Allocate wide character array for the completion and fill it. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002347 wca = (int *)alloc((unsigned)(actual_len * sizeof(int)));
Bram Moolenaara2993e12007-08-12 14:38:46 +00002348 if (wca != NULL)
2349 {
2350 p = str;
2351 for (i = 0; i < actual_len; ++i)
2352#ifdef FEAT_MBYTE
2353 if (has_mbyte)
2354 wca[i] = mb_ptr2char_adv(&p);
2355 else
2356#endif
2357 wca[i] = *(p++);
2358
2359 /* Rule 1: Were any chars converted to lower? */
2360 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002361 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002362 {
2363#ifdef FEAT_MBYTE
2364 if (has_mbyte)
2365 c = mb_ptr2char_adv(&p);
2366 else
2367#endif
2368 c = *(p++);
2369 if (MB_ISLOWER(c))
2370 {
2371 has_lower = TRUE;
2372 if (MB_ISUPPER(wca[i]))
2373 {
2374 /* Rule 1 is satisfied. */
2375 for (i = actual_compl_length; i < actual_len; ++i)
2376 wca[i] = MB_TOLOWER(wca[i]);
2377 break;
2378 }
2379 }
2380 }
2381
2382 /*
2383 * Rule 2: No lower case, 2nd consecutive letter converted to
2384 * upper case.
2385 */
2386 if (!has_lower)
2387 {
2388 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002389 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002390 {
2391#ifdef FEAT_MBYTE
2392 if (has_mbyte)
2393 c = mb_ptr2char_adv(&p);
2394 else
2395#endif
2396 c = *(p++);
2397 if (was_letter && MB_ISUPPER(c) && MB_ISLOWER(wca[i]))
2398 {
2399 /* Rule 2 is satisfied. */
2400 for (i = actual_compl_length; i < actual_len; ++i)
2401 wca[i] = MB_TOUPPER(wca[i]);
2402 break;
2403 }
2404 was_letter = MB_ISLOWER(c) || MB_ISUPPER(c);
2405 }
2406 }
2407
2408 /* Copy the original case of the part we typed. */
2409 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002410 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002411 {
2412#ifdef FEAT_MBYTE
2413 if (has_mbyte)
2414 c = mb_ptr2char_adv(&p);
2415 else
2416#endif
2417 c = *(p++);
2418 if (MB_ISLOWER(c))
2419 wca[i] = MB_TOLOWER(wca[i]);
2420 else if (MB_ISUPPER(c))
2421 wca[i] = MB_TOUPPER(wca[i]);
2422 }
2423
Bram Moolenaare40e57c2007-11-08 12:04:26 +00002424 /*
Bram Moolenaara2993e12007-08-12 14:38:46 +00002425 * Generate encoding specific output from wide character array.
2426 * Multi-byte characters can occupy up to five bytes more than
2427 * ASCII characters, and we also need one byte for NUL, so stay
2428 * six bytes away from the edge of IObuff.
2429 */
2430 p = IObuff;
2431 i = 0;
2432 while (i < actual_len && (p - IObuff + 6) < IOSIZE)
2433#ifdef FEAT_MBYTE
2434 if (has_mbyte)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00002435 p += (*mb_char2bytes)(wca[i++], p);
Bram Moolenaara2993e12007-08-12 14:38:46 +00002436 else
2437#endif
2438 *(p++) = wca[i++];
2439 *p = NUL;
2440
2441 vim_free(wca);
2442 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002444 return ins_compl_add(IObuff, len, icase, fname, NULL, dir,
2445 flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 }
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002447 return ins_compl_add(str, len, icase, fname, NULL, dir, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448}
2449
2450/*
2451 * Add a match to the list of matches.
2452 * If the given string is already in the list of completions, then return
Bram Moolenaar572cb562005-08-05 21:35:02 +00002453 * NOTDONE, otherwise add it to the list and return OK. If there is an error,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002454 * maybe because alloc() returns NULL, then FAIL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002456 static int
Bram Moolenaar89d40322006-08-29 15:30:07 +00002457ins_compl_add(str, len, icase, fname, cptext, cdir, flags, adup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 char_u *str;
2459 int len;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002460 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 char_u *fname;
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002462 char_u **cptext; /* extra text for popup menu or NULL */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002463 int cdir;
Bram Moolenaar572cb562005-08-05 21:35:02 +00002464 int flags;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002465 int adup; /* accept duplicate match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466{
Bram Moolenaar572cb562005-08-05 21:35:02 +00002467 compl_T *match;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002468 int dir = (cdir == 0 ? compl_direction : cdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469
2470 ui_breakcheck();
2471 if (got_int)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002472 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 if (len < 0)
2474 len = (int)STRLEN(str);
2475
2476 /*
2477 * If the same match is already present, don't add it.
2478 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002479 if (compl_first_match != NULL && !adup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002481 match = compl_first_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 do
2483 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002484 if ( !(match->cp_flags & ORIGINAL_TEXT)
Bram Moolenaar5948a572006-10-03 13:49:29 +00002485 && STRNCMP(match->cp_str, str, len) == 0
Bram Moolenaar572cb562005-08-05 21:35:02 +00002486 && match->cp_str[len] == NUL)
2487 return NOTDONE;
2488 match = match->cp_next;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002489 } while (match != NULL && match != compl_first_match);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 }
2491
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002492 /* Remove any popup menu before changing the list of matches. */
2493 ins_compl_del_pum();
2494
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 /*
2496 * Allocate a new match structure.
2497 * Copy the values to the new match structure.
2498 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002499 match = (compl_T *)alloc_clear((unsigned)sizeof(compl_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 if (match == NULL)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002501 return FAIL;
2502 match->cp_number = -1;
2503 if (flags & ORIGINAL_TEXT)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002504 match->cp_number = 0;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002505 if ((match->cp_str = vim_strnsave(str, len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 {
2507 vim_free(match);
Bram Moolenaar572cb562005-08-05 21:35:02 +00002508 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002510 match->cp_icase = icase;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002511
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 /* match-fname is:
Bram Moolenaar572cb562005-08-05 21:35:02 +00002513 * - compl_curr_match->cp_fname if it is a string equal to fname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 * - a copy of fname, FREE_FNAME is set to free later THE allocated mem.
2515 * - NULL otherwise. --Acevedo */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002516 if (fname != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002517 && compl_curr_match != NULL
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002518 && compl_curr_match->cp_fname != NULL
2519 && STRCMP(fname, compl_curr_match->cp_fname) == 0)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002520 match->cp_fname = compl_curr_match->cp_fname;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002521 else if (fname != NULL)
2522 {
2523 match->cp_fname = vim_strsave(fname);
Bram Moolenaar572cb562005-08-05 21:35:02 +00002524 flags |= FREE_FNAME;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 else
Bram Moolenaar572cb562005-08-05 21:35:02 +00002527 match->cp_fname = NULL;
2528 match->cp_flags = flags;
Bram Moolenaar39f05632006-03-19 22:15:26 +00002529
2530 if (cptext != NULL)
2531 {
2532 int i;
2533
2534 for (i = 0; i < CPT_COUNT; ++i)
2535 if (cptext[i] != NULL && *cptext[i] != NUL)
2536 match->cp_text[i] = vim_strsave(cptext[i]);
2537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538
2539 /*
2540 * Link the new match structure in the list of matches.
2541 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002542 if (compl_first_match == NULL)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002543 match->cp_next = match->cp_prev = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 else if (dir == FORWARD)
2545 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002546 match->cp_next = compl_curr_match->cp_next;
2547 match->cp_prev = compl_curr_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 }
2549 else /* BACKWARD */
2550 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002551 match->cp_next = compl_curr_match;
2552 match->cp_prev = compl_curr_match->cp_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00002554 if (match->cp_next)
2555 match->cp_next->cp_prev = match;
2556 if (match->cp_prev)
2557 match->cp_prev->cp_next = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 else /* if there's nothing before, it is the first match */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002559 compl_first_match = match;
2560 compl_curr_match = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002562 /*
2563 * Find the longest common string if still doing that.
2564 */
2565 if (compl_get_longest && (flags & ORIGINAL_TEXT) == 0)
2566 ins_compl_longest_match(match);
2567
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 return OK;
2569}
2570
2571/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002572 * Return TRUE if "str[len]" matches with match->cp_str, considering
2573 * match->cp_icase.
2574 */
2575 static int
2576ins_compl_equal(match, str, len)
2577 compl_T *match;
2578 char_u *str;
2579 int len;
2580{
2581 if (match->cp_icase)
2582 return STRNICMP(match->cp_str, str, (size_t)len) == 0;
2583 return STRNCMP(match->cp_str, str, (size_t)len) == 0;
2584}
2585
2586/*
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002587 * Reduce the longest common string for match "match".
2588 */
2589 static void
2590ins_compl_longest_match(match)
2591 compl_T *match;
2592{
2593 char_u *p, *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002594 int c1, c2;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002595 int had_match;
2596
2597 if (compl_leader == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002598 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002599 /* First match, use it as a whole. */
2600 compl_leader = vim_strsave(match->cp_str);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002601 if (compl_leader != NULL)
2602 {
2603 had_match = (curwin->w_cursor.col > compl_col);
2604 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002605 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002606 ins_redraw(FALSE);
2607
2608 /* When the match isn't there (to avoid matching itself) remove it
2609 * again after redrawing. */
2610 if (!had_match)
2611 ins_compl_delete();
2612 compl_used_match = FALSE;
2613 }
2614 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002615 else
2616 {
2617 /* Reduce the text if this match differs from compl_leader. */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002618 p = compl_leader;
2619 s = match->cp_str;
2620 while (*p != NUL)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002621 {
2622#ifdef FEAT_MBYTE
2623 if (has_mbyte)
2624 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002625 c1 = mb_ptr2char(p);
2626 c2 = mb_ptr2char(s);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002627 }
2628 else
2629#endif
2630 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002631 c1 = *p;
2632 c2 = *s;
2633 }
2634 if (match->cp_icase ? (MB_TOLOWER(c1) != MB_TOLOWER(c2))
2635 : (c1 != c2))
2636 break;
2637#ifdef FEAT_MBYTE
2638 if (has_mbyte)
2639 {
2640 mb_ptr_adv(p);
2641 mb_ptr_adv(s);
2642 }
2643 else
2644#endif
2645 {
2646 ++p;
2647 ++s;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002648 }
2649 }
2650
2651 if (*p != NUL)
2652 {
2653 /* Leader was shortened, need to change the inserted text. */
2654 *p = NUL;
2655 had_match = (curwin->w_cursor.col > compl_col);
2656 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002657 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002658 ins_redraw(FALSE);
2659
2660 /* When the match isn't there (to avoid matching itself) remove it
2661 * again after redrawing. */
2662 if (!had_match)
2663 ins_compl_delete();
2664 }
2665
2666 compl_used_match = FALSE;
2667 }
2668}
2669
2670/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 * Add an array of matches to the list of matches.
2672 * Frees matches[].
2673 */
2674 static void
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002675ins_compl_add_matches(num_matches, matches, icase)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 int num_matches;
2677 char_u **matches;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002678 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679{
2680 int i;
2681 int add_r = OK;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002682 int dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683
Bram Moolenaar572cb562005-08-05 21:35:02 +00002684 for (i = 0; i < num_matches && add_r != FAIL; i++)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002685 if ((add_r = ins_compl_add(matches[i], -1, icase,
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002686 NULL, NULL, dir, 0, FALSE)) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 /* if dir was BACKWARD then honor it just once */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002688 dir = FORWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 FreeWild(num_matches, matches);
2690}
2691
2692/* Make the completion list cyclic.
2693 * Return the number of matches (excluding the original).
2694 */
2695 static int
2696ins_compl_make_cyclic()
2697{
Bram Moolenaar572cb562005-08-05 21:35:02 +00002698 compl_T *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 int count = 0;
2700
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002701 if (compl_first_match != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 {
2703 /*
2704 * Find the end of the list.
2705 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002706 match = compl_first_match;
2707 /* there's always an entry for the compl_orig_text, it doesn't count. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00002708 while (match->cp_next != NULL && match->cp_next != compl_first_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002710 match = match->cp_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 ++count;
2712 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00002713 match->cp_next = compl_first_match;
2714 compl_first_match->cp_prev = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 }
2716 return count;
2717}
2718
Bram Moolenaara94bc432006-03-10 21:42:59 +00002719/*
2720 * Start completion for the complete() function.
2721 * "startcol" is where the matched text starts (1 is first column).
2722 * "list" is the list of matches.
2723 */
2724 void
2725set_completion(startcol, list)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002726 colnr_T startcol;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002727 list_T *list;
2728{
2729 /* If already doing completions stop it. */
2730 if (ctrl_x_mode != 0)
2731 ins_compl_prep(' ');
2732 ins_compl_clear();
2733
2734 if (stop_arrow() == FAIL)
2735 return;
2736
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01002737 compl_direction = FORWARD;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002738 if (startcol > curwin->w_cursor.col)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002739 startcol = curwin->w_cursor.col;
2740 compl_col = startcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002741 compl_length = (int)curwin->w_cursor.col - (int)startcol;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002742 /* compl_pattern doesn't need to be set */
2743 compl_orig_text = vim_strnsave(ml_get_curline() + compl_col, compl_length);
2744 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
Bram Moolenaare8c3a142006-08-29 14:30:35 +00002745 -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002746 return;
2747
2748 /* Handle like dictionary completion. */
2749 ctrl_x_mode = CTRL_X_WHOLE_LINE;
2750
2751 ins_compl_add_list(list);
2752 compl_matches = ins_compl_make_cyclic();
2753 compl_started = TRUE;
2754 compl_used_match = TRUE;
Bram Moolenaar5495cc92006-08-16 14:23:04 +00002755 compl_cont_status = 0;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002756
2757 compl_curr_match = compl_first_match;
2758 ins_complete(Ctrl_N);
2759 out_flush();
2760}
2761
2762
Bram Moolenaar9372a112005-12-06 19:59:18 +00002763/* "compl_match_array" points the currently displayed list of entries in the
2764 * popup menu. It is NULL when there is no popup menu. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002765static pumitem_T *compl_match_array = NULL;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002766static int compl_match_arraysize;
2767
2768/*
2769 * Update the screen and when there is any scrolling remove the popup menu.
2770 */
2771 static void
2772ins_compl_upd_pum()
2773{
2774 int h;
2775
2776 if (compl_match_array != NULL)
2777 {
2778 h = curwin->w_cline_height;
2779 update_screen(0);
2780 if (h != curwin->w_cline_height)
2781 ins_compl_del_pum();
2782 }
2783}
2784
2785/*
2786 * Remove any popup menu.
2787 */
2788 static void
2789ins_compl_del_pum()
2790{
2791 if (compl_match_array != NULL)
2792 {
2793 pum_undisplay();
2794 vim_free(compl_match_array);
2795 compl_match_array = NULL;
2796 }
2797}
2798
2799/*
2800 * Return TRUE if the popup menu should be displayed.
2801 */
2802 static int
2803pum_wanted()
2804{
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002805 /* 'completeopt' must contain "menu" or "menuone" */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002806 if (vim_strchr(p_cot, 'm') == NULL)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002807 return FALSE;
2808
2809 /* The display looks bad on a B&W display. */
2810 if (t_colors < 8
2811#ifdef FEAT_GUI
2812 && !gui.in_use
2813#endif
2814 )
2815 return FALSE;
Bram Moolenaara6557602006-02-04 22:43:20 +00002816 return TRUE;
2817}
2818
2819/*
2820 * Return TRUE if there are two or more matches to be shown in the popup menu.
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002821 * One if 'completopt' contains "menuone".
Bram Moolenaara6557602006-02-04 22:43:20 +00002822 */
2823 static int
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002824pum_enough_matches()
Bram Moolenaara6557602006-02-04 22:43:20 +00002825{
2826 compl_T *compl;
2827 int i;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002828
2829 /* Don't display the popup menu if there are no matches or there is only
2830 * one (ignoring the original text). */
2831 compl = compl_first_match;
2832 i = 0;
2833 do
2834 {
2835 if (compl == NULL
2836 || ((compl->cp_flags & ORIGINAL_TEXT) == 0 && ++i == 2))
2837 break;
2838 compl = compl->cp_next;
2839 } while (compl != compl_first_match);
2840
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002841 if (strstr((char *)p_cot, "menuone") != NULL)
2842 return (i >= 1);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002843 return (i >= 2);
2844}
2845
2846/*
2847 * Show the popup menu for the list of matches.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002848 * Also adjusts "compl_shown_match" to an entry that is actually displayed.
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002849 */
Bram Moolenaar280f1262006-01-30 00:14:18 +00002850 void
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002851ins_compl_show_pum()
2852{
2853 compl_T *compl;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002854 compl_T *shown_compl = NULL;
2855 int did_find_shown_match = FALSE;
2856 int shown_match_ok = FALSE;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002857 int i;
2858 int cur = -1;
2859 colnr_T col;
Bram Moolenaara6557602006-02-04 22:43:20 +00002860 int lead_len = 0;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002861
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002862 if (!pum_wanted() || !pum_enough_matches())
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002863 return;
2864
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002865#if defined(FEAT_EVAL)
2866 /* Dirty hard-coded hack: remove any matchparen highlighting. */
2867 do_cmdline_cmd((char_u *)"if exists('g:loaded_matchparen')|3match none|endif");
2868#endif
2869
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002870 /* Update the screen before drawing the popup menu over it. */
2871 update_screen(0);
2872
2873 if (compl_match_array == NULL)
2874 {
2875 /* Need to build the popup menu list. */
2876 compl_match_arraysize = 0;
2877 compl = compl_first_match;
Bram Moolenaara6557602006-02-04 22:43:20 +00002878 if (compl_leader != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002879 lead_len = (int)STRLEN(compl_leader);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002880 do
2881 {
Bram Moolenaara6557602006-02-04 22:43:20 +00002882 if ((compl->cp_flags & ORIGINAL_TEXT) == 0
2883 && (compl_leader == NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002884 || ins_compl_equal(compl, compl_leader, lead_len)))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002885 ++compl_match_arraysize;
2886 compl = compl->cp_next;
2887 } while (compl != NULL && compl != compl_first_match);
Bram Moolenaara6557602006-02-04 22:43:20 +00002888 if (compl_match_arraysize == 0)
2889 return;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002890 compl_match_array = (pumitem_T *)alloc_clear(
2891 (unsigned)(sizeof(pumitem_T)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002892 * compl_match_arraysize));
2893 if (compl_match_array != NULL)
2894 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002895 /* If the current match is the original text don't find the first
2896 * match after it, don't highlight anything. */
2897 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
2898 shown_match_ok = TRUE;
2899
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002900 i = 0;
2901 compl = compl_first_match;
2902 do
2903 {
Bram Moolenaara6557602006-02-04 22:43:20 +00002904 if ((compl->cp_flags & ORIGINAL_TEXT) == 0
2905 && (compl_leader == NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002906 || ins_compl_equal(compl, compl_leader, lead_len)))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002907 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002908 if (!shown_match_ok)
2909 {
2910 if (compl == compl_shown_match || did_find_shown_match)
2911 {
2912 /* This item is the shown match or this is the
2913 * first displayed item after the shown match. */
2914 compl_shown_match = compl;
2915 did_find_shown_match = TRUE;
2916 shown_match_ok = TRUE;
2917 }
2918 else
2919 /* Remember this displayed match for when the
2920 * shown match is just below it. */
2921 shown_compl = compl;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002922 cur = i;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002923 }
Bram Moolenaar39f05632006-03-19 22:15:26 +00002924
2925 if (compl->cp_text[CPT_ABBR] != NULL)
2926 compl_match_array[i].pum_text =
2927 compl->cp_text[CPT_ABBR];
2928 else
2929 compl_match_array[i].pum_text = compl->cp_str;
2930 compl_match_array[i].pum_kind = compl->cp_text[CPT_KIND];
2931 compl_match_array[i].pum_info = compl->cp_text[CPT_INFO];
2932 if (compl->cp_text[CPT_MENU] != NULL)
2933 compl_match_array[i++].pum_extra =
2934 compl->cp_text[CPT_MENU];
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002935 else
2936 compl_match_array[i++].pum_extra = compl->cp_fname;
2937 }
2938
2939 if (compl == compl_shown_match)
2940 {
2941 did_find_shown_match = TRUE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002942
2943 /* When the original text is the shown match don't set
2944 * compl_shown_match. */
2945 if (compl->cp_flags & ORIGINAL_TEXT)
2946 shown_match_ok = TRUE;
2947
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002948 if (!shown_match_ok && shown_compl != NULL)
2949 {
2950 /* The shown match isn't displayed, set it to the
2951 * previously displayed match. */
2952 compl_shown_match = shown_compl;
2953 shown_match_ok = TRUE;
2954 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002955 }
2956 compl = compl->cp_next;
2957 } while (compl != NULL && compl != compl_first_match);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002958
2959 if (!shown_match_ok) /* no displayed match at all */
2960 cur = -1;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002961 }
2962 }
2963 else
2964 {
2965 /* popup menu already exists, only need to find the current item.*/
Bram Moolenaara6557602006-02-04 22:43:20 +00002966 for (i = 0; i < compl_match_arraysize; ++i)
Bram Moolenaar39f05632006-03-19 22:15:26 +00002967 if (compl_match_array[i].pum_text == compl_shown_match->cp_str
2968 || compl_match_array[i].pum_text
2969 == compl_shown_match->cp_text[CPT_ABBR])
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002970 {
2971 cur = i;
Bram Moolenaara6557602006-02-04 22:43:20 +00002972 break;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002973 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002974 }
2975
2976 if (compl_match_array != NULL)
2977 {
2978 /* Compute the screen column of the start of the completed text.
2979 * Use the cursor to get all wrapping and other settings right. */
2980 col = curwin->w_cursor.col;
2981 curwin->w_cursor.col = compl_col;
Bram Moolenaard289f132006-03-11 21:30:53 +00002982 pum_display(compl_match_array, compl_match_arraysize, cur);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002983 curwin->w_cursor.col = col;
2984 }
2985}
2986
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987#define DICT_FIRST (1) /* use just first element in "dict" */
2988#define DICT_EXACT (2) /* "dict" is the exact name of a file */
Bram Moolenaar280f1262006-01-30 00:14:18 +00002989
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990/*
Bram Moolenaar0b238792006-03-02 22:49:12 +00002991 * Add any identifiers that match the given pattern in the list of dictionary
2992 * files "dict_start" to the list of completions.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 */
2994 static void
Bram Moolenaar0b238792006-03-02 22:49:12 +00002995ins_compl_dictionaries(dict_start, pat, flags, thesaurus)
2996 char_u *dict_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 char_u *pat;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002998 int flags; /* DICT_FIRST and/or DICT_EXACT */
Bram Moolenaar0b238792006-03-02 22:49:12 +00002999 int thesaurus; /* Thesaurus completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000{
Bram Moolenaar0b238792006-03-02 22:49:12 +00003001 char_u *dict = dict_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 char_u *ptr;
3003 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 regmatch_T regmatch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 char_u **files;
3006 int count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 int save_p_scs;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003008 int dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009
Bram Moolenaar0b238792006-03-02 22:49:12 +00003010 if (*dict == NUL)
3011 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003012#ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003013 /* When 'dictionary' is empty and spell checking is enabled use
3014 * "spell". */
3015 if (!thesaurus && curwin->w_p_spell)
3016 dict = (char_u *)"spell";
3017 else
3018#endif
3019 return;
3020 }
3021
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 buf = alloc(LSIZE);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003023 if (buf == NULL)
3024 return;
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00003025 regmatch.regprog = NULL; /* so that we can goto theend */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003026
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 /* If 'infercase' is set, don't use 'smartcase' here */
3028 save_p_scs = p_scs;
3029 if (curbuf->b_p_inf)
3030 p_scs = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003031
3032 /* When invoked to match whole lines for CTRL-X CTRL-L adjust the pattern
3033 * to only match at the start of a line. Otherwise just match the
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003034 * pattern. Also need to double backslashes. */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003035 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
3036 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003037 char_u *pat_esc = vim_strsave_escaped(pat, (char_u *)"\\");
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003038 size_t len;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003039
3040 if (pat_esc == NULL)
Bram Moolenaar6519ac82007-05-06 13:45:52 +00003041 goto theend;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003042 len = STRLEN(pat_esc) + 10;
3043 ptr = alloc((unsigned)len);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003044 if (ptr == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003045 {
3046 vim_free(pat_esc);
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00003047 goto theend;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003048 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003049 vim_snprintf((char *)ptr, len, "^\\s*\\zs\\V%s", pat_esc);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003050 regmatch.regprog = vim_regcomp(ptr, RE_MAGIC);
3051 vim_free(pat_esc);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003052 vim_free(ptr);
3053 }
3054 else
Bram Moolenaar0b238792006-03-02 22:49:12 +00003055 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003056 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003057 if (regmatch.regprog == NULL)
3058 goto theend;
3059 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003060
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 /* ignore case depends on 'ignorecase', 'smartcase' and "pat" */
3062 regmatch.rm_ic = ignorecase(pat);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003063 while (*dict != NUL && !got_int && !compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 {
3065 /* copy one dictionary file name into buf */
3066 if (flags == DICT_EXACT)
3067 {
3068 count = 1;
3069 files = &dict;
3070 }
3071 else
3072 {
3073 /* Expand wildcards in the dictionary name, but do not allow
3074 * backticks (for security, the 'dict' option may have been set in
3075 * a modeline). */
3076 copy_option_part(&dict, buf, LSIZE, ",");
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003077# ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003078 if (!thesaurus && STRCMP(buf, "spell") == 0)
3079 count = -1;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003080 else
3081# endif
3082 if (vim_strchr(buf, '`') != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 || expand_wildcards(1, &buf, &count, &files,
3084 EW_FILE|EW_SILENT) != OK)
3085 count = 0;
3086 }
3087
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003088# ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003089 if (count == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 {
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003091 /* Complete from active spelling. Skip "\<" in the pattern, we
3092 * don't use it as a RE. */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003093 if (pat[0] == '\\' && pat[1] == '<')
3094 ptr = pat + 2;
3095 else
3096 ptr = pat;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003097 spell_dump_compl(ptr, regmatch.rm_ic, &dir, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 }
Bram Moolenaar0b238792006-03-02 22:49:12 +00003099 else
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003100# endif
Bram Moolenaard7fd0c42006-08-22 17:55:55 +00003101 if (count > 0) /* avoid warning for using "files" uninit */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003102 {
3103 ins_compl_files(count, files, thesaurus, flags,
3104 &regmatch, buf, &dir);
3105 if (flags != DICT_EXACT)
3106 FreeWild(count, files);
3107 }
3108 if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 break;
3110 }
Bram Moolenaar0b238792006-03-02 22:49:12 +00003111
3112theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 p_scs = save_p_scs;
3114 vim_free(regmatch.regprog);
3115 vim_free(buf);
3116}
3117
Bram Moolenaar0b238792006-03-02 22:49:12 +00003118 static void
3119ins_compl_files(count, files, thesaurus, flags, regmatch, buf, dir)
3120 int count;
3121 char_u **files;
3122 int thesaurus;
3123 int flags;
3124 regmatch_T *regmatch;
3125 char_u *buf;
3126 int *dir;
3127{
3128 char_u *ptr;
3129 int i;
3130 FILE *fp;
3131 int add_r;
3132
3133 for (i = 0; i < count && !got_int && !compl_interrupted; i++)
3134 {
3135 fp = mch_fopen((char *)files[i], "r"); /* open dictionary file */
3136 if (flags != DICT_EXACT)
3137 {
3138 vim_snprintf((char *)IObuff, IOSIZE,
3139 _("Scanning dictionary: %s"), (char *)files[i]);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003140 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar0b238792006-03-02 22:49:12 +00003141 }
3142
3143 if (fp != NULL)
3144 {
3145 /*
3146 * Read dictionary file line by line.
3147 * Check each line for a match.
3148 */
3149 while (!got_int && !compl_interrupted
3150 && !vim_fgets(buf, LSIZE, fp))
3151 {
3152 ptr = buf;
3153 while (vim_regexec(regmatch, buf, (colnr_T)(ptr - buf)))
3154 {
3155 ptr = regmatch->startp[0];
3156 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
3157 ptr = find_line_end(ptr);
3158 else
3159 ptr = find_word_end(ptr);
3160 add_r = ins_compl_add_infercase(regmatch->startp[0],
3161 (int)(ptr - regmatch->startp[0]),
Bram Moolenaare8c3a142006-08-29 14:30:35 +00003162 p_ic, files[i], *dir, 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003163 if (thesaurus)
3164 {
3165 char_u *wstart;
3166
3167 /*
3168 * Add the other matches on the line
3169 */
Bram Moolenaara2993e12007-08-12 14:38:46 +00003170 ptr = buf;
Bram Moolenaar0b238792006-03-02 22:49:12 +00003171 while (!got_int)
3172 {
3173 /* Find start of the next word. Skip white
3174 * space and punctuation. */
3175 ptr = find_word_start(ptr);
3176 if (*ptr == NUL || *ptr == NL)
3177 break;
3178 wstart = ptr;
3179
Bram Moolenaara2993e12007-08-12 14:38:46 +00003180 /* Find end of the word. */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003181#ifdef FEAT_MBYTE
3182 if (has_mbyte)
3183 /* Japanese words may have characters in
3184 * different classes, only separate words
3185 * with single-byte non-word characters. */
3186 while (*ptr != NUL)
3187 {
3188 int l = (*mb_ptr2len)(ptr);
3189
3190 if (l < 2 && !vim_iswordc(*ptr))
3191 break;
3192 ptr += l;
3193 }
3194 else
3195#endif
3196 ptr = find_word_end(ptr);
Bram Moolenaara2993e12007-08-12 14:38:46 +00003197
3198 /* Add the word. Skip the regexp match. */
3199 if (wstart != regmatch->startp[0])
3200 add_r = ins_compl_add_infercase(wstart,
3201 (int)(ptr - wstart),
3202 p_ic, files[i], *dir, 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003203 }
3204 }
3205 if (add_r == OK)
3206 /* if dir was BACKWARD then honor it just once */
3207 *dir = FORWARD;
3208 else if (add_r == FAIL)
3209 break;
3210 /* avoid expensive call to vim_regexec() when at end
3211 * of line */
3212 if (*ptr == '\n' || got_int)
3213 break;
3214 }
3215 line_breakcheck();
3216 ins_compl_check_keys(50);
3217 }
3218 fclose(fp);
3219 }
3220 }
3221}
3222
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223/*
3224 * Find the start of the next word.
3225 * Returns a pointer to the first char of the word. Also stops at a NUL.
3226 */
3227 char_u *
3228find_word_start(ptr)
3229 char_u *ptr;
3230{
3231#ifdef FEAT_MBYTE
3232 if (has_mbyte)
3233 while (*ptr != NUL && *ptr != '\n' && mb_get_class(ptr) <= 1)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003234 ptr += (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 else
3236#endif
3237 while (*ptr != NUL && *ptr != '\n' && !vim_iswordc(*ptr))
3238 ++ptr;
3239 return ptr;
3240}
3241
3242/*
3243 * Find the end of the word. Assumes it starts inside a word.
3244 * Returns a pointer to just after the word.
3245 */
3246 char_u *
3247find_word_end(ptr)
3248 char_u *ptr;
3249{
3250#ifdef FEAT_MBYTE
3251 int start_class;
3252
3253 if (has_mbyte)
3254 {
3255 start_class = mb_get_class(ptr);
3256 if (start_class > 1)
3257 while (*ptr != NUL)
3258 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003259 ptr += (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 if (mb_get_class(ptr) != start_class)
3261 break;
3262 }
3263 }
3264 else
3265#endif
3266 while (vim_iswordc(*ptr))
3267 ++ptr;
3268 return ptr;
3269}
3270
3271/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003272 * Find the end of the line, omitting CR and NL at the end.
3273 * Returns a pointer to just after the line.
3274 */
3275 static char_u *
3276find_line_end(ptr)
3277 char_u *ptr;
3278{
3279 char_u *s;
3280
3281 s = ptr + STRLEN(ptr);
3282 while (s > ptr && (s[-1] == CAR || s[-1] == NL))
3283 --s;
3284 return s;
3285}
3286
3287/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 * Free the list of completions
3289 */
3290 static void
3291ins_compl_free()
3292{
Bram Moolenaar572cb562005-08-05 21:35:02 +00003293 compl_T *match;
Bram Moolenaar39f05632006-03-19 22:15:26 +00003294 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003296 vim_free(compl_pattern);
3297 compl_pattern = NULL;
Bram Moolenaara6557602006-02-04 22:43:20 +00003298 vim_free(compl_leader);
3299 compl_leader = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003301 if (compl_first_match == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 return;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003303
3304 ins_compl_del_pum();
3305 pum_clear();
3306
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003307 compl_curr_match = compl_first_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 do
3309 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003310 match = compl_curr_match;
Bram Moolenaar572cb562005-08-05 21:35:02 +00003311 compl_curr_match = compl_curr_match->cp_next;
3312 vim_free(match->cp_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 /* several entries may use the same fname, free it just once. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00003314 if (match->cp_flags & FREE_FNAME)
3315 vim_free(match->cp_fname);
Bram Moolenaar39f05632006-03-19 22:15:26 +00003316 for (i = 0; i < CPT_COUNT; ++i)
3317 vim_free(match->cp_text[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 vim_free(match);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003319 } while (compl_curr_match != NULL && compl_curr_match != compl_first_match);
3320 compl_first_match = compl_curr_match = NULL;
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00003321 compl_shown_match = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322}
3323
3324 static void
3325ins_compl_clear()
3326{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003327 compl_cont_status = 0;
3328 compl_started = FALSE;
3329 compl_matches = 0;
3330 vim_free(compl_pattern);
3331 compl_pattern = NULL;
Bram Moolenaara6557602006-02-04 22:43:20 +00003332 vim_free(compl_leader);
3333 compl_leader = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 edit_submode_extra = NULL;
Bram Moolenaara94bc432006-03-10 21:42:59 +00003335 vim_free(compl_orig_text);
3336 compl_orig_text = NULL;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003337 compl_enter_selects = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338}
3339
3340/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003341 * Return TRUE when Insert completion is active.
3342 */
3343 int
3344ins_compl_active()
3345{
3346 return compl_started;
3347}
3348
3349/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003350 * Delete one character before the cursor and show the subset of the matches
3351 * that match the word that is now before the cursor.
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003352 * Returns the character to be used, NUL if the work is done and another char
3353 * to be got from the user.
Bram Moolenaara6557602006-02-04 22:43:20 +00003354 */
3355 static int
3356ins_compl_bs()
3357{
3358 char_u *line;
3359 char_u *p;
3360
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003361 line = ml_get_curline();
3362 p = line + curwin->w_cursor.col;
3363 mb_ptr_back(line, p);
3364
Bram Moolenaar711d5b52007-10-19 18:40:51 +00003365 /* Stop completion when the whole word was deleted. For Omni completion
3366 * allow the word to be deleted, we won't match everything. */
3367 if ((int)(p - line) - (int)compl_col < 0
3368 || ((int)(p - line) - (int)compl_col == 0
3369 && (ctrl_x_mode & CTRL_X_OMNI) == 0))
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003370 return K_BS;
3371
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003372 /* Deleted more than what was used to find matches or didn't finish
3373 * finding all matches: need to look for matches all over again. */
3374 if (curwin->w_cursor.col <= compl_col + compl_length
Bram Moolenaar82139082011-09-14 16:52:09 +02003375 || ins_compl_need_restart())
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003376 ins_compl_restart();
Bram Moolenaara6557602006-02-04 22:43:20 +00003377
Bram Moolenaara6557602006-02-04 22:43:20 +00003378 vim_free(compl_leader);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003379 compl_leader = vim_strnsave(line + compl_col, (int)(p - line) - compl_col);
Bram Moolenaara6557602006-02-04 22:43:20 +00003380 if (compl_leader != NULL)
3381 {
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003382 ins_compl_new_leader();
3383 return NUL;
3384 }
3385 return K_BS;
3386}
Bram Moolenaara6557602006-02-04 22:43:20 +00003387
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003388/*
Bram Moolenaar82139082011-09-14 16:52:09 +02003389 * Return TRUE when we need to find matches again, ins_compl_restart() is to
3390 * be called.
3391 */
3392 static int
3393ins_compl_need_restart()
3394{
3395 /* Return TRUE if we didn't complete finding matches or when the
3396 * 'completefunc' returned "always" in the "refresh" dictionary item. */
3397 return compl_was_interrupted
3398 || ((ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
3399 && compl_opt_refresh_always);
3400}
3401
3402/*
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003403 * Called after changing "compl_leader".
3404 * Show the popup menu with a different set of matches.
3405 * May also search for matches again if the previous search was interrupted.
3406 */
3407 static void
3408ins_compl_new_leader()
3409{
3410 ins_compl_del_pum();
3411 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003412 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003413 compl_used_match = FALSE;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003414
3415 if (compl_started)
3416 ins_compl_set_original_text(compl_leader);
3417 else
3418 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003419#ifdef FEAT_SPELL
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003420 spell_bad_len = 0; /* need to redetect bad word */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003421#endif
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003422 /*
3423 * Matches were cleared, need to search for them now. First display
3424 * the changed text before the cursor. Set "compl_restarting" to
3425 * avoid that the first match is inserted.
3426 */
3427 update_screen(0);
3428#ifdef FEAT_GUI
3429 if (gui.in_use)
3430 {
3431 /* Show the cursor after the match, not after the redrawn text. */
3432 setcursor();
3433 out_flush();
3434 gui_update_cursor(FALSE, FALSE);
Bram Moolenaara6557602006-02-04 22:43:20 +00003435 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003436#endif
3437 compl_restarting = TRUE;
3438 if (ins_complete(Ctrl_N) == FAIL)
3439 compl_cont_status = 0;
3440 compl_restarting = FALSE;
3441 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003442
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003443 compl_enter_selects = !compl_used_match;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003444
3445 /* Show the popup menu with a different set of matches. */
3446 ins_compl_show_pum();
Bram Moolenaar7073cc82006-08-29 16:33:06 +00003447
3448 /* Don't let Enter select the original text when there is no popup menu. */
3449 if (compl_match_array == NULL)
3450 compl_enter_selects = FALSE;
Bram Moolenaara6557602006-02-04 22:43:20 +00003451}
3452
3453/*
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003454 * Return the length of the completion, from the completion start column to
3455 * the cursor column. Making sure it never goes below zero.
3456 */
3457 static int
3458ins_compl_len()
3459{
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003460 int off = (int)curwin->w_cursor.col - (int)compl_col;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003461
3462 if (off < 0)
3463 return 0;
3464 return off;
3465}
3466
3467/*
Bram Moolenaara6557602006-02-04 22:43:20 +00003468 * Append one character to the match leader. May reduce the number of
3469 * matches.
3470 */
3471 static void
3472ins_compl_addleader(c)
3473 int c;
3474{
3475#ifdef FEAT_MBYTE
3476 int cc;
3477
3478 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
3479 {
3480 char_u buf[MB_MAXBYTES + 1];
3481
3482 (*mb_char2bytes)(c, buf);
3483 buf[cc] = NUL;
3484 ins_char_bytes(buf, cc);
Bram Moolenaar22189a42012-06-20 22:56:02 +02003485 if (compl_opt_refresh_always)
3486 AppendToRedobuff(buf);
Bram Moolenaara6557602006-02-04 22:43:20 +00003487 }
3488 else
3489#endif
Bram Moolenaar5e1a0a92012-06-20 14:26:35 +02003490 {
Bram Moolenaara6557602006-02-04 22:43:20 +00003491 ins_char(c);
Bram Moolenaar22189a42012-06-20 22:56:02 +02003492 if (compl_opt_refresh_always)
3493 AppendCharToRedobuff(c);
Bram Moolenaar5e1a0a92012-06-20 14:26:35 +02003494 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003495
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003496 /* If we didn't complete finding matches we must search again. */
Bram Moolenaar82139082011-09-14 16:52:09 +02003497 if (ins_compl_need_restart())
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003498 ins_compl_restart();
3499
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003500 /* When 'always' is set, don't reset compl_leader. While completing,
Bram Moolenaar22189a42012-06-20 22:56:02 +02003501 * cursor doesn't point original position, changing compl_leader would
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003502 * break redo. */
3503 if (!compl_opt_refresh_always)
3504 {
3505 vim_free(compl_leader);
3506 compl_leader = vim_strnsave(ml_get_curline() + compl_col,
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003507 (int)(curwin->w_cursor.col - compl_col));
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003508 if (compl_leader != NULL)
3509 ins_compl_new_leader();
3510 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003511}
3512
3513/*
3514 * Setup for finding completions again without leaving CTRL-X mode. Used when
3515 * BS or a key was typed while still searching for matches.
3516 */
3517 static void
3518ins_compl_restart()
3519{
3520 ins_compl_free();
3521 compl_started = FALSE;
3522 compl_matches = 0;
3523 compl_cont_status = 0;
3524 compl_cont_mode = 0;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003525}
3526
3527/*
3528 * Set the first match, the original text.
3529 */
3530 static void
3531ins_compl_set_original_text(str)
3532 char_u *str;
3533{
3534 char_u *p;
3535
3536 /* Replace the original text entry. */
3537 if (compl_first_match->cp_flags & ORIGINAL_TEXT) /* safety check */
3538 {
3539 p = vim_strsave(str);
3540 if (p != NULL)
3541 {
3542 vim_free(compl_first_match->cp_str);
3543 compl_first_match->cp_str = p;
3544 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003545 }
3546}
3547
3548/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003549 * Append one character to the match leader. May reduce the number of
3550 * matches.
3551 */
3552 static void
3553ins_compl_addfrommatch()
3554{
3555 char_u *p;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003556 int len = (int)curwin->w_cursor.col - (int)compl_col;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003557 int c;
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003558 compl_T *cp;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003559
3560 p = compl_shown_match->cp_str;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003561 if ((int)STRLEN(p) <= len) /* the match is too short */
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003562 {
3563 /* When still at the original match use the first entry that matches
3564 * the leader. */
3565 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
3566 {
3567 p = NULL;
3568 for (cp = compl_shown_match->cp_next; cp != NULL
3569 && cp != compl_first_match; cp = cp->cp_next)
3570 {
Bram Moolenaar132283f2006-10-03 13:22:23 +00003571 if (compl_leader == NULL
3572 || ins_compl_equal(cp, compl_leader,
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003573 (int)STRLEN(compl_leader)))
3574 {
3575 p = cp->cp_str;
3576 break;
3577 }
3578 }
3579 if (p == NULL || (int)STRLEN(p) <= len)
3580 return;
3581 }
3582 else
3583 return;
3584 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003585 p += len;
Bram Moolenaare659c952011-05-19 17:25:41 +02003586 c = PTR2CHAR(p);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003587 ins_compl_addleader(c);
3588}
3589
3590/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 * Prepare for Insert mode completion, or stop it.
Bram Moolenaar572cb562005-08-05 21:35:02 +00003592 * Called just after typing a character in Insert mode.
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003593 * Returns TRUE when the character is not to be inserted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003595 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596ins_compl_prep(c)
3597 int c;
3598{
3599 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 int want_cindent;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003601 int retval = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602
3603 /* Forget any previous 'special' messages if this is actually
3604 * a ^X mode key - bar ^R, in which case we wait to see what it gives us.
3605 */
3606 if (c != Ctrl_R && vim_is_ctrl_x_key(c))
3607 edit_submode_extra = NULL;
3608
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00003609 /* Ignore end of Select mode mapping and mouse scroll buttons. */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003610 if (c == K_SELECT || c == K_MOUSEDOWN || c == K_MOUSEUP
3611 || c == K_MOUSELEFT || c == K_MOUSERIGHT)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003612 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003614 /* Set "compl_get_longest" when finding the first matches. */
3615 if (ctrl_x_mode == CTRL_X_NOT_DEFINED_YET
3616 || (ctrl_x_mode == 0 && !compl_started))
3617 {
3618 compl_get_longest = (vim_strchr(p_cot, 'l') != NULL);
3619 compl_used_match = TRUE;
3620 }
3621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 if (ctrl_x_mode == CTRL_X_NOT_DEFINED_YET)
3623 {
3624 /*
3625 * We have just typed CTRL-X and aren't quite sure which CTRL-X mode
3626 * it will be yet. Now we decide.
3627 */
3628 switch (c)
3629 {
3630 case Ctrl_E:
3631 case Ctrl_Y:
3632 ctrl_x_mode = CTRL_X_SCROLL;
3633 if (!(State & REPLACE_FLAG))
3634 edit_submode = (char_u *)_(" (insert) Scroll (^E/^Y)");
3635 else
3636 edit_submode = (char_u *)_(" (replace) Scroll (^E/^Y)");
3637 edit_submode_pre = NULL;
3638 showmode();
3639 break;
3640 case Ctrl_L:
3641 ctrl_x_mode = CTRL_X_WHOLE_LINE;
3642 break;
3643 case Ctrl_F:
3644 ctrl_x_mode = CTRL_X_FILES;
3645 break;
3646 case Ctrl_K:
3647 ctrl_x_mode = CTRL_X_DICTIONARY;
3648 break;
3649 case Ctrl_R:
3650 /* Simply allow ^R to happen without affecting ^X mode */
3651 break;
3652 case Ctrl_T:
3653 ctrl_x_mode = CTRL_X_THESAURUS;
3654 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003655#ifdef FEAT_COMPL_FUNC
3656 case Ctrl_U:
3657 ctrl_x_mode = CTRL_X_FUNCTION;
3658 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003659 case Ctrl_O:
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003660 ctrl_x_mode = CTRL_X_OMNI;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003661 break;
Bram Moolenaare344bea2005-09-01 20:46:49 +00003662#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00003663 case 's':
3664 case Ctrl_S:
3665 ctrl_x_mode = CTRL_X_SPELL;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003666#ifdef FEAT_SPELL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003667 ++emsg_off; /* Avoid getting the E756 error twice. */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00003668 spell_back_to_badword();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003669 --emsg_off;
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00003670#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00003671 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 case Ctrl_RSB:
3673 ctrl_x_mode = CTRL_X_TAGS;
3674 break;
3675#ifdef FEAT_FIND_ID
3676 case Ctrl_I:
3677 case K_S_TAB:
3678 ctrl_x_mode = CTRL_X_PATH_PATTERNS;
3679 break;
3680 case Ctrl_D:
3681 ctrl_x_mode = CTRL_X_PATH_DEFINES;
3682 break;
3683#endif
3684 case Ctrl_V:
3685 case Ctrl_Q:
3686 ctrl_x_mode = CTRL_X_CMDLINE;
3687 break;
3688 case Ctrl_P:
3689 case Ctrl_N:
3690 /* ^X^P means LOCAL expansion if nothing interrupted (eg we
3691 * just started ^X mode, or there were enough ^X's to cancel
3692 * the previous mode, say ^X^F^X^X^P or ^P^X^X^X^P, see below)
3693 * do normal expansion when interrupting a different mode (say
3694 * ^X^F^X^P or ^P^X^X^P, see below)
3695 * nothing changes if interrupting mode 0, (eg, the flag
3696 * doesn't change when going to ADDING mode -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003697 if (!(compl_cont_status & CONT_INTRPT))
3698 compl_cont_status |= CONT_LOCAL;
3699 else if (compl_cont_mode != 0)
3700 compl_cont_status &= ~CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 /* FALLTHROUGH */
3702 default:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003703 /* If we have typed at least 2 ^X's... for modes != 0, we set
3704 * compl_cont_status = 0 (eg, as if we had just started ^X
3705 * mode).
3706 * For mode 0, we set "compl_cont_mode" to an impossible
3707 * value, in both cases ^X^X can be used to restart the same
3708 * mode (avoiding ADDING mode).
3709 * Undocumented feature: In a mode != 0 ^X^P and ^X^X^P start
3710 * 'complete' and local ^P expansions respectively.
3711 * In mode 0 an extra ^X is needed since ^X^P goes to ADDING
3712 * mode -- Acevedo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 if (c == Ctrl_X)
3714 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003715 if (compl_cont_mode != 0)
3716 compl_cont_status = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003718 compl_cont_mode = CTRL_X_NOT_DEFINED_YET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 }
3720 ctrl_x_mode = 0;
3721 edit_submode = NULL;
3722 showmode();
3723 break;
3724 }
3725 }
3726 else if (ctrl_x_mode != 0)
3727 {
3728 /* We're already in CTRL-X mode, do we stay in it? */
3729 if (!vim_is_ctrl_x_key(c))
3730 {
3731 if (ctrl_x_mode == CTRL_X_SCROLL)
3732 ctrl_x_mode = 0;
3733 else
3734 ctrl_x_mode = CTRL_X_FINISHED;
3735 edit_submode = NULL;
3736 }
3737 showmode();
3738 }
3739
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003740 if (compl_started || ctrl_x_mode == CTRL_X_FINISHED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 {
3742 /* Show error message from attempted keyword completion (probably
3743 * 'Pattern not found') until another key is hit, then go back to
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003744 * showing what mode we are in. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 showmode();
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003746 if ((ctrl_x_mode == 0 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_R
3747 && !ins_compl_pum_key(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 || ctrl_x_mode == CTRL_X_FINISHED)
3749 {
3750 /* Get here when we have finished typing a sequence of ^N and
3751 * ^P or other completion characters in CTRL-X mode. Free up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003752 * memory that was used, and make sure we can redo the insert. */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003753 if (compl_curr_match != NULL || compl_leader != NULL || c == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 {
3755 /*
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003756 * If any of the original typed text has been changed, eg when
3757 * ignorecase is set, we must add back-spaces to the redo
3758 * buffer. We add as few as necessary to delete just the part
3759 * of the original text that has changed.
3760 * When using the longest match, edited the match or used
3761 * CTRL-E then don't use the current match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003763 if (compl_curr_match != NULL && compl_used_match && c != Ctrl_E)
3764 ptr = compl_curr_match->cp_str;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003765 else
Bram Moolenaar62951b12011-09-21 18:23:05 +02003766 ptr = NULL;
3767 ins_compl_fixRedoBufForLeader(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 }
3769
3770#ifdef FEAT_CINDENT
3771 want_cindent = (can_cindent && cindent_on());
3772#endif
3773 /*
3774 * When completing whole lines: fix indent for 'cindent'.
3775 * Otherwise, break line if it's too long.
3776 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003777 if (compl_cont_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 {
3779#ifdef FEAT_CINDENT
3780 /* re-indent the current line */
3781 if (want_cindent)
3782 {
3783 do_c_expr_indent();
3784 want_cindent = FALSE; /* don't do it again */
3785 }
3786#endif
3787 }
3788 else
3789 {
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003790 int prev_col = curwin->w_cursor.col;
3791
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 /* put the cursor on the last char, for 'tw' formatting */
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003793 if (prev_col > 0)
3794 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 if (stop_arrow() == OK)
3796 insertchar(NUL, 0, -1);
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003797 if (prev_col > 0
3798 && ml_get_curline()[curwin->w_cursor.col] != NUL)
3799 inc_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 }
3801
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003802 /* If the popup menu is displayed pressing CTRL-Y means accepting
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003803 * the selection without inserting anything. When
3804 * compl_enter_selects is set the Enter key does the same. */
3805 if ((c == Ctrl_Y || (compl_enter_selects
3806 && (c == CAR || c == K_KENTER || c == NL)))
3807 && pum_visible())
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003808 retval = TRUE;
3809
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003810 /* CTRL-E means completion is Ended, go back to the typed text. */
3811 if (c == Ctrl_E)
3812 {
3813 ins_compl_delete();
3814 if (compl_leader != NULL)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003815 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003816 else if (compl_first_match != NULL)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003817 ins_bytes(compl_orig_text + ins_compl_len());
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003818 retval = TRUE;
3819 }
3820
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003821 auto_format(FALSE, TRUE);
3822
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 ins_compl_free();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003824 compl_started = FALSE;
3825 compl_matches = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 msg_clr_cmdline(); /* necessary for "noshowmode" */
3827 ctrl_x_mode = 0;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003828 compl_enter_selects = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 if (edit_submode != NULL)
3830 {
3831 edit_submode = NULL;
3832 showmode();
3833 }
3834
3835#ifdef FEAT_CINDENT
3836 /*
3837 * Indent now if a key was typed that is in 'cinkeys'.
3838 */
3839 if (want_cindent && in_cinkeys(KEY_COMPLETE, ' ', inindent(0)))
3840 do_c_expr_indent();
3841#endif
Bram Moolenaarcfa3cae2012-07-10 17:14:56 +02003842#ifdef FEAT_AUTOCMD
3843 /* Trigger the CompleteDone event to give scripts a chance to act
3844 * upon the completion. */
3845 apply_autocmds(EVENT_COMPLETEDONE, NULL, NULL, FALSE, curbuf);
3846#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 }
3848 }
3849
3850 /* reset continue_* if we left expansion-mode, if we stay they'll be
3851 * (re)set properly in ins_complete() */
3852 if (!vim_is_ctrl_x_key(c))
3853 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003854 compl_cont_status = 0;
3855 compl_cont_mode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003857
3858 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859}
3860
3861/*
Bram Moolenaar62951b12011-09-21 18:23:05 +02003862 * Fix the redo buffer for the completion leader replacing some of the typed
3863 * text. This inserts backspaces and appends the changed text.
3864 * "ptr" is the known leader text or NUL.
3865 */
3866 static void
3867ins_compl_fixRedoBufForLeader(ptr_arg)
3868 char_u *ptr_arg;
3869{
3870 int len;
3871 char_u *p;
3872 char_u *ptr = ptr_arg;
3873
3874 if (ptr == NULL)
3875 {
3876 if (compl_leader != NULL)
3877 ptr = compl_leader;
3878 else
3879 return; /* nothing to do */
3880 }
3881 if (compl_orig_text != NULL)
3882 {
3883 p = compl_orig_text;
3884 for (len = 0; p[len] != NUL && p[len] == ptr[len]; ++len)
3885 ;
3886#ifdef FEAT_MBYTE
3887 if (len > 0)
3888 len -= (*mb_head_off)(p, p + len);
3889#endif
3890 for (p += len; *p != NUL; mb_ptr_adv(p))
3891 AppendCharToRedobuff(K_BS);
3892 }
3893 else
3894 len = 0;
3895 if (ptr != NULL)
3896 AppendToRedobuffLit(ptr + len, -1);
3897}
3898
3899/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 * Loops through the list of windows, loaded-buffers or non-loaded-buffers
3901 * (depending on flag) starting from buf and looking for a non-scanned
3902 * buffer (other than curbuf). curbuf is special, if it is called with
3903 * buf=curbuf then it has to be the first call for a given flag/expansion.
3904 *
3905 * Returns the buffer to scan, if any, otherwise returns curbuf -- Acevedo
3906 */
3907 static buf_T *
3908ins_compl_next_buf(buf, flag)
3909 buf_T *buf;
3910 int flag;
3911{
3912#ifdef FEAT_WINDOWS
3913 static win_T *wp;
3914#endif
3915
3916 if (flag == 'w') /* just windows */
3917 {
3918#ifdef FEAT_WINDOWS
3919 if (buf == curbuf) /* first call for this flag/expansion */
3920 wp = curwin;
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +00003921 while ((wp = (wp->w_next != NULL ? wp->w_next : firstwin)) != curwin
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 && wp->w_buffer->b_scanned)
3923 ;
3924 buf = wp->w_buffer;
3925#else
3926 buf = curbuf;
3927#endif
3928 }
3929 else
3930 /* 'b' (just loaded buffers), 'u' (just non-loaded buffers) or 'U'
3931 * (unlisted buffers)
3932 * When completing whole lines skip unloaded buffers. */
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +00003933 while ((buf = (buf->b_next != NULL ? buf->b_next : firstbuf)) != curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 && ((flag == 'U'
3935 ? buf->b_p_bl
3936 : (!buf->b_p_bl
3937 || (buf->b_ml.ml_mfp == NULL) != (flag == 'u')))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003938 || buf->b_scanned))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 ;
3940 return buf;
3941}
3942
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003943#ifdef FEAT_COMPL_FUNC
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003944static void expand_by_function __ARGS((int type, char_u *base));
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003945
3946/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003947 * Execute user defined complete function 'completefunc' or 'omnifunc', and
Bram Moolenaare344bea2005-09-01 20:46:49 +00003948 * get matches in "matches".
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003949 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003950 static void
3951expand_by_function(type, base)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003952 int type; /* CTRL_X_OMNI or CTRL_X_FUNCTION */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003953 char_u *base;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003954{
Bram Moolenaar82139082011-09-14 16:52:09 +02003955 list_T *matchlist = NULL;
3956 dict_T *matchdict = NULL;
Bram Moolenaare344bea2005-09-01 20:46:49 +00003957 char_u *args[2];
Bram Moolenaare344bea2005-09-01 20:46:49 +00003958 char_u *funcname;
3959 pos_T pos;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003960 win_T *curwin_save;
3961 buf_T *curbuf_save;
Bram Moolenaar82139082011-09-14 16:52:09 +02003962 typval_T rettv;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003963
Bram Moolenaare344bea2005-09-01 20:46:49 +00003964 funcname = (type == CTRL_X_FUNCTION) ? curbuf->b_p_cfu : curbuf->b_p_ofu;
3965 if (*funcname == NUL)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003966 return;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003967
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00003968 /* Call 'completefunc' to obtain the list of matches. */
3969 args[0] = (char_u *)"0";
Bram Moolenaare344bea2005-09-01 20:46:49 +00003970 args[1] = base;
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00003971
Bram Moolenaare344bea2005-09-01 20:46:49 +00003972 pos = curwin->w_cursor;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003973 curwin_save = curwin;
3974 curbuf_save = curbuf;
Bram Moolenaar82139082011-09-14 16:52:09 +02003975
3976 /* Call a function, which returns a list or dict. */
Bram Moolenaar0cbba942012-07-25 16:47:03 +02003977 if (call_vim_function(funcname, 2, args, FALSE, FALSE, &rettv) == OK)
Bram Moolenaar82139082011-09-14 16:52:09 +02003978 {
3979 switch (rettv.v_type)
3980 {
3981 case VAR_LIST:
3982 matchlist = rettv.vval.v_list;
3983 break;
3984 case VAR_DICT:
3985 matchdict = rettv.vval.v_dict;
3986 break;
3987 default:
3988 /* TODO: Give error message? */
3989 clear_tv(&rettv);
3990 break;
3991 }
3992 }
3993
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003994 if (curwin_save != curwin || curbuf_save != curbuf)
3995 {
3996 EMSG(_(e_complwin));
3997 goto theend;
3998 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00003999 curwin->w_cursor = pos; /* restore the cursor position */
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004000 check_cursor();
4001 if (!equalpos(curwin->w_cursor, pos))
4002 {
4003 EMSG(_(e_compldel));
4004 goto theend;
4005 }
Bram Moolenaar82139082011-09-14 16:52:09 +02004006
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004007 if (matchlist != NULL)
4008 ins_compl_add_list(matchlist);
Bram Moolenaar82139082011-09-14 16:52:09 +02004009 else if (matchdict != NULL)
4010 ins_compl_add_dict(matchdict);
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00004011
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004012theend:
Bram Moolenaar82139082011-09-14 16:52:09 +02004013 if (matchdict != NULL)
4014 dict_unref(matchdict);
Bram Moolenaar37dd0182010-11-10 16:54:20 +01004015 if (matchlist != NULL)
4016 list_unref(matchlist);
Bram Moolenaara94bc432006-03-10 21:42:59 +00004017}
4018#endif /* FEAT_COMPL_FUNC */
4019
Bram Moolenaar39f05632006-03-19 22:15:26 +00004020#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00004021/*
4022 * Add completions from a list.
Bram Moolenaara94bc432006-03-10 21:42:59 +00004023 */
4024 static void
4025ins_compl_add_list(list)
4026 list_T *list;
4027{
4028 listitem_T *li;
Bram Moolenaara94bc432006-03-10 21:42:59 +00004029 int dir = compl_direction;
4030
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004031 /* Go through the List with matches and add each of them. */
Bram Moolenaara94bc432006-03-10 21:42:59 +00004032 for (li = list->lv_first; li != NULL; li = li->li_next)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004033 {
Bram Moolenaar39f05632006-03-19 22:15:26 +00004034 if (ins_compl_add_tv(&li->li_tv, dir) == OK)
4035 /* if dir was BACKWARD then honor it just once */
4036 dir = FORWARD;
Bram Moolenaar280f1262006-01-30 00:14:18 +00004037 else if (did_emsg)
4038 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004039 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004040}
Bram Moolenaar39f05632006-03-19 22:15:26 +00004041
4042/*
Bram Moolenaar82139082011-09-14 16:52:09 +02004043 * Add completions from a dict.
4044 */
4045 static void
4046ins_compl_add_dict(dict)
4047 dict_T *dict;
4048{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004049 dictitem_T *di_refresh;
4050 dictitem_T *di_words;
Bram Moolenaar82139082011-09-14 16:52:09 +02004051
4052 /* Check for optional "refresh" item. */
4053 compl_opt_refresh_always = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004054 di_refresh = dict_find(dict, (char_u *)"refresh", 7);
4055 if (di_refresh != NULL && di_refresh->di_tv.v_type == VAR_STRING)
Bram Moolenaar82139082011-09-14 16:52:09 +02004056 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004057 char_u *v = di_refresh->di_tv.vval.v_string;
Bram Moolenaar82139082011-09-14 16:52:09 +02004058
4059 if (v != NULL && STRCMP(v, (char_u *)"always") == 0)
4060 compl_opt_refresh_always = TRUE;
4061 }
4062
4063 /* Add completions from a "words" list. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004064 di_words = dict_find(dict, (char_u *)"words", 5);
4065 if (di_words != NULL && di_words->di_tv.v_type == VAR_LIST)
4066 ins_compl_add_list(di_words->di_tv.vval.v_list);
Bram Moolenaar82139082011-09-14 16:52:09 +02004067}
4068
4069/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00004070 * Add a match to the list of matches from a typeval_T.
4071 * If the given string is already in the list of completions, then return
4072 * NOTDONE, otherwise add it to the list and return OK. If there is an error,
4073 * maybe because alloc() returns NULL, then FAIL is returned.
4074 */
4075 int
4076ins_compl_add_tv(tv, dir)
4077 typval_T *tv;
4078 int dir;
4079{
4080 char_u *word;
Bram Moolenaar91170f82006-05-05 21:15:17 +00004081 int icase = FALSE;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004082 int adup = FALSE;
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004083 int aempty = FALSE;
Bram Moolenaar39f05632006-03-19 22:15:26 +00004084 char_u *(cptext[CPT_COUNT]);
4085
4086 if (tv->v_type == VAR_DICT && tv->vval.v_dict != NULL)
4087 {
4088 word = get_dict_string(tv->vval.v_dict, (char_u *)"word", FALSE);
4089 cptext[CPT_ABBR] = get_dict_string(tv->vval.v_dict,
4090 (char_u *)"abbr", FALSE);
4091 cptext[CPT_MENU] = get_dict_string(tv->vval.v_dict,
4092 (char_u *)"menu", FALSE);
4093 cptext[CPT_KIND] = get_dict_string(tv->vval.v_dict,
4094 (char_u *)"kind", FALSE);
4095 cptext[CPT_INFO] = get_dict_string(tv->vval.v_dict,
4096 (char_u *)"info", FALSE);
4097 if (get_dict_string(tv->vval.v_dict, (char_u *)"icase", FALSE) != NULL)
4098 icase = get_dict_number(tv->vval.v_dict, (char_u *)"icase");
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004099 if (get_dict_string(tv->vval.v_dict, (char_u *)"dup", FALSE) != NULL)
Bram Moolenaar89d40322006-08-29 15:30:07 +00004100 adup = get_dict_number(tv->vval.v_dict, (char_u *)"dup");
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004101 if (get_dict_string(tv->vval.v_dict, (char_u *)"empty", FALSE) != NULL)
4102 aempty = get_dict_number(tv->vval.v_dict, (char_u *)"empty");
Bram Moolenaar39f05632006-03-19 22:15:26 +00004103 }
4104 else
4105 {
4106 word = get_tv_string_chk(tv);
4107 vim_memset(cptext, 0, sizeof(cptext));
4108 }
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004109 if (word == NULL || (!aempty && *word == NUL))
Bram Moolenaar39f05632006-03-19 22:15:26 +00004110 return FAIL;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004111 return ins_compl_add(word, -1, icase, NULL, cptext, dir, 0, adup);
Bram Moolenaar39f05632006-03-19 22:15:26 +00004112}
Bram Moolenaara94bc432006-03-10 21:42:59 +00004113#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004114
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004115/*
4116 * Get the next expansion(s), using "compl_pattern".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004117 * The search starts at position "ini" in curbuf and in the direction
4118 * compl_direction.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004119 * When "compl_started" is FALSE start at that position, otherwise continue
4120 * where we stopped searching before.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004121 * This may return before finding all the matches.
4122 * Return the total number of matches or -1 if still unknown -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 */
4124 static int
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004125ins_compl_get_exp(ini)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 pos_T *ini;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127{
4128 static pos_T first_match_pos;
4129 static pos_T last_match_pos;
4130 static char_u *e_cpt = (char_u *)""; /* curr. entry in 'complete' */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004131 static int found_all = FALSE; /* Found all matches of a
4132 certain type. */
4133 static buf_T *ins_buf = NULL; /* buffer being scanned */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134
Bram Moolenaar572cb562005-08-05 21:35:02 +00004135 pos_T *pos;
4136 char_u **matches;
4137 int save_p_scs;
4138 int save_p_ws;
4139 int save_p_ic;
4140 int i;
4141 int num_matches;
4142 int len;
4143 int found_new_match;
4144 int type = ctrl_x_mode;
4145 char_u *ptr;
4146 char_u *dict = NULL;
4147 int dict_f = 0;
4148 compl_T *old_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004150 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 {
4152 for (ins_buf = firstbuf; ins_buf != NULL; ins_buf = ins_buf->b_next)
4153 ins_buf->b_scanned = 0;
4154 found_all = FALSE;
4155 ins_buf = curbuf;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004156 e_cpt = (compl_cont_status & CONT_LOCAL)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004157 ? (char_u *)"." : curbuf->b_p_cpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 last_match_pos = first_match_pos = *ini;
4159 }
4160
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004161 old_match = compl_curr_match; /* remember the last current match */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004162 pos = (compl_direction == FORWARD) ? &last_match_pos : &first_match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 /* For ^N/^P loop over all the flags/windows/buffers in 'complete' */
4164 for (;;)
4165 {
4166 found_new_match = FAIL;
4167
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004168 /* For ^N/^P pick a new entry from e_cpt if compl_started is off,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 * or if found_all says this entry is done. For ^X^L only use the
4170 * entries from 'complete' that look in loaded buffers. */
4171 if ((ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004172 && (!compl_started || found_all))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 {
4174 found_all = FALSE;
4175 while (*e_cpt == ',' || *e_cpt == ' ')
4176 e_cpt++;
4177 if (*e_cpt == '.' && !curbuf->b_scanned)
4178 {
4179 ins_buf = curbuf;
4180 first_match_pos = *ini;
4181 /* So that ^N can match word immediately after cursor */
4182 if (ctrl_x_mode == 0)
4183 dec(&first_match_pos);
4184 last_match_pos = first_match_pos;
4185 type = 0;
4186 }
4187 else if (vim_strchr((char_u *)"buwU", *e_cpt) != NULL
4188 && (ins_buf = ins_compl_next_buf(ins_buf, *e_cpt)) != curbuf)
4189 {
4190 /* Scan a buffer, but not the current one. */
4191 if (ins_buf->b_ml.ml_mfp != NULL) /* loaded buffer */
4192 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004193 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 first_match_pos.col = last_match_pos.col = 0;
4195 first_match_pos.lnum = ins_buf->b_ml.ml_line_count + 1;
4196 last_match_pos.lnum = 0;
4197 type = 0;
4198 }
4199 else /* unloaded buffer, scan like dictionary */
4200 {
4201 found_all = TRUE;
4202 if (ins_buf->b_fname == NULL)
4203 continue;
4204 type = CTRL_X_DICTIONARY;
4205 dict = ins_buf->b_fname;
4206 dict_f = DICT_EXACT;
4207 }
Bram Moolenaar555b2802005-05-19 21:08:39 +00004208 vim_snprintf((char *)IObuff, IOSIZE, _("Scanning: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 ins_buf->b_fname == NULL
4210 ? buf_spname(ins_buf)
4211 : ins_buf->b_sfname == NULL
Bram Moolenaar4ccb2652012-10-04 22:38:37 +02004212 ? ins_buf->b_fname
4213 : ins_buf->b_sfname);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004214 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 }
4216 else if (*e_cpt == NUL)
4217 break;
4218 else
4219 {
4220 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
4221 type = -1;
4222 else if (*e_cpt == 'k' || *e_cpt == 's')
4223 {
4224 if (*e_cpt == 'k')
4225 type = CTRL_X_DICTIONARY;
4226 else
4227 type = CTRL_X_THESAURUS;
4228 if (*++e_cpt != ',' && *e_cpt != NUL)
4229 {
4230 dict = e_cpt;
4231 dict_f = DICT_FIRST;
4232 }
4233 }
4234#ifdef FEAT_FIND_ID
4235 else if (*e_cpt == 'i')
4236 type = CTRL_X_PATH_PATTERNS;
4237 else if (*e_cpt == 'd')
4238 type = CTRL_X_PATH_DEFINES;
4239#endif
4240 else if (*e_cpt == ']' || *e_cpt == 't')
4241 {
4242 type = CTRL_X_TAGS;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004243 vim_snprintf((char *)IObuff, IOSIZE, _("Scanning tags."));
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004244 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 }
4246 else
4247 type = -1;
4248
4249 /* in any case e_cpt is advanced to the next entry */
4250 (void)copy_option_part(&e_cpt, IObuff, IOSIZE, ",");
4251
4252 found_all = TRUE;
4253 if (type == -1)
4254 continue;
4255 }
4256 }
4257
4258 switch (type)
4259 {
4260 case -1:
4261 break;
4262#ifdef FEAT_FIND_ID
4263 case CTRL_X_PATH_PATTERNS:
4264 case CTRL_X_PATH_DEFINES:
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004265 find_pattern_in_path(compl_pattern, compl_direction,
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004266 (int)STRLEN(compl_pattern), FALSE, FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 (type == CTRL_X_PATH_DEFINES
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004268 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 ? FIND_DEFINE : FIND_ANY, 1L, ACTION_EXPAND,
4270 (linenr_T)1, (linenr_T)MAXLNUM);
4271 break;
4272#endif
4273
4274 case CTRL_X_DICTIONARY:
4275 case CTRL_X_THESAURUS:
4276 ins_compl_dictionaries(
Bram Moolenaar0b238792006-03-02 22:49:12 +00004277 dict != NULL ? dict
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 : (type == CTRL_X_THESAURUS
4279 ? (*curbuf->b_p_tsr == NUL
4280 ? p_tsr
4281 : curbuf->b_p_tsr)
4282 : (*curbuf->b_p_dict == NUL
4283 ? p_dict
4284 : curbuf->b_p_dict)),
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004285 compl_pattern,
Bram Moolenaar0b238792006-03-02 22:49:12 +00004286 dict != NULL ? dict_f
4287 : 0, type == CTRL_X_THESAURUS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 dict = NULL;
4289 break;
4290
4291 case CTRL_X_TAGS:
4292 /* set p_ic according to p_ic, p_scs and pat for find_tags(). */
4293 save_p_ic = p_ic;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004294 p_ic = ignorecase(compl_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01004296 /* Find up to TAG_MANY matches. Avoids that an enormous number
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004297 * of matches is found when compl_pattern is empty */
4298 if (find_tags(compl_pattern, &num_matches, &matches,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 TAG_REGEXP | TAG_NAMES | TAG_NOIC |
4300 TAG_INS_COMP | (ctrl_x_mode ? TAG_VERBOSE : 0),
4301 TAG_MANY, curbuf->b_ffname) == OK && num_matches > 0)
4302 {
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004303 ins_compl_add_matches(num_matches, matches, p_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 }
4305 p_ic = save_p_ic;
4306 break;
4307
4308 case CTRL_X_FILES:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004309 if (expand_wildcards(1, &compl_pattern, &num_matches, &matches,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 EW_FILE|EW_DIR|EW_ADDSLASH|EW_SILENT) == OK)
4311 {
4312
4313 /* May change home directory back to "~". */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004314 tilde_replace(compl_pattern, num_matches, matches);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004315 ins_compl_add_matches(num_matches, matches,
4316#ifdef CASE_INSENSITIVE_FILENAME
4317 TRUE
4318#else
4319 FALSE
4320#endif
4321 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 }
4323 break;
4324
4325 case CTRL_X_CMDLINE:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004326 if (expand_cmdline(&compl_xp, compl_pattern,
4327 (int)STRLEN(compl_pattern),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 &num_matches, &matches) == EXPAND_OK)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004329 ins_compl_add_matches(num_matches, matches, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 break;
4331
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004332#ifdef FEAT_COMPL_FUNC
4333 case CTRL_X_FUNCTION:
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004334 case CTRL_X_OMNI:
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004335 expand_by_function(type, compl_pattern);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004336 break;
4337#endif
4338
Bram Moolenaar488c6512005-08-11 20:09:58 +00004339 case CTRL_X_SPELL:
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00004340#ifdef FEAT_SPELL
Bram Moolenaar488c6512005-08-11 20:09:58 +00004341 num_matches = expand_spelling(first_match_pos.lnum,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004342 compl_pattern, &matches);
Bram Moolenaar488c6512005-08-11 20:09:58 +00004343 if (num_matches > 0)
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004344 ins_compl_add_matches(num_matches, matches, p_ic);
Bram Moolenaar488c6512005-08-11 20:09:58 +00004345#endif
4346 break;
4347
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 default: /* normal ^P/^N and ^X^L */
4349 /*
4350 * If 'infercase' is set, don't use 'smartcase' here
4351 */
4352 save_p_scs = p_scs;
4353 if (ins_buf->b_p_inf)
4354 p_scs = FALSE;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004355
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 /* buffers other than curbuf are scanned from the beginning or the
4357 * end but never from the middle, thus setting nowrapscan in this
4358 * buffers is a good idea, on the other hand, we always set
4359 * wrapscan for curbuf to avoid missing matches -- Acevedo,Webb */
4360 save_p_ws = p_ws;
4361 if (ins_buf != curbuf)
4362 p_ws = FALSE;
4363 else if (*e_cpt == '.')
4364 p_ws = TRUE;
4365 for (;;)
4366 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00004367 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004369 ++msg_silent; /* Don't want messages for wrapscan. */
4370
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004371 /* ctrl_x_mode == CTRL_X_WHOLE_LINE || word-wise search that
4372 * has added a word that was at the beginning of the line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 if ( ctrl_x_mode == CTRL_X_WHOLE_LINE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004374 || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 found_new_match = search_for_exact_line(ins_buf, pos,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004376 compl_direction, compl_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 else
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004378 found_new_match = searchit(NULL, ins_buf, pos,
4379 compl_direction,
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004380 compl_pattern, 1L, SEARCH_KEEP + SEARCH_NFMSG,
Bram Moolenaar76929292008-01-06 19:07:36 +00004381 RE_LAST, (linenr_T)0, NULL);
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004382 --msg_silent;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004383 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004385 /* set "compl_started" even on fail */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004386 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 first_match_pos = *pos;
4388 last_match_pos = *pos;
4389 }
4390 else if (first_match_pos.lnum == last_match_pos.lnum
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004391 && first_match_pos.col == last_match_pos.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 found_new_match = FAIL;
4393 if (found_new_match == FAIL)
4394 {
4395 if (ins_buf == curbuf)
4396 found_all = TRUE;
4397 break;
4398 }
4399
4400 /* when ADDING, the text before the cursor matches, skip it */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004401 if ( (compl_cont_status & CONT_ADDING) && ins_buf == curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 && ini->lnum == pos->lnum
4403 && ini->col == pos->col)
4404 continue;
4405 ptr = ml_get_buf(ins_buf, pos->lnum, FALSE) + pos->col;
4406 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
4407 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004408 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 {
4410 if (pos->lnum >= ins_buf->b_ml.ml_line_count)
4411 continue;
4412 ptr = ml_get_buf(ins_buf, pos->lnum + 1, FALSE);
4413 if (!p_paste)
4414 ptr = skipwhite(ptr);
4415 }
4416 len = (int)STRLEN(ptr);
4417 }
4418 else
4419 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004420 char_u *tmp_ptr = ptr;
4421
4422 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004424 tmp_ptr += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 /* Skip if already inside a word. */
4426 if (vim_iswordp(tmp_ptr))
4427 continue;
4428 /* Find start of next word. */
4429 tmp_ptr = find_word_start(tmp_ptr);
4430 }
4431 /* Find end of this word. */
4432 tmp_ptr = find_word_end(tmp_ptr);
4433 len = (int)(tmp_ptr - ptr);
4434
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004435 if ((compl_cont_status & CONT_ADDING)
4436 && len == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 {
4438 if (pos->lnum < ins_buf->b_ml.ml_line_count)
4439 {
4440 /* Try next line, if any. the new word will be
4441 * "join" as if the normal command "J" was used.
4442 * IOSIZE is always greater than
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004443 * compl_length, so the next STRNCPY always
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 * works -- Acevedo */
4445 STRNCPY(IObuff, ptr, len);
4446 ptr = ml_get_buf(ins_buf, pos->lnum + 1, FALSE);
4447 tmp_ptr = ptr = skipwhite(ptr);
4448 /* Find start of next word. */
4449 tmp_ptr = find_word_start(tmp_ptr);
4450 /* Find end of next word. */
4451 tmp_ptr = find_word_end(tmp_ptr);
4452 if (tmp_ptr > ptr)
4453 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004454 if (*ptr != ')' && IObuff[len - 1] != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004456 if (IObuff[len - 1] != ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 IObuff[len++] = ' ';
4458 /* IObuf =~ "\k.* ", thus len >= 2 */
4459 if (p_js
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004460 && (IObuff[len - 2] == '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 || (vim_strchr(p_cpo, CPO_JOINSP)
4462 == NULL
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004463 && (IObuff[len - 2] == '?'
4464 || IObuff[len - 2] == '!'))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 IObuff[len++] = ' ';
4466 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01004467 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 if (tmp_ptr - ptr >= IOSIZE - len)
4469 tmp_ptr = ptr + IOSIZE - len - 1;
4470 STRNCPY(IObuff + len, ptr, tmp_ptr - ptr);
4471 len += (int)(tmp_ptr - ptr);
Bram Moolenaar572cb562005-08-05 21:35:02 +00004472 flags |= CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 }
4474 IObuff[len] = NUL;
4475 ptr = IObuff;
4476 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004477 if (len == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 continue;
4479 }
4480 }
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004481 if (ins_compl_add_infercase(ptr, len, p_ic,
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004482 ins_buf == curbuf ? NULL : ins_buf->b_sfname,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004483 0, flags) != NOTDONE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 {
4485 found_new_match = OK;
4486 break;
4487 }
4488 }
4489 p_scs = save_p_scs;
4490 p_ws = save_p_ws;
4491 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004492
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004493 /* check if compl_curr_match has changed, (e.g. other type of
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00004494 * expansion added something) */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004495 if (type != 0 && compl_curr_match != old_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 found_new_match = OK;
4497
4498 /* break the loop for specialized modes (use 'complete' just for the
4499 * generic ctrl_x_mode == 0) or when we've found a new match */
4500 if ((ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004501 || found_new_match != FAIL)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004502 {
4503 if (got_int)
4504 break;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004505 /* Fill the popup menu as soon as possible. */
Bram Moolenaar5948a572006-10-03 13:49:29 +00004506 if (type != -1)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004507 ins_compl_check_keys(0);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004508
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004509 if ((ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE)
4510 || compl_interrupted)
4511 break;
4512 compl_started = TRUE;
4513 }
4514 else
4515 {
4516 /* Mark a buffer scanned when it has been scanned completely */
4517 if (type == 0 || type == CTRL_X_PATH_PATTERNS)
4518 ins_buf->b_scanned = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004520 compl_started = FALSE;
4521 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004523 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524
4525 if ((ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_WHOLE_LINE)
4526 && *e_cpt == NUL) /* Got to end of 'complete' */
4527 found_new_match = FAIL;
4528
4529 i = -1; /* total of matches, unknown */
4530 if (found_new_match == FAIL
4531 || (ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE))
4532 i = ins_compl_make_cyclic();
4533
4534 /* If several matches were added (FORWARD) or the search failed and has
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004535 * just been made cyclic then we have to move compl_curr_match to the next
4536 * or previous entry (if any) -- Acevedo */
Bram Moolenaara94bc432006-03-10 21:42:59 +00004537 compl_curr_match = compl_direction == FORWARD ? old_match->cp_next
4538 : old_match->cp_prev;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004539 if (compl_curr_match == NULL)
4540 compl_curr_match = old_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 return i;
4542}
4543
4544/* Delete the old text being completed. */
4545 static void
4546ins_compl_delete()
4547{
4548 int i;
4549
4550 /*
4551 * In insert mode: Delete the typed part.
4552 * In replace mode: Put the old characters back, if any.
4553 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004554 i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 backspace_until_column(i);
4556 changed_cline_bef_curs();
4557}
4558
4559/* Insert the new text being completed. */
4560 static void
4561ins_compl_insert()
4562{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00004563 ins_bytes(compl_shown_match->cp_str + ins_compl_len());
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004564 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
4565 compl_used_match = FALSE;
4566 else
4567 compl_used_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568}
4569
4570/*
4571 * Fill in the next completion in the current direction.
Bram Moolenaar572cb562005-08-05 21:35:02 +00004572 * If "allow_get_expansion" is TRUE, then we may call ins_compl_get_exp() to
4573 * get more completions. If it is FALSE, then we just do nothing when there
4574 * are no more completions in a given direction. The latter case is used when
4575 * we are still in the middle of finding completions, to allow browsing
4576 * through the ones found so far.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 * Return the total number of matches, or -1 if still unknown -- webb.
4578 *
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004579 * compl_curr_match is currently being used by ins_compl_get_exp(), so we use
4580 * compl_shown_match here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 *
4582 * Note that this function may be called recursively once only. First with
Bram Moolenaar572cb562005-08-05 21:35:02 +00004583 * "allow_get_expansion" TRUE, which calls ins_compl_get_exp(), which in turn
4584 * calls this function with "allow_get_expansion" FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 */
4586 static int
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004587ins_compl_next(allow_get_expansion, count, insert_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 int allow_get_expansion;
Bram Moolenaare3226be2005-12-18 22:10:00 +00004589 int count; /* repeat completion this many times; should
4590 be at least 1 */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004591 int insert_match; /* Insert the newly selected match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592{
4593 int num_matches = -1;
4594 int i;
Bram Moolenaare3226be2005-12-18 22:10:00 +00004595 int todo = count;
Bram Moolenaara6557602006-02-04 22:43:20 +00004596 compl_T *found_compl = NULL;
4597 int found_end = FALSE;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004598 int advance;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01004600 /* When user complete function return -1 for findstart which is next
4601 * time of 'always', compl_shown_match become NULL. */
4602 if (compl_shown_match == NULL)
4603 return -1;
4604
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004605 if (compl_leader != NULL
4606 && (compl_shown_match->cp_flags & ORIGINAL_TEXT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004608 /* Set "compl_shown_match" to the actually shown match, it may differ
4609 * when "compl_leader" is used to omit some of the matches. */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004610 while (!ins_compl_equal(compl_shown_match,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004611 compl_leader, (int)STRLEN(compl_leader))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004612 && compl_shown_match->cp_next != NULL
4613 && compl_shown_match->cp_next != compl_first_match)
4614 compl_shown_match = compl_shown_match->cp_next;
Bram Moolenaar0440ca32006-05-13 13:24:33 +00004615
4616 /* If we didn't find it searching forward, and compl_shows_dir is
4617 * backward, find the last match. */
4618 if (compl_shows_dir == BACKWARD
4619 && !ins_compl_equal(compl_shown_match,
4620 compl_leader, (int)STRLEN(compl_leader))
4621 && (compl_shown_match->cp_next == NULL
4622 || compl_shown_match->cp_next == compl_first_match))
4623 {
4624 while (!ins_compl_equal(compl_shown_match,
4625 compl_leader, (int)STRLEN(compl_leader))
4626 && compl_shown_match->cp_prev != NULL
4627 && compl_shown_match->cp_prev != compl_first_match)
4628 compl_shown_match = compl_shown_match->cp_prev;
4629 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004630 }
4631
4632 if (allow_get_expansion && insert_match
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004633 && (!(compl_get_longest || compl_restarting) || compl_used_match))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 /* Delete old text to be replaced */
4635 ins_compl_delete();
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004636
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004637 /* When finding the longest common text we stick at the original text,
4638 * don't let CTRL-N or CTRL-P move to the first match. */
4639 advance = count != 1 || !allow_get_expansion || !compl_get_longest;
4640
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004641 /* When restarting the search don't insert the first match either. */
4642 if (compl_restarting)
4643 {
4644 advance = FALSE;
4645 compl_restarting = FALSE;
4646 }
4647
Bram Moolenaare3226be2005-12-18 22:10:00 +00004648 /* Repeat this for when <PageUp> or <PageDown> is typed. But don't wrap
4649 * around. */
4650 while (--todo >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 {
Bram Moolenaare3226be2005-12-18 22:10:00 +00004652 if (compl_shows_dir == FORWARD && compl_shown_match->cp_next != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 {
Bram Moolenaare3226be2005-12-18 22:10:00 +00004654 compl_shown_match = compl_shown_match->cp_next;
Bram Moolenaara6557602006-02-04 22:43:20 +00004655 found_end = (compl_first_match != NULL
4656 && (compl_shown_match->cp_next == compl_first_match
4657 || compl_shown_match == compl_first_match));
Bram Moolenaare3226be2005-12-18 22:10:00 +00004658 }
4659 else if (compl_shows_dir == BACKWARD
4660 && compl_shown_match->cp_prev != NULL)
4661 {
Bram Moolenaara6557602006-02-04 22:43:20 +00004662 found_end = (compl_shown_match == compl_first_match);
Bram Moolenaare3226be2005-12-18 22:10:00 +00004663 compl_shown_match = compl_shown_match->cp_prev;
Bram Moolenaara6557602006-02-04 22:43:20 +00004664 found_end |= (compl_shown_match == compl_first_match);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 }
4666 else
Bram Moolenaare3226be2005-12-18 22:10:00 +00004667 {
Bram Moolenaara260a972006-06-23 19:36:29 +00004668 if (!allow_get_expansion)
4669 {
4670 if (advance)
4671 {
4672 if (compl_shows_dir == BACKWARD)
4673 compl_pending -= todo + 1;
4674 else
4675 compl_pending += todo + 1;
4676 }
4677 return -1;
4678 }
4679
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004680 if (advance)
4681 {
4682 if (compl_shows_dir == BACKWARD)
4683 --compl_pending;
4684 else
4685 ++compl_pending;
4686 }
Bram Moolenaara6557602006-02-04 22:43:20 +00004687
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004688 /* Find matches. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004689 num_matches = ins_compl_get_exp(&compl_startpos);
Bram Moolenaara260a972006-06-23 19:36:29 +00004690
4691 /* handle any pending completions */
4692 while (compl_pending != 0 && compl_direction == compl_shows_dir
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004693 && advance)
Bram Moolenaara260a972006-06-23 19:36:29 +00004694 {
4695 if (compl_pending > 0 && compl_shown_match->cp_next != NULL)
4696 {
4697 compl_shown_match = compl_shown_match->cp_next;
4698 --compl_pending;
4699 }
4700 if (compl_pending < 0 && compl_shown_match->cp_prev != NULL)
4701 {
4702 compl_shown_match = compl_shown_match->cp_prev;
4703 ++compl_pending;
4704 }
4705 else
4706 break;
4707 }
Bram Moolenaara6557602006-02-04 22:43:20 +00004708 found_end = FALSE;
4709 }
4710 if ((compl_shown_match->cp_flags & ORIGINAL_TEXT) == 0
4711 && compl_leader != NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004712 && !ins_compl_equal(compl_shown_match,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004713 compl_leader, (int)STRLEN(compl_leader)))
Bram Moolenaara6557602006-02-04 22:43:20 +00004714 ++todo;
4715 else
4716 /* Remember a matching item. */
4717 found_compl = compl_shown_match;
4718
4719 /* Stop at the end of the list when we found a usable match. */
4720 if (found_end)
4721 {
4722 if (found_compl != NULL)
4723 {
4724 compl_shown_match = found_compl;
4725 break;
4726 }
4727 todo = 1; /* use first usable match after wrapping around */
Bram Moolenaare3226be2005-12-18 22:10:00 +00004728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 }
4730
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004731 /* Insert the text of the new completion, or the compl_leader. */
4732 if (insert_match)
4733 {
4734 if (!compl_get_longest || compl_used_match)
4735 ins_compl_insert();
4736 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00004737 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004738 }
4739 else
4740 compl_used_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741
4742 if (!allow_get_expansion)
4743 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004744 /* may undisplay the popup menu first */
4745 ins_compl_upd_pum();
4746
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004747 /* redraw to show the user what was inserted */
4748 update_screen(0);
4749
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004750 /* display the updated popup menu */
4751 ins_compl_show_pum();
Bram Moolenaar14716812006-05-04 21:54:08 +00004752#ifdef FEAT_GUI
4753 if (gui.in_use)
4754 {
4755 /* Show the cursor after the match, not after the redrawn text. */
4756 setcursor();
4757 out_flush();
4758 gui_update_cursor(FALSE, FALSE);
4759 }
4760#endif
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004761
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 /* Delete old text to be replaced, since we're still searching and
4763 * don't want to match ourselves! */
4764 ins_compl_delete();
4765 }
4766
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004767 /* Enter will select a match when the match wasn't inserted and the popup
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00004768 * menu is visible. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004769 compl_enter_selects = !insert_match && compl_match_array != NULL;
4770
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 /*
4772 * Show the file name for the match (if any)
4773 * Truncate the file name to avoid a wait for return.
4774 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00004775 if (compl_shown_match->cp_fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 {
4777 STRCPY(IObuff, "match in file ");
Bram Moolenaar572cb562005-08-05 21:35:02 +00004778 i = (vim_strsize(compl_shown_match->cp_fname) + 16) - sc_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 if (i <= 0)
4780 i = 0;
4781 else
4782 STRCAT(IObuff, "<");
Bram Moolenaar572cb562005-08-05 21:35:02 +00004783 STRCAT(IObuff, compl_shown_match->cp_fname + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 msg(IObuff);
4785 redraw_cmdline = FALSE; /* don't overwrite! */
4786 }
4787
4788 return num_matches;
4789}
4790
4791/*
4792 * Call this while finding completions, to check whether the user has hit a key
4793 * that should change the currently displayed completion, or exit completion
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004794 * mode. Also, when compl_pending is not zero, show a completion as soon as
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 * possible. -- webb
Bram Moolenaar572cb562005-08-05 21:35:02 +00004796 * "frequency" specifies out of how many calls we actually check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 */
4798 void
Bram Moolenaar572cb562005-08-05 21:35:02 +00004799ins_compl_check_keys(frequency)
4800 int frequency;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801{
4802 static int count = 0;
4803
4804 int c;
4805
4806 /* Don't check when reading keys from a script. That would break the test
4807 * scripts */
4808 if (using_script())
4809 return;
4810
4811 /* Only do this at regular intervals */
Bram Moolenaar572cb562005-08-05 21:35:02 +00004812 if (++count < frequency)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813 return;
4814 count = 0;
4815
Bram Moolenaara260a972006-06-23 19:36:29 +00004816 /* Check for a typed key. Do use mappings, otherwise vim_is_ctrl_x_key()
4817 * can't do its work correctly. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 c = vpeekc_any();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819 if (c != NUL)
4820 {
4821 if (vim_is_ctrl_x_key(c) && c != Ctrl_X && c != Ctrl_R)
4822 {
4823 c = safe_vgetc(); /* Eat the character */
Bram Moolenaare3226be2005-12-18 22:10:00 +00004824 compl_shows_dir = ins_compl_key2dir(c);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004825 (void)ins_compl_next(FALSE, ins_compl_key2count(c),
4826 c != K_UP && c != K_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 }
Bram Moolenaara260a972006-06-23 19:36:29 +00004828 else
4829 {
4830 /* Need to get the character to have KeyTyped set. We'll put it
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004831 * back with vungetc() below. But skip K_IGNORE. */
Bram Moolenaara260a972006-06-23 19:36:29 +00004832 c = safe_vgetc();
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004833 if (c != K_IGNORE)
4834 {
4835 /* Don't interrupt completion when the character wasn't typed,
4836 * e.g., when doing @q to replay keys. */
4837 if (c != Ctrl_R && KeyTyped)
4838 compl_interrupted = TRUE;
Bram Moolenaara260a972006-06-23 19:36:29 +00004839
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004840 vungetc(c);
4841 }
Bram Moolenaara260a972006-06-23 19:36:29 +00004842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004844 if (compl_pending != 0 && !got_int)
Bram Moolenaara260a972006-06-23 19:36:29 +00004845 {
4846 int todo = compl_pending > 0 ? compl_pending : -compl_pending;
4847
4848 compl_pending = 0;
4849 (void)ins_compl_next(FALSE, todo, TRUE);
4850 }
Bram Moolenaare3226be2005-12-18 22:10:00 +00004851}
4852
4853/*
4854 * Decide the direction of Insert mode complete from the key typed.
4855 * Returns BACKWARD or FORWARD.
4856 */
4857 static int
4858ins_compl_key2dir(c)
4859 int c;
4860{
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004861 if (c == Ctrl_P || c == Ctrl_L
4862 || (pum_visible() && (c == K_PAGEUP || c == K_KPAGEUP
4863 || c == K_S_UP || c == K_UP)))
Bram Moolenaare3226be2005-12-18 22:10:00 +00004864 return BACKWARD;
4865 return FORWARD;
4866}
4867
4868/*
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004869 * Return TRUE for keys that are used for completion only when the popup menu
4870 * is visible.
4871 */
4872 static int
4873ins_compl_pum_key(c)
4874 int c;
4875{
4876 return pum_visible() && (c == K_PAGEUP || c == K_KPAGEUP || c == K_S_UP
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004877 || c == K_PAGEDOWN || c == K_KPAGEDOWN || c == K_S_DOWN
4878 || c == K_UP || c == K_DOWN);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004879}
4880
4881/*
Bram Moolenaare3226be2005-12-18 22:10:00 +00004882 * Decide the number of completions to move forward.
4883 * Returns 1 for most keys, height of the popup menu for page-up/down keys.
4884 */
4885 static int
4886ins_compl_key2count(c)
4887 int c;
4888{
4889 int h;
4890
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004891 if (ins_compl_pum_key(c) && c != K_UP && c != K_DOWN)
Bram Moolenaare3226be2005-12-18 22:10:00 +00004892 {
4893 h = pum_get_height();
4894 if (h > 3)
4895 h -= 2; /* keep some context */
4896 return h;
4897 }
4898 return 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899}
4900
4901/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004902 * Return TRUE if completion with "c" should insert the match, FALSE if only
4903 * to change the currently selected completion.
4904 */
4905 static int
4906ins_compl_use_match(c)
4907 int c;
4908{
4909 switch (c)
4910 {
4911 case K_UP:
4912 case K_DOWN:
4913 case K_PAGEDOWN:
4914 case K_KPAGEDOWN:
4915 case K_S_DOWN:
4916 case K_PAGEUP:
4917 case K_KPAGEUP:
4918 case K_S_UP:
4919 return FALSE;
4920 }
4921 return TRUE;
4922}
4923
4924/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 * Do Insert mode completion.
4926 * Called when character "c" was typed, which has a meaning for completion.
4927 * Returns OK if completion was done, FAIL if something failed (out of mem).
4928 */
4929 static int
4930ins_complete(c)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004931 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004933 char_u *line;
4934 int startcol = 0; /* column where searched text starts */
4935 colnr_T curs_col; /* cursor column */
4936 int n;
Bram Moolenaarbe678f82010-03-10 14:15:54 +01004937 int save_w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938
Bram Moolenaare3226be2005-12-18 22:10:00 +00004939 compl_direction = ins_compl_key2dir(c);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004940 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
4942 /* First time we hit ^N or ^P (in a row, I mean) */
4943
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 did_ai = FALSE;
4945#ifdef FEAT_SMARTINDENT
4946 did_si = FALSE;
4947 can_si = FALSE;
4948 can_si_back = FALSE;
4949#endif
4950 if (stop_arrow() == FAIL)
4951 return FAIL;
4952
4953 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004954 curs_col = curwin->w_cursor.col;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004955 compl_pending = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956
Bram Moolenaar711d5b52007-10-19 18:40:51 +00004957 /* If this same ctrl_x_mode has been interrupted use the text from
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004958 * "compl_startpos" to the cursor as a pattern to add a new word
4959 * instead of expand the one before the cursor, in word-wise if
Bram Moolenaar711d5b52007-10-19 18:40:51 +00004960 * "compl_startpos" is not in the same line as the cursor then fix it
4961 * (the line has been split because it was longer than 'tw'). if SOL
4962 * is set then skip the previous pattern, a word at the beginning of
4963 * the line has been inserted, we'll look for that -- Acevedo. */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004964 if ((compl_cont_status & CONT_INTRPT) == CONT_INTRPT
4965 && compl_cont_mode == ctrl_x_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 {
4967 /*
4968 * it is a continued search
4969 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004970 compl_cont_status &= ~CONT_INTRPT; /* remove INTRPT */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 if (ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_PATH_PATTERNS
4972 || ctrl_x_mode == CTRL_X_PATH_DEFINES)
4973 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004974 if (compl_startpos.lnum != curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004976 /* line (probably) wrapped, set compl_startpos to the
4977 * first non_blank in the line, if it is not a wordchar
4978 * include it to get a better pattern, but then we don't
4979 * want the "\\<" prefix, check it bellow */
4980 compl_col = (colnr_T)(skipwhite(line) - line);
4981 compl_startpos.col = compl_col;
4982 compl_startpos.lnum = curwin->w_cursor.lnum;
4983 compl_cont_status &= ~CONT_SOL; /* clear SOL if present */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 }
4985 else
4986 {
4987 /* S_IPOS was set when we inserted a word that was at the
4988 * beginning of the line, which means that we'll go to SOL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004989 * mode but first we need to redefine compl_startpos */
4990 if (compl_cont_status & CONT_S_IPOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004992 compl_cont_status |= CONT_SOL;
4993 compl_startpos.col = (colnr_T)(skipwhite(
4994 line + compl_length
4995 + compl_startpos.col) - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004997 compl_col = compl_startpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004999 compl_length = curwin->w_cursor.col - (int)compl_col;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005000 /* IObuff is used to add a "word from the next line" would we
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00005001 * have enough space? just being paranoid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002#define MIN_SPACE 75
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005003 if (compl_length > (IOSIZE - MIN_SPACE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005005 compl_cont_status &= ~CONT_SOL;
5006 compl_length = (IOSIZE - MIN_SPACE);
5007 compl_col = curwin->w_cursor.col - compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005009 compl_cont_status |= CONT_ADDING | CONT_N_ADDS;
5010 if (compl_length < 1)
5011 compl_cont_status &= CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 }
5013 else if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005014 compl_cont_status = CONT_ADDING | CONT_N_ADDS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005016 compl_cont_status = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 }
5018 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005019 compl_cont_status &= CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005021 if (!(compl_cont_status & CONT_ADDING)) /* normal expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005023 compl_cont_mode = ctrl_x_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 if (ctrl_x_mode != 0) /* Remove LOCAL if ctrl_x_mode != 0 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005025 compl_cont_status = 0;
5026 compl_cont_status |= CONT_N_ADDS;
5027 compl_startpos = curwin->w_cursor;
5028 startcol = (int)curs_col;
5029 compl_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 }
5031
5032 /* Work out completion pattern and original text -- webb */
5033 if (ctrl_x_mode == 0 || (ctrl_x_mode & CTRL_X_WANT_IDENT))
5034 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005035 if ((compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 || ctrl_x_mode == CTRL_X_PATH_DEFINES)
5037 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005038 if (!(compl_cont_status & CONT_ADDING))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005040 while (--startcol >= 0 && vim_isIDc(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005042 compl_col += ++startcol;
5043 compl_length = curs_col - startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 }
5045 if (p_ic)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005046 compl_pattern = str_foldcase(line + compl_col,
5047 compl_length, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005049 compl_pattern = vim_strnsave(line + compl_col,
5050 compl_length);
5051 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 return FAIL;
5053 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005054 else if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 {
5056 char_u *prefix = (char_u *)"\\<";
5057
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005058 /* we need up to 2 extra chars for the prefix */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005059 compl_pattern = alloc(quote_meta(NULL, line + compl_col,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005060 compl_length) + 2);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005061 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005063 if (!vim_iswordp(line + compl_col)
5064 || (compl_col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 && (
5066#ifdef FEAT_MBYTE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005067 vim_iswordp(mb_prevptr(line, line + compl_col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005069 vim_iswordc(line[compl_col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070#endif
5071 )))
5072 prefix = (char_u *)"";
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005073 STRCPY((char *)compl_pattern, prefix);
5074 (void)quote_meta(compl_pattern + STRLEN(prefix),
5075 line + compl_col, compl_length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005077 else if (--startcol < 0 ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078#ifdef FEAT_MBYTE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005079 !vim_iswordp(mb_prevptr(line, line + startcol + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005081 !vim_iswordc(line[startcol])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082#endif
5083 )
5084 {
5085 /* Match any word of at least two chars */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005086 compl_pattern = vim_strsave((char_u *)"\\<\\k\\k");
5087 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005089 compl_col += curs_col;
5090 compl_length = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 }
5092 else
5093 {
5094#ifdef FEAT_MBYTE
5095 /* Search the point of change class of multibyte character
5096 * or not a word single byte character backward. */
5097 if (has_mbyte)
5098 {
5099 int base_class;
5100 int head_off;
5101
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005102 startcol -= (*mb_head_off)(line, line + startcol);
5103 base_class = mb_get_class(line + startcol);
5104 while (--startcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005106 head_off = (*mb_head_off)(line, line + startcol);
5107 if (base_class != mb_get_class(line + startcol
5108 - head_off))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005110 startcol -= head_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 }
5112 }
5113 else
5114#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005115 while (--startcol >= 0 && vim_iswordc(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005117 compl_col += ++startcol;
5118 compl_length = (int)curs_col - startcol;
5119 if (compl_length == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 {
5121 /* Only match word with at least two chars -- webb
5122 * there's no need to call quote_meta,
5123 * alloc(7) is enough -- Acevedo
5124 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005125 compl_pattern = alloc(7);
5126 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005128 STRCPY((char *)compl_pattern, "\\<");
5129 (void)quote_meta(compl_pattern + 2, line + compl_col, 1);
5130 STRCAT((char *)compl_pattern, "\\k");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 }
5132 else
5133 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005134 compl_pattern = alloc(quote_meta(NULL, line + compl_col,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005135 compl_length) + 2);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005136 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005138 STRCPY((char *)compl_pattern, "\\<");
5139 (void)quote_meta(compl_pattern + 2, line + compl_col,
5140 compl_length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 }
5142 }
5143 }
5144 else if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
5145 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005146 compl_col = (colnr_T)(skipwhite(line) - line);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005147 compl_length = (int)curs_col - (int)compl_col;
5148 if (compl_length < 0) /* cursor in indent: empty pattern */
5149 compl_length = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 if (p_ic)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005151 compl_pattern = str_foldcase(line + compl_col, compl_length,
5152 NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005154 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5155 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 return FAIL;
5157 }
5158 else if (ctrl_x_mode == CTRL_X_FILES)
5159 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005160 while (--startcol >= 0 && vim_isfilec(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005162 compl_col += ++startcol;
5163 compl_length = (int)curs_col - startcol;
5164 compl_pattern = addstar(line + compl_col, compl_length,
5165 EXPAND_FILES);
5166 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 return FAIL;
5168 }
5169 else if (ctrl_x_mode == CTRL_X_CMDLINE)
5170 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005171 compl_pattern = vim_strnsave(line, curs_col);
5172 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005174 set_cmd_context(&compl_xp, compl_pattern,
5175 (int)STRLEN(compl_pattern), curs_col);
5176 if (compl_xp.xp_context == EXPAND_UNSUCCESSFUL
5177 || compl_xp.xp_context == EXPAND_NOTHING)
Bram Moolenaarf83c5c02006-08-16 19:24:22 +00005178 /* No completion possible, use an empty pattern to get a
5179 * "pattern not found" message. */
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005180 compl_col = curs_col;
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005181 else
Bram Moolenaarf83c5c02006-08-16 19:24:22 +00005182 compl_col = (int)(compl_xp.xp_pattern - compl_pattern);
5183 compl_length = curs_col - compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005185 else if (ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005186 {
Bram Moolenaare344bea2005-09-01 20:46:49 +00005187#ifdef FEAT_COMPL_FUNC
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005188 /*
Bram Moolenaare344bea2005-09-01 20:46:49 +00005189 * Call user defined function 'completefunc' with "a:findstart"
5190 * set to 1 to obtain the length of text to use for completion.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005191 */
Bram Moolenaare344bea2005-09-01 20:46:49 +00005192 char_u *args[2];
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005193 int col;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005194 char_u *funcname;
5195 pos_T pos;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005196 win_T *curwin_save;
5197 buf_T *curbuf_save;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005198
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005199 /* Call 'completefunc' or 'omnifunc' and get pattern length as a
Bram Moolenaare344bea2005-09-01 20:46:49 +00005200 * string */
5201 funcname = ctrl_x_mode == CTRL_X_FUNCTION
5202 ? curbuf->b_p_cfu : curbuf->b_p_ofu;
5203 if (*funcname == NUL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005204 {
5205 EMSG2(_(e_notset), ctrl_x_mode == CTRL_X_FUNCTION
5206 ? "completefunc" : "omnifunc");
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005207 return FAIL;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005208 }
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005209
5210 args[0] = (char_u *)"1";
Bram Moolenaare344bea2005-09-01 20:46:49 +00005211 args[1] = NULL;
5212 pos = curwin->w_cursor;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005213 curwin_save = curwin;
5214 curbuf_save = curbuf;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005215 col = call_func_retnr(funcname, 2, args, FALSE);
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005216 if (curwin_save != curwin || curbuf_save != curbuf)
5217 {
5218 EMSG(_(e_complwin));
5219 return FAIL;
5220 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00005221 curwin->w_cursor = pos; /* restore the cursor position */
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005222 check_cursor();
5223 if (!equalpos(curwin->w_cursor, pos))
5224 {
5225 EMSG(_(e_compldel));
5226 return FAIL;
5227 }
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005228
Bram Moolenaar6110a002012-01-26 18:58:38 +01005229 /* Return value -2 means the user complete function wants to
Bram Moolenaar8a4c1362012-05-18 16:35:21 +02005230 * cancel the complete without an error.
5231 * Return value -3 does the same as -2 and leaves CTRL-X mode.*/
Bram Moolenaar6110a002012-01-26 18:58:38 +01005232 if (col == -2)
5233 return FAIL;
Bram Moolenaar8a4c1362012-05-18 16:35:21 +02005234 if (col == -3)
5235 {
5236 ctrl_x_mode = 0;
5237 edit_submode = NULL;
5238 msg_clr_cmdline();
5239 return FAIL;
5240 }
Bram Moolenaar6110a002012-01-26 18:58:38 +01005241
Bram Moolenaar82139082011-09-14 16:52:09 +02005242 /*
5243 * Reset extended parameters of completion, when start new
5244 * completion.
5245 */
5246 compl_opt_refresh_always = FALSE;
5247
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005248 if (col < 0)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005249 col = curs_col;
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005250 compl_col = col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005251 if (compl_col > curs_col)
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005252 compl_col = curs_col;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005253
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005254 /* Setup variables for completion. Need to obtain "line" again,
5255 * it may have become invalid. */
5256 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005257 compl_length = curs_col - compl_col;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005258 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5259 if (compl_pattern == NULL)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005260#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005261 return FAIL;
5262 }
Bram Moolenaar488c6512005-08-11 20:09:58 +00005263 else if (ctrl_x_mode == CTRL_X_SPELL)
5264 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005265#ifdef FEAT_SPELL
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00005266 if (spell_bad_len > 0)
5267 compl_col = curs_col - spell_bad_len;
5268 else
5269 compl_col = spell_word_start(startcol);
5270 if (compl_col >= (colnr_T)startcol)
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005271 {
5272 compl_length = 0;
5273 compl_col = curs_col;
5274 }
5275 else
5276 {
5277 spell_expand_check_cap(compl_col);
5278 compl_length = (int)curs_col - compl_col;
5279 }
Bram Moolenaare2f98b92006-03-29 21:18:24 +00005280 /* Need to obtain "line" again, it may have become invalid. */
5281 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar488c6512005-08-11 20:09:58 +00005282 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5283 if (compl_pattern == NULL)
5284#endif
5285 return FAIL;
5286 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005287 else
5288 {
5289 EMSG2(_(e_intern2), "ins_complete()");
5290 return FAIL;
5291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005293 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 {
5295 edit_submode_pre = (char_u *)_(" Adding");
5296 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
5297 {
5298 /* Insert a new line, keep indentation but ignore 'comments' */
5299#ifdef FEAT_COMMENTS
5300 char_u *old = curbuf->b_p_com;
5301
5302 curbuf->b_p_com = (char_u *)"";
5303#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005304 compl_startpos.lnum = curwin->w_cursor.lnum;
5305 compl_startpos.col = compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 ins_eol('\r');
5307#ifdef FEAT_COMMENTS
5308 curbuf->b_p_com = old;
5309#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005310 compl_length = 0;
5311 compl_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 }
5313 }
5314 else
5315 {
5316 edit_submode_pre = NULL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005317 compl_startpos.col = compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 }
5319
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005320 if (compl_cont_status & CONT_LOCAL)
5321 edit_submode = (char_u *)_(ctrl_x_msgs[CTRL_X_LOCAL_MSG]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 else
5323 edit_submode = (char_u *)_(CTRL_X_MSG(ctrl_x_mode));
5324
Bram Moolenaar62951b12011-09-21 18:23:05 +02005325 /* If any of the original typed text has been changed we need to fix
5326 * the redo buffer. */
5327 ins_compl_fixRedoBufForLeader(NULL);
5328
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005329 /* Always add completion for the original text. */
5330 vim_free(compl_orig_text);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005331 compl_orig_text = vim_strnsave(line + compl_col, compl_length);
5332 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005333 -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005335 vim_free(compl_pattern);
5336 compl_pattern = NULL;
5337 vim_free(compl_orig_text);
5338 compl_orig_text = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 return FAIL;
5340 }
5341
5342 /* showmode might reset the internal line pointers, so it must
5343 * be called before line = ml_get(), or when this address is no
5344 * longer needed. -- Acevedo.
5345 */
5346 edit_submode_extra = (char_u *)_("-- Searching...");
5347 edit_submode_highl = HLF_COUNT;
5348 showmode();
5349 edit_submode_extra = NULL;
5350 out_flush();
5351 }
5352
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005353 compl_shown_match = compl_curr_match;
5354 compl_shows_dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355
5356 /*
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005357 * Find next match (and following matches).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 */
Bram Moolenaarbe678f82010-03-10 14:15:54 +01005359 save_w_wrow = curwin->w_wrow;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005360 n = ins_compl_next(TRUE, ins_compl_key2count(c), ins_compl_use_match(c));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005362 /* may undisplay the popup menu */
5363 ins_compl_upd_pum();
5364
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005365 if (n > 1) /* all matches have been found */
5366 compl_matches = n;
5367 compl_curr_match = compl_shown_match;
5368 compl_direction = compl_shows_dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369
Bram Moolenaard68071d2006-05-02 22:08:30 +00005370 /* Eat the ESC that vgetc() returns after a CTRL-C to avoid leaving Insert
5371 * mode. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 if (got_int && !global_busy)
5373 {
5374 (void)vgetc();
5375 got_int = FALSE;
5376 }
5377
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005378 /* we found no match if the list has only the "compl_orig_text"-entry */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005379 if (compl_first_match == compl_first_match->cp_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005381 edit_submode_extra = (compl_cont_status & CONT_ADDING)
5382 && compl_length > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 ? (char_u *)_(e_hitend) : (char_u *)_(e_patnotf);
5384 edit_submode_highl = HLF_E;
5385 /* remove N_ADDS flag, so next ^X<> won't try to go to ADDING mode,
5386 * because we couldn't expand anything at first place, but if we used
5387 * ^P, ^N, ^X^I or ^X^D we might want to add-expand a single-char-word
5388 * (such as M in M'exico) if not tried already. -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005389 if ( compl_length > 1
5390 || (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 || (ctrl_x_mode != 0
5392 && ctrl_x_mode != CTRL_X_PATH_PATTERNS
5393 && ctrl_x_mode != CTRL_X_PATH_DEFINES))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005394 compl_cont_status &= ~CONT_N_ADDS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 }
5396
Bram Moolenaar572cb562005-08-05 21:35:02 +00005397 if (compl_curr_match->cp_flags & CONT_S_IPOS)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005398 compl_cont_status |= CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005400 compl_cont_status &= ~CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401
5402 if (edit_submode_extra == NULL)
5403 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005404 if (compl_curr_match->cp_flags & ORIGINAL_TEXT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 {
5406 edit_submode_extra = (char_u *)_("Back at original");
5407 edit_submode_highl = HLF_W;
5408 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005409 else if (compl_cont_status & CONT_S_IPOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 {
5411 edit_submode_extra = (char_u *)_("Word from other line");
5412 edit_submode_highl = HLF_COUNT;
5413 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00005414 else if (compl_curr_match->cp_next == compl_curr_match->cp_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 {
5416 edit_submode_extra = (char_u *)_("The only match");
5417 edit_submode_highl = HLF_COUNT;
5418 }
5419 else
5420 {
5421 /* Update completion sequence number when needed. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005422 if (compl_curr_match->cp_number == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005424 int number = 0;
5425 compl_T *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005427 if (compl_direction == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 {
5429 /* search backwards for the first valid (!= -1) number.
5430 * This should normally succeed already at the first loop
5431 * cycle, so it's fast! */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005432 for (match = compl_curr_match->cp_prev; match != NULL
5433 && match != compl_first_match;
5434 match = match->cp_prev)
5435 if (match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005437 number = match->cp_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 break;
5439 }
5440 if (match != NULL)
5441 /* go up and assign all numbers which are not assigned
5442 * yet */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005443 for (match = match->cp_next;
5444 match != NULL && match->cp_number == -1;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005445 match = match->cp_next)
5446 match->cp_number = ++number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 }
5448 else /* BACKWARD */
5449 {
5450 /* search forwards (upwards) for the first valid (!= -1)
5451 * number. This should normally succeed already at the
5452 * first loop cycle, so it's fast! */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005453 for (match = compl_curr_match->cp_next; match != NULL
5454 && match != compl_first_match;
5455 match = match->cp_next)
5456 if (match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005458 number = match->cp_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 break;
5460 }
5461 if (match != NULL)
5462 /* go down and assign all numbers which are not
5463 * assigned yet */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005464 for (match = match->cp_prev; match
5465 && match->cp_number == -1;
5466 match = match->cp_prev)
5467 match->cp_number = ++number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 }
5469 }
5470
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005471 /* The match should always have a sequence number now, this is
5472 * just a safety check. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005473 if (compl_curr_match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 {
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005475 /* Space for 10 text chars. + 2x10-digit no.s = 31.
5476 * Translations may need more than twice that. */
5477 static char_u match_ref[81];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005479 if (compl_matches > 0)
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005480 vim_snprintf((char *)match_ref, sizeof(match_ref),
5481 _("match %d of %d"),
Bram Moolenaar572cb562005-08-05 21:35:02 +00005482 compl_curr_match->cp_number, compl_matches);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 else
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005484 vim_snprintf((char *)match_ref, sizeof(match_ref),
5485 _("match %d"),
5486 compl_curr_match->cp_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487 edit_submode_extra = match_ref;
5488 edit_submode_highl = HLF_R;
Bram Moolenaar76b9b362012-02-04 23:35:00 +01005489 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 curs_columns(FALSE);
5491 }
5492 }
5493 }
5494
5495 /* Show a message about what (completion) mode we're in. */
5496 showmode();
5497 if (edit_submode_extra != NULL)
5498 {
5499 if (!p_smd)
5500 msg_attr(edit_submode_extra,
5501 edit_submode_highl < HLF_COUNT
5502 ? hl_attr(edit_submode_highl) : 0);
5503 }
5504 else
5505 msg_clr_cmdline(); /* necessary for "noshowmode" */
5506
Bram Moolenaard68071d2006-05-02 22:08:30 +00005507 /* Show the popup menu, unless we got interrupted. */
5508 if (!compl_interrupted)
5509 {
5510 /* RedrawingDisabled may be set when invoked through complete(). */
5511 n = RedrawingDisabled;
5512 RedrawingDisabled = 0;
Bram Moolenaarbe678f82010-03-10 14:15:54 +01005513
5514 /* If the cursor moved we need to remove the pum first. */
5515 setcursor();
5516 if (save_w_wrow != curwin->w_wrow)
5517 ins_compl_del_pum();
5518
Bram Moolenaard68071d2006-05-02 22:08:30 +00005519 ins_compl_show_pum();
5520 setcursor();
5521 RedrawingDisabled = n;
5522 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00005523 compl_was_interrupted = compl_interrupted;
Bram Moolenaard68071d2006-05-02 22:08:30 +00005524 compl_interrupted = FALSE;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005525
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 return OK;
5527}
5528
5529/*
5530 * Looks in the first "len" chars. of "src" for search-metachars.
5531 * If dest is not NULL the chars. are copied there quoting (with
5532 * a backslash) the metachars, and dest would be NUL terminated.
5533 * Returns the length (needed) of dest
5534 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005535 static unsigned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536quote_meta(dest, src, len)
5537 char_u *dest;
5538 char_u *src;
5539 int len;
5540{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005541 unsigned m = (unsigned)len + 1; /* one extra for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005543 for ( ; --len >= 0; src++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 {
5545 switch (*src)
5546 {
5547 case '.':
5548 case '*':
5549 case '[':
5550 if (ctrl_x_mode == CTRL_X_DICTIONARY
5551 || ctrl_x_mode == CTRL_X_THESAURUS)
5552 break;
5553 case '~':
5554 if (!p_magic) /* quote these only if magic is set */
5555 break;
5556 case '\\':
5557 if (ctrl_x_mode == CTRL_X_DICTIONARY
5558 || ctrl_x_mode == CTRL_X_THESAURUS)
5559 break;
5560 case '^': /* currently it's not needed. */
5561 case '$':
5562 m++;
5563 if (dest != NULL)
5564 *dest++ = '\\';
5565 break;
5566 }
5567 if (dest != NULL)
5568 *dest++ = *src;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005569# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 /* Copy remaining bytes of a multibyte character. */
5571 if (has_mbyte)
5572 {
5573 int i, mb_len;
5574
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005575 mb_len = (*mb_ptr2len)(src) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 if (mb_len > 0 && len >= mb_len)
5577 for (i = 0; i < mb_len; ++i)
5578 {
5579 --len;
5580 ++src;
5581 if (dest != NULL)
5582 *dest++ = *src;
5583 }
5584 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00005585# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 }
5587 if (dest != NULL)
5588 *dest = NUL;
5589
5590 return m;
5591}
5592#endif /* FEAT_INS_EXPAND */
5593
5594/*
5595 * Next character is interpreted literally.
5596 * A one, two or three digit decimal number is interpreted as its byte value.
5597 * If one or two digits are entered, the next character is given to vungetc().
5598 * For Unicode a character > 255 may be returned.
5599 */
5600 int
5601get_literal()
5602{
5603 int cc;
5604 int nc;
5605 int i;
5606 int hex = FALSE;
5607 int octal = FALSE;
5608#ifdef FEAT_MBYTE
5609 int unicode = 0;
5610#endif
5611
5612 if (got_int)
5613 return Ctrl_C;
5614
5615#ifdef FEAT_GUI
5616 /*
5617 * In GUI there is no point inserting the internal code for a special key.
5618 * It is more useful to insert the string "<KEY>" instead. This would
5619 * probably be useful in a text window too, but it would not be
5620 * vi-compatible (maybe there should be an option for it?) -- webb
5621 */
5622 if (gui.in_use)
5623 ++allow_keys;
5624#endif
5625#ifdef USE_ON_FLY_SCROLL
5626 dont_scroll = TRUE; /* disallow scrolling here */
5627#endif
5628 ++no_mapping; /* don't map the next key hits */
5629 cc = 0;
5630 i = 0;
5631 for (;;)
5632 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005633 nc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634#ifdef FEAT_CMDL_INFO
5635 if (!(State & CMDLINE)
5636# ifdef FEAT_MBYTE
5637 && MB_BYTE2LEN_CHECK(nc) == 1
5638# endif
5639 )
5640 add_to_showcmd(nc);
5641#endif
5642 if (nc == 'x' || nc == 'X')
5643 hex = TRUE;
5644 else if (nc == 'o' || nc == 'O')
5645 octal = TRUE;
5646#ifdef FEAT_MBYTE
5647 else if (nc == 'u' || nc == 'U')
5648 unicode = nc;
5649#endif
5650 else
5651 {
5652 if (hex
5653#ifdef FEAT_MBYTE
5654 || unicode != 0
5655#endif
5656 )
5657 {
5658 if (!vim_isxdigit(nc))
5659 break;
5660 cc = cc * 16 + hex2nr(nc);
5661 }
5662 else if (octal)
5663 {
5664 if (nc < '0' || nc > '7')
5665 break;
5666 cc = cc * 8 + nc - '0';
5667 }
5668 else
5669 {
5670 if (!VIM_ISDIGIT(nc))
5671 break;
5672 cc = cc * 10 + nc - '0';
5673 }
5674
5675 ++i;
5676 }
5677
5678 if (cc > 255
5679#ifdef FEAT_MBYTE
5680 && unicode == 0
5681#endif
5682 )
5683 cc = 255; /* limit range to 0-255 */
5684 nc = 0;
5685
5686 if (hex) /* hex: up to two chars */
5687 {
5688 if (i >= 2)
5689 break;
5690 }
5691#ifdef FEAT_MBYTE
5692 else if (unicode) /* Unicode: up to four or eight chars */
5693 {
5694 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
5695 break;
5696 }
5697#endif
5698 else if (i >= 3) /* decimal or octal: up to three chars */
5699 break;
5700 }
5701 if (i == 0) /* no number entered */
5702 {
5703 if (nc == K_ZERO) /* NUL is stored as NL */
5704 {
5705 cc = '\n';
5706 nc = 0;
5707 }
5708 else
5709 {
5710 cc = nc;
5711 nc = 0;
5712 }
5713 }
5714
5715 if (cc == 0) /* NUL is stored as NL */
5716 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00005717#ifdef FEAT_MBYTE
5718 if (enc_dbcs && (cc & 0xff) == 0)
5719 cc = '?'; /* don't accept an illegal DBCS char, the NUL in the
5720 second byte will cause trouble! */
5721#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722
5723 --no_mapping;
5724#ifdef FEAT_GUI
5725 if (gui.in_use)
5726 --allow_keys;
5727#endif
5728 if (nc)
5729 vungetc(nc);
5730 got_int = FALSE; /* CTRL-C typed after CTRL-V is not an interrupt */
5731 return cc;
5732}
5733
5734/*
5735 * Insert character, taking care of special keys and mod_mask
5736 */
5737 static void
5738insert_special(c, allow_modmask, ctrlv)
5739 int c;
5740 int allow_modmask;
5741 int ctrlv; /* c was typed after CTRL-V */
5742{
5743 char_u *p;
5744 int len;
5745
5746 /*
5747 * Special function key, translate into "<Key>". Up to the last '>' is
5748 * inserted with ins_str(), so as not to replace characters in replace
5749 * mode.
5750 * Only use mod_mask for special keys, to avoid things like <S-Space>,
5751 * unless 'allow_modmask' is TRUE.
5752 */
5753#ifdef MACOS
5754 /* Command-key never produces a normal key */
5755 if (mod_mask & MOD_MASK_CMD)
5756 allow_modmask = TRUE;
5757#endif
5758 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
5759 {
5760 p = get_special_key_name(c, mod_mask);
5761 len = (int)STRLEN(p);
5762 c = p[len - 1];
5763 if (len > 2)
5764 {
5765 if (stop_arrow() == FAIL)
5766 return;
5767 p[len - 1] = NUL;
5768 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00005769 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 ctrlv = FALSE;
5771 }
5772 }
5773 if (stop_arrow() == OK)
5774 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
5775}
5776
5777/*
5778 * Special characters in this context are those that need processing other
5779 * than the simple insertion that can be performed here. This includes ESC
5780 * which terminates the insert, and CR/NL which need special processing to
5781 * open up a new line. This routine tries to optimize insertions performed by
5782 * the "redo", "undo" or "put" commands, so it needs to know when it should
5783 * stop and defer processing to the "normal" mechanism.
5784 * '0' and '^' are special, because they can be followed by CTRL-D.
5785 */
5786#ifdef EBCDIC
5787# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
5788#else
5789# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
5790#endif
5791
5792#ifdef FEAT_MBYTE
5793# define WHITECHAR(cc) (vim_iswhite(cc) && (!enc_utf8 || !utf_iscomposing(utf_ptr2char(ml_get_cursor() + 1))))
5794#else
5795# define WHITECHAR(cc) vim_iswhite(cc)
5796#endif
5797
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005798/*
5799 * "flags": INSCHAR_FORMAT - force formatting
5800 * INSCHAR_CTRLV - char typed just after CTRL-V
5801 * INSCHAR_NO_FEX - don't use 'formatexpr'
5802 *
5803 * NOTE: passes the flags value straight through to internal_format() which,
5804 * beside INSCHAR_FORMAT (above), is also looking for these:
5805 * INSCHAR_DO_COM - format comments
5806 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
5807 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 void
5809insertchar(c, flags, second_indent)
5810 int c; /* character to insert or NUL */
5811 int flags; /* INSCHAR_FORMAT, etc. */
5812 int second_indent; /* indent for second line if >= 0 */
5813{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 int textwidth;
5815#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 int fo_ins_blank;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819
5820 textwidth = comp_textwidth(flags & INSCHAR_FORMAT);
5821 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822
5823 /*
5824 * Try to break the line in two or more pieces when:
5825 * - Always do this if we have been called to do formatting only.
5826 * - Always do this when 'formatoptions' has the 'a' flag and the line
5827 * ends in white space.
5828 * - Otherwise:
5829 * - Don't do this if inserting a blank
5830 * - Don't do this if an existing character is being replaced, unless
5831 * we're in VREPLACE mode.
5832 * - Do this if the cursor is not on the line where insert started
5833 * or - 'formatoptions' doesn't have 'l' or the line was not too long
5834 * before the insert.
5835 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
5836 * before 'textwidth'
5837 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005838 if (textwidth > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 && ((flags & INSCHAR_FORMAT)
5840 || (!vim_iswhite(c)
5841 && !((State & REPLACE_FLAG)
5842#ifdef FEAT_VREPLACE
5843 && !(State & VREPLACE_FLAG)
5844#endif
5845 && *ml_get_cursor() != NUL)
5846 && (curwin->w_cursor.lnum != Insstart.lnum
5847 || ((!has_format_option(FO_INS_LONG)
5848 || Insstart_textlen <= (colnr_T)textwidth)
5849 && (!fo_ins_blank
5850 || Insstart_blank_vcol <= (colnr_T)textwidth
5851 ))))))
5852 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005853 /* Format with 'formatexpr' when it's set. Use internal formatting
5854 * when 'formatexpr' isn't set or it returns non-zero. */
5855#if defined(FEAT_EVAL)
Bram Moolenaarf3442e72006-10-10 13:49:10 +00005856 int do_internal = TRUE;
5857
Bram Moolenaar81a82092008-03-12 16:27:00 +00005858 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0)
Bram Moolenaarf3442e72006-10-10 13:49:10 +00005859 {
5860 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
5861 /* It may be required to save for undo again, e.g. when setline()
5862 * was called. */
5863 ins_need_undo = TRUE;
5864 }
5865 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00005867 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005869
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 if (c == NUL) /* only formatting was wanted */
5871 return;
5872
5873#ifdef FEAT_COMMENTS
5874 /* Check whether this character should end a comment. */
5875 if (did_ai && (int)c == end_comment_pending)
5876 {
5877 char_u *line;
5878 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
5879 int middle_len, end_len;
5880 int i;
5881
5882 /*
5883 * Need to remove existing (middle) comment leader and insert end
5884 * comment leader. First, check what comment leader we can find.
5885 */
Bram Moolenaar81340392012-06-06 16:12:59 +02005886 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) /* Just checking */
5888 {
5889 /* Skip middle-comment string */
5890 while (*p && p[-1] != ':') /* find end of middle flags */
5891 ++p;
5892 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
5893 /* Don't count trailing white space for middle_len */
5894 while (middle_len > 0 && vim_iswhite(lead_end[middle_len - 1]))
5895 --middle_len;
5896
5897 /* Find the end-comment string */
5898 while (*p && p[-1] != ':') /* find end of end flags */
5899 ++p;
5900 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
5901
5902 /* Skip white space before the cursor */
5903 i = curwin->w_cursor.col;
5904 while (--i >= 0 && vim_iswhite(line[i]))
5905 ;
5906 i++;
5907
5908 /* Skip to before the middle leader */
5909 i -= middle_len;
5910
5911 /* Check some expected things before we go on */
5912 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
5913 {
5914 /* Backspace over all the stuff we want to replace */
5915 backspace_until_column(i);
5916
5917 /*
5918 * Insert the end-comment string, except for the last
5919 * character, which will get inserted as normal later.
5920 */
5921 ins_bytes_len(lead_end, end_len - 1);
5922 }
5923 }
5924 }
5925 end_comment_pending = NUL;
5926#endif
5927
5928 did_ai = FALSE;
5929#ifdef FEAT_SMARTINDENT
5930 did_si = FALSE;
5931 can_si = FALSE;
5932 can_si_back = FALSE;
5933#endif
5934
5935 /*
5936 * If there's any pending input, grab up to INPUT_BUFLEN at once.
5937 * This speeds up normal text input considerably.
5938 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
5939 * need to re-indent at a ':', or any other character (but not what
5940 * 'paste' is set)..
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005941 * Don't do this when there an InsertCharPre autocommand is defined,
5942 * because we need to fire the event for every character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 */
5944#ifdef USE_ON_FLY_SCROLL
5945 dont_scroll = FALSE; /* allow scrolling here */
5946#endif
5947
5948 if ( !ISSPECIAL(c)
5949#ifdef FEAT_MBYTE
5950 && (!has_mbyte || (*mb_char2len)(c) == 1)
5951#endif
5952 && vpeekc() != NUL
5953 && !(State & REPLACE_FLAG)
5954#ifdef FEAT_CINDENT
5955 && !cindent_on()
5956#endif
5957#ifdef FEAT_RIGHTLEFT
5958 && !p_ri
5959#endif
Bram Moolenaarf5876f12012-02-29 18:22:08 +01005960#ifdef FEAT_AUTOCMD
5961 && !has_insertcharpre()
5962#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 )
5964 {
5965#define INPUT_BUFLEN 100
5966 char_u buf[INPUT_BUFLEN + 1];
5967 int i;
5968 colnr_T virtcol = 0;
5969
5970 buf[0] = c;
5971 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005972 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 virtcol = get_nolist_virtcol();
5974 /*
5975 * Stop the string when:
5976 * - no more chars available
5977 * - finding a special character (command key)
5978 * - buffer is full
5979 * - running into the 'textwidth' boundary
5980 * - need to check for abbreviation: A non-word char after a word-char
5981 */
5982 while ( (c = vpeekc()) != NUL
5983 && !ISSPECIAL(c)
5984#ifdef FEAT_MBYTE
5985 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
5986#endif
5987 && i < INPUT_BUFLEN
5988 && (textwidth == 0
5989 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
5990 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
5991 {
5992#ifdef FEAT_RIGHTLEFT
5993 c = vgetc();
5994 if (p_hkmap && KeyTyped)
5995 c = hkmap(c); /* Hebrew mode mapping */
5996# ifdef FEAT_FKMAP
5997 if (p_fkmap && KeyTyped)
5998 c = fkmap(c); /* Farsi mode mapping */
5999# endif
6000 buf[i++] = c;
6001#else
6002 buf[i++] = vgetc();
6003#endif
6004 }
6005
6006#ifdef FEAT_DIGRAPHS
6007 do_digraph(-1); /* clear digraphs */
6008 do_digraph(buf[i-1]); /* may be the start of a digraph */
6009#endif
6010 buf[i] = NUL;
6011 ins_str(buf);
6012 if (flags & INSCHAR_CTRLV)
6013 {
6014 redo_literal(*buf);
6015 i = 1;
6016 }
6017 else
6018 i = 0;
6019 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00006020 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 }
6022 else
6023 {
6024#ifdef FEAT_MBYTE
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006025 int cc;
6026
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
6028 {
6029 char_u buf[MB_MAXBYTES + 1];
6030
6031 (*mb_char2bytes)(c, buf);
6032 buf[cc] = NUL;
6033 ins_char_bytes(buf, cc);
6034 AppendCharToRedobuff(c);
6035 }
6036 else
6037#endif
6038 {
6039 ins_char(c);
6040 if (flags & INSCHAR_CTRLV)
6041 redo_literal(c);
6042 else
6043 AppendCharToRedobuff(c);
6044 }
6045 }
6046}
6047
6048/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006049 * Format text at the current insert position.
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006050 *
6051 * If the INSCHAR_COM_LIST flag is present, then the value of second_indent
6052 * will be the comment leader length sent to open_line().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006053 */
6054 static void
Bram Moolenaar97b98102009-11-17 16:41:01 +00006055internal_format(textwidth, second_indent, flags, format_only, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006056 int textwidth;
6057 int second_indent;
6058 int flags;
6059 int format_only;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006060 int c; /* character to be inserted (can be NUL) */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006061{
6062 int cc;
6063 int save_char = NUL;
6064 int haveto_redraw = FALSE;
6065 int fo_ins_blank = has_format_option(FO_INS_BLANK);
6066#ifdef FEAT_MBYTE
6067 int fo_multibyte = has_format_option(FO_MBYTE_BREAK);
6068#endif
6069 int fo_white_par = has_format_option(FO_WHITE_PAR);
6070 int first_line = TRUE;
6071#ifdef FEAT_COMMENTS
6072 colnr_T leader_len;
6073 int no_leader = FALSE;
6074 int do_comments = (flags & INSCHAR_DO_COM);
6075#endif
6076
6077 /*
6078 * When 'ai' is off we don't want a space under the cursor to be
6079 * deleted. Replace it with an 'x' temporarily.
6080 */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006081 if (!curbuf->b_p_ai
6082#ifdef FEAT_VREPLACE
6083 && !(State & VREPLACE_FLAG)
6084#endif
6085 )
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006086 {
6087 cc = gchar_cursor();
6088 if (vim_iswhite(cc))
6089 {
6090 save_char = cc;
6091 pchar_cursor('x');
6092 }
6093 }
6094
6095 /*
6096 * Repeat breaking lines, until the current line is not too long.
6097 */
6098 while (!got_int)
6099 {
6100 int startcol; /* Cursor column at entry */
6101 int wantcol; /* column at textwidth border */
6102 int foundcol; /* column for start of spaces */
6103 int end_foundcol = 0; /* column for start of word */
6104 colnr_T len;
6105 colnr_T virtcol;
6106#ifdef FEAT_VREPLACE
6107 int orig_col = 0;
6108 char_u *saved_text = NULL;
6109#endif
6110 colnr_T col;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006111 colnr_T end_col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006112
Bram Moolenaar97b98102009-11-17 16:41:01 +00006113 virtcol = get_nolist_virtcol()
6114 + char2cells(c != NUL ? c : gchar_cursor());
6115 if (virtcol <= (colnr_T)textwidth)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006116 break;
6117
6118#ifdef FEAT_COMMENTS
6119 if (no_leader)
6120 do_comments = FALSE;
6121 else if (!(flags & INSCHAR_FORMAT)
6122 && has_format_option(FO_WRAP_COMS))
6123 do_comments = TRUE;
6124
6125 /* Don't break until after the comment leader */
6126 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02006127 leader_len = get_leader_len(ml_get_curline(), NULL, FALSE, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006128 else
6129 leader_len = 0;
6130
6131 /* If the line doesn't start with a comment leader, then don't
6132 * start one in a following broken line. Avoids that a %word
6133 * moved to the start of the next line causes all following lines
6134 * to start with %. */
6135 if (leader_len == 0)
6136 no_leader = TRUE;
6137#endif
6138 if (!(flags & INSCHAR_FORMAT)
6139#ifdef FEAT_COMMENTS
6140 && leader_len == 0
6141#endif
6142 && !has_format_option(FO_WRAP))
6143
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006144 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006145 if ((startcol = curwin->w_cursor.col) == 0)
6146 break;
6147
6148 /* find column of textwidth border */
6149 coladvance((colnr_T)textwidth);
6150 wantcol = curwin->w_cursor.col;
6151
Bram Moolenaar97b98102009-11-17 16:41:01 +00006152 curwin->w_cursor.col = startcol;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006153 foundcol = 0;
6154
6155 /*
6156 * Find position to break at.
6157 * Stop at first entered white when 'formatoptions' has 'v'
6158 */
6159 while ((!fo_ins_blank && !has_format_option(FO_INS_VI))
Bram Moolenaara27ad5a2011-10-26 17:04:29 +02006160 || (flags & INSCHAR_FORMAT)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006161 || curwin->w_cursor.lnum != Insstart.lnum
6162 || curwin->w_cursor.col >= Insstart.col)
6163 {
Bram Moolenaar97b98102009-11-17 16:41:01 +00006164 if (curwin->w_cursor.col == startcol && c != NUL)
6165 cc = c;
6166 else
6167 cc = gchar_cursor();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006168 if (WHITECHAR(cc))
6169 {
6170 /* remember position of blank just before text */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006171 end_col = curwin->w_cursor.col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006172
6173 /* find start of sequence of blanks */
6174 while (curwin->w_cursor.col > 0 && WHITECHAR(cc))
6175 {
6176 dec_cursor();
6177 cc = gchar_cursor();
6178 }
6179 if (curwin->w_cursor.col == 0 && WHITECHAR(cc))
6180 break; /* only spaces in front of text */
6181#ifdef FEAT_COMMENTS
6182 /* Don't break until after the comment leader */
6183 if (curwin->w_cursor.col < leader_len)
6184 break;
6185#endif
6186 if (has_format_option(FO_ONE_LETTER))
6187 {
6188 /* do not break after one-letter words */
6189 if (curwin->w_cursor.col == 0)
6190 break; /* one-letter word at begin */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006191#ifdef FEAT_COMMENTS
6192 /* do not break "#a b" when 'tw' is 2 */
6193 if (curwin->w_cursor.col <= leader_len)
6194 break;
6195#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006196 col = curwin->w_cursor.col;
6197 dec_cursor();
6198 cc = gchar_cursor();
6199
6200 if (WHITECHAR(cc))
6201 continue; /* one-letter, continue */
6202 curwin->w_cursor.col = col;
6203 }
Bram Moolenaar97b98102009-11-17 16:41:01 +00006204
6205 inc_cursor();
6206
6207 end_foundcol = end_col + 1;
6208 foundcol = curwin->w_cursor.col;
6209 if (curwin->w_cursor.col <= (colnr_T)wantcol)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006210 break;
6211 }
6212#ifdef FEAT_MBYTE
Bram Moolenaar97b98102009-11-17 16:41:01 +00006213 else if (cc >= 0x100 && fo_multibyte)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006214 {
6215 /* Break after or before a multi-byte character. */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006216 if (curwin->w_cursor.col != startcol)
6217 {
6218#ifdef FEAT_COMMENTS
6219 /* Don't break until after the comment leader */
6220 if (curwin->w_cursor.col < leader_len)
6221 break;
6222#endif
6223 col = curwin->w_cursor.col;
6224 inc_cursor();
6225 /* Don't change end_foundcol if already set. */
6226 if (foundcol != curwin->w_cursor.col)
6227 {
6228 foundcol = curwin->w_cursor.col;
6229 end_foundcol = foundcol;
6230 if (curwin->w_cursor.col <= (colnr_T)wantcol)
6231 break;
6232 }
6233 curwin->w_cursor.col = col;
6234 }
6235
6236 if (curwin->w_cursor.col == 0)
6237 break;
6238
6239 col = curwin->w_cursor.col;
6240
6241 dec_cursor();
6242 cc = gchar_cursor();
6243
6244 if (WHITECHAR(cc))
6245 continue; /* break with space */
6246#ifdef FEAT_COMMENTS
6247 /* Don't break until after the comment leader */
6248 if (curwin->w_cursor.col < leader_len)
6249 break;
6250#endif
6251
6252 curwin->w_cursor.col = col;
6253
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006254 foundcol = curwin->w_cursor.col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006255 end_foundcol = foundcol;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006256 if (curwin->w_cursor.col <= (colnr_T)wantcol)
6257 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006258 }
6259#endif
6260 if (curwin->w_cursor.col == 0)
6261 break;
6262 dec_cursor();
6263 }
6264
6265 if (foundcol == 0) /* no spaces, cannot break line */
6266 {
6267 curwin->w_cursor.col = startcol;
6268 break;
6269 }
6270
6271 /* Going to break the line, remove any "$" now. */
6272 undisplay_dollar();
6273
6274 /*
6275 * Offset between cursor position and line break is used by replace
6276 * stack functions. VREPLACE does not use this, and backspaces
6277 * over the text instead.
6278 */
6279#ifdef FEAT_VREPLACE
6280 if (State & VREPLACE_FLAG)
6281 orig_col = startcol; /* Will start backspacing from here */
6282 else
6283#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00006284 replace_offset = startcol - end_foundcol;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006285
6286 /*
6287 * adjust startcol for spaces that will be deleted and
6288 * characters that will remain on top line
6289 */
6290 curwin->w_cursor.col = foundcol;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006291 while ((cc = gchar_cursor(), WHITECHAR(cc))
6292 && (!fo_white_par || curwin->w_cursor.col < startcol))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006293 inc_cursor();
6294 startcol -= curwin->w_cursor.col;
6295 if (startcol < 0)
6296 startcol = 0;
6297
6298#ifdef FEAT_VREPLACE
6299 if (State & VREPLACE_FLAG)
6300 {
6301 /*
6302 * In VREPLACE mode, we will backspace over the text to be
6303 * wrapped, so save a copy now to put on the next line.
6304 */
6305 saved_text = vim_strsave(ml_get_cursor());
6306 curwin->w_cursor.col = orig_col;
6307 if (saved_text == NULL)
6308 break; /* Can't do it, out of memory */
6309 saved_text[startcol] = NUL;
6310
6311 /* Backspace over characters that will move to the next line */
6312 if (!fo_white_par)
6313 backspace_until_column(foundcol);
6314 }
6315 else
6316#endif
6317 {
6318 /* put cursor after pos. to break line */
6319 if (!fo_white_par)
6320 curwin->w_cursor.col = foundcol;
6321 }
6322
6323 /*
6324 * Split the line just before the margin.
6325 * Only insert/delete lines, but don't really redraw the window.
6326 */
6327 open_line(FORWARD, OPENLINE_DELSPACES + OPENLINE_MARKFIX
6328 + (fo_white_par ? OPENLINE_KEEPTRAIL : 0)
6329#ifdef FEAT_COMMENTS
6330 + (do_comments ? OPENLINE_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006331 + ((flags & INSCHAR_COM_LIST) ? OPENLINE_COM_LIST : 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006332#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006333 , ((flags & INSCHAR_COM_LIST) ? second_indent : old_indent));
6334 if (!(flags & INSCHAR_COM_LIST))
6335 old_indent = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006336
6337 replace_offset = 0;
6338 if (first_line)
6339 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006340 if (!(flags & INSCHAR_COM_LIST))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006341 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006342 /*
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006343 * This section is for auto-wrap of numeric lists. When not
6344 * in insert mode (i.e. format_lines()), the INSCHAR_COM_LIST
6345 * flag will be set and open_line() will handle it (as seen
6346 * above). The code here (and in get_number_indent()) will
6347 * recognize comments if needed...
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006348 */
6349 if (second_indent < 0 && has_format_option(FO_Q_NUMBER))
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006350 second_indent =
6351 get_number_indent(curwin->w_cursor.lnum - 1);
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006352 if (second_indent >= 0)
6353 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006354#ifdef FEAT_VREPLACE
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006355 if (State & VREPLACE_FLAG)
6356 change_indent(INDENT_SET, second_indent,
6357 FALSE, NUL, TRUE);
6358 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006359#endif
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006360#ifdef FEAT_COMMENTS
6361 if (leader_len > 0 && second_indent - leader_len > 0)
6362 {
6363 int i;
6364 int padding = second_indent - leader_len;
6365
6366 /* We started at the first_line of a numbered list
6367 * that has a comment. the open_line() function has
6368 * inserted the proper comment leader and positioned
6369 * the cursor at the end of the split line. Now we
6370 * add the additional whitespace needed after the
6371 * comment leader for the numbered list. */
6372 for (i = 0; i < padding; i++)
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006373 ins_str((char_u *)" ");
Bram Moolenaar5967abb2012-07-06 13:36:48 +02006374 changed_bytes(curwin->w_cursor.lnum, leader_len);
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006375 }
6376 else
6377 {
6378#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006379 (void)set_indent(second_indent, SIN_CHANGED);
Bram Moolenaar96b7ca52012-06-29 15:04:49 +02006380#ifdef FEAT_COMMENTS
6381 }
6382#endif
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02006383 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006384 }
6385 first_line = FALSE;
6386 }
6387
6388#ifdef FEAT_VREPLACE
6389 if (State & VREPLACE_FLAG)
6390 {
6391 /*
6392 * In VREPLACE mode we have backspaced over the text to be
6393 * moved, now we re-insert it into the new line.
6394 */
6395 ins_bytes(saved_text);
6396 vim_free(saved_text);
6397 }
6398 else
6399#endif
6400 {
6401 /*
6402 * Check if cursor is not past the NUL off the line, cindent
6403 * may have added or removed indent.
6404 */
6405 curwin->w_cursor.col += startcol;
6406 len = (colnr_T)STRLEN(ml_get_curline());
6407 if (curwin->w_cursor.col > len)
6408 curwin->w_cursor.col = len;
6409 }
6410
6411 haveto_redraw = TRUE;
6412#ifdef FEAT_CINDENT
6413 can_cindent = TRUE;
6414#endif
6415 /* moved the cursor, don't autoindent or cindent now */
6416 did_ai = FALSE;
6417#ifdef FEAT_SMARTINDENT
6418 did_si = FALSE;
6419 can_si = FALSE;
6420 can_si_back = FALSE;
6421#endif
6422 line_breakcheck();
6423 }
6424
6425 if (save_char != NUL) /* put back space after cursor */
6426 pchar_cursor(save_char);
6427
6428 if (!format_only && haveto_redraw)
6429 {
6430 update_topline();
6431 redraw_curbuf_later(VALID);
6432 }
6433}
6434
6435/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436 * Called after inserting or deleting text: When 'formatoptions' includes the
6437 * 'a' flag format from the current line until the end of the paragraph.
6438 * Keep the cursor at the same position relative to the text.
6439 * The caller must have saved the cursor line for undo, following ones will be
6440 * saved here.
6441 */
6442 void
6443auto_format(trailblank, prev_line)
6444 int trailblank; /* when TRUE also format with trailing blank */
6445 int prev_line; /* may start in previous line */
6446{
6447 pos_T pos;
6448 colnr_T len;
6449 char_u *old;
6450 char_u *new, *pnew;
6451 int wasatend;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006452 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453
6454 if (!has_format_option(FO_AUTO))
6455 return;
6456
6457 pos = curwin->w_cursor;
6458 old = ml_get_curline();
6459
6460 /* may remove added space */
6461 check_auto_format(FALSE);
6462
6463 /* Don't format in Insert mode when the cursor is on a trailing blank, the
6464 * user might insert normal text next. Also skip formatting when "1" is
6465 * in 'formatoptions' and there is a single character before the cursor.
6466 * Otherwise the line would be broken and when typing another non-white
6467 * next they are not joined back together. */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006468 wasatend = (pos.col == (colnr_T)STRLEN(old));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 if (*old != NUL && !trailblank && wasatend)
6470 {
6471 dec_cursor();
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006472 cc = gchar_cursor();
6473 if (!WHITECHAR(cc) && curwin->w_cursor.col > 0
6474 && has_format_option(FO_ONE_LETTER))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475 dec_cursor();
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006476 cc = gchar_cursor();
6477 if (WHITECHAR(cc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478 {
6479 curwin->w_cursor = pos;
6480 return;
6481 }
6482 curwin->w_cursor = pos;
6483 }
6484
6485#ifdef FEAT_COMMENTS
6486 /* With the 'c' flag in 'formatoptions' and 't' missing: only format
6487 * comments. */
6488 if (has_format_option(FO_WRAP_COMS) && !has_format_option(FO_WRAP)
Bram Moolenaar81340392012-06-06 16:12:59 +02006489 && get_leader_len(old, NULL, FALSE, TRUE) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490 return;
6491#endif
6492
6493 /*
6494 * May start formatting in a previous line, so that after "x" a word is
6495 * moved to the previous line if it fits there now. Only when this is not
6496 * the start of a paragraph.
6497 */
6498 if (prev_line && !paragraph_start(curwin->w_cursor.lnum))
6499 {
6500 --curwin->w_cursor.lnum;
6501 if (u_save_cursor() == FAIL)
6502 return;
6503 }
6504
6505 /*
6506 * Do the formatting and restore the cursor position. "saved_cursor" will
6507 * be adjusted for the text formatting.
6508 */
6509 saved_cursor = pos;
Bram Moolenaar81a82092008-03-12 16:27:00 +00006510 format_lines((linenr_T)-1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006511 curwin->w_cursor = saved_cursor;
6512 saved_cursor.lnum = 0;
6513
6514 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6515 {
6516 /* "cannot happen" */
6517 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6518 coladvance((colnr_T)MAXCOL);
6519 }
6520 else
6521 check_cursor_col();
6522
6523 /* Insert mode: If the cursor is now after the end of the line while it
6524 * previously wasn't, the line was broken. Because of the rule above we
6525 * need to add a space when 'w' is in 'formatoptions' to keep a paragraph
6526 * formatted. */
6527 if (!wasatend && has_format_option(FO_WHITE_PAR))
6528 {
6529 new = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006530 len = (colnr_T)STRLEN(new);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006531 if (curwin->w_cursor.col == len)
6532 {
6533 pnew = vim_strnsave(new, len + 2);
6534 pnew[len] = ' ';
6535 pnew[len + 1] = NUL;
6536 ml_replace(curwin->w_cursor.lnum, pnew, FALSE);
6537 /* remove the space later */
6538 did_add_space = TRUE;
6539 }
6540 else
6541 /* may remove added space */
6542 check_auto_format(FALSE);
6543 }
6544
6545 check_cursor();
6546}
6547
6548/*
6549 * When an extra space was added to continue a paragraph for auto-formatting,
6550 * delete it now. The space must be under the cursor, just after the insert
6551 * position.
6552 */
6553 static void
6554check_auto_format(end_insert)
6555 int end_insert; /* TRUE when ending Insert mode */
6556{
6557 int c = ' ';
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006558 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559
6560 if (did_add_space)
6561 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006562 cc = gchar_cursor();
6563 if (!WHITECHAR(cc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 /* Somehow the space was removed already. */
6565 did_add_space = FALSE;
6566 else
6567 {
6568 if (!end_insert)
6569 {
6570 inc_cursor();
6571 c = gchar_cursor();
6572 dec_cursor();
6573 }
6574 if (c != NUL)
6575 {
6576 /* The space is no longer at the end of the line, delete it. */
6577 del_char(FALSE);
6578 did_add_space = FALSE;
6579 }
6580 }
6581 }
6582}
6583
6584/*
6585 * Find out textwidth to be used for formatting:
6586 * if 'textwidth' option is set, use it
6587 * else if 'wrapmargin' option is set, use W_WIDTH(curwin) - 'wrapmargin'
6588 * if invalid value, use 0.
6589 * Set default to window width (maximum 79) for "gq" operator.
6590 */
6591 int
6592comp_textwidth(ff)
Bram Moolenaar91170f82006-05-05 21:15:17 +00006593 int ff; /* force formatting (for "gq" command) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006594{
6595 int textwidth;
6596
6597 textwidth = curbuf->b_p_tw;
6598 if (textwidth == 0 && curbuf->b_p_wm)
6599 {
6600 /* The width is the window width minus 'wrapmargin' minus all the
6601 * things that add to the margin. */
6602 textwidth = W_WIDTH(curwin) - curbuf->b_p_wm;
6603#ifdef FEAT_CMDWIN
6604 if (cmdwin_type != 0)
6605 textwidth -= 1;
6606#endif
6607#ifdef FEAT_FOLDING
6608 textwidth -= curwin->w_p_fdc;
6609#endif
6610#ifdef FEAT_SIGNS
6611 if (curwin->w_buffer->b_signlist != NULL
6612# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02006613 || netbeans_active()
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614# endif
6615 )
6616 textwidth -= 1;
6617#endif
Bram Moolenaar64486672010-05-16 15:46:46 +02006618 if (curwin->w_p_nu || curwin->w_p_rnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 textwidth -= 8;
6620 }
6621 if (textwidth < 0)
6622 textwidth = 0;
6623 if (ff && textwidth == 0)
6624 {
6625 textwidth = W_WIDTH(curwin) - 1;
6626 if (textwidth > 79)
6627 textwidth = 79;
6628 }
6629 return textwidth;
6630}
6631
6632/*
6633 * Put a character in the redo buffer, for when just after a CTRL-V.
6634 */
6635 static void
6636redo_literal(c)
6637 int c;
6638{
6639 char_u buf[10];
6640
6641 /* Only digits need special treatment. Translate them into a string of
6642 * three digits. */
6643 if (VIM_ISDIGIT(c))
6644 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006645 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646 AppendToRedobuff(buf);
6647 }
6648 else
6649 AppendCharToRedobuff(c);
6650}
6651
6652/*
6653 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006654 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655 */
6656 static void
6657start_arrow(end_insert_pos)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006658 pos_T *end_insert_pos; /* can be NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006659{
6660 if (!arrow_used) /* something has been inserted */
6661 {
6662 AppendToRedobuff(ESC_STR);
6663 stop_insert(end_insert_pos, FALSE);
6664 arrow_used = TRUE; /* this means we stopped the current insert */
6665 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006666#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00006667 check_spell_redraw();
6668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669}
6670
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006671#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00006672/*
6673 * If we skipped highlighting word at cursor, do it now.
6674 * It may be skipped again, thus reset spell_redraw_lnum first.
6675 */
6676 static void
6677check_spell_redraw()
6678{
6679 if (spell_redraw_lnum != 0)
6680 {
6681 linenr_T lnum = spell_redraw_lnum;
6682
6683 spell_redraw_lnum = 0;
6684 redrawWinline(lnum, FALSE);
6685 }
6686}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006687
6688/*
6689 * Called when starting CTRL_X_SPELL mode: Move backwards to a previous badly
6690 * spelled word, if there is one.
6691 */
6692 static void
6693spell_back_to_badword()
6694{
6695 pos_T tpos = curwin->w_cursor;
6696
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00006697 spell_bad_len = spell_move_to(curwin, BACKWARD, TRUE, TRUE, NULL);
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006698 if (curwin->w_cursor.col != tpos.col)
6699 start_arrow(&tpos);
6700}
Bram Moolenaar217ad922005-03-20 22:37:15 +00006701#endif
6702
Bram Moolenaar071d4272004-06-13 20:20:40 +00006703/*
6704 * stop_arrow() is called before a change is made in insert mode.
6705 * If an arrow key has been used, start a new insertion.
6706 * Returns FAIL if undo is impossible, shouldn't insert then.
6707 */
6708 int
6709stop_arrow()
6710{
6711 if (arrow_used)
6712 {
6713 if (u_save_cursor() == OK)
6714 {
6715 arrow_used = FALSE;
6716 ins_need_undo = FALSE;
6717 }
6718 Insstart = curwin->w_cursor; /* new insertion starts here */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006719 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720 ai_col = 0;
6721#ifdef FEAT_VREPLACE
6722 if (State & VREPLACE_FLAG)
6723 {
6724 orig_line_count = curbuf->b_ml.ml_line_count;
6725 vr_lines_changed = 1;
6726 }
6727#endif
6728 ResetRedobuff();
6729 AppendToRedobuff((char_u *)"1i"); /* pretend we start an insertion */
Bram Moolenaara9b1e742005-12-19 22:14:58 +00006730 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006731 }
6732 else if (ins_need_undo)
6733 {
6734 if (u_save_cursor() == OK)
6735 ins_need_undo = FALSE;
6736 }
6737
6738#ifdef FEAT_FOLDING
6739 /* Always open fold at the cursor line when inserting something. */
6740 foldOpenCursor();
6741#endif
6742
6743 return (arrow_used || ins_need_undo ? FAIL : OK);
6744}
6745
6746/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006747 * Do a few things to stop inserting.
6748 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
6749 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750 */
6751 static void
6752stop_insert(end_insert_pos, esc)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006753 pos_T *end_insert_pos;
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006754 int esc; /* called by ins_esc() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006755{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006756 int cc;
6757 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758
6759 stop_redo_ins();
6760 replace_flush(); /* abandon replace stack */
6761
6762 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006763 * Save the inserted text for later redo with ^@ and CTRL-A.
6764 * Don't do it when "restart_edit" was set and nothing was inserted,
6765 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006766 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006767 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00006768 if (did_restart_edit == 0 || (ptr != NULL
6769 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006770 {
6771 vim_free(last_insert);
6772 last_insert = ptr;
6773 last_insert_skip = new_insert_skip;
6774 }
6775 else
6776 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006777
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006778 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006779 {
6780 /* Auto-format now. It may seem strange to do this when stopping an
6781 * insertion (or moving the cursor), but it's required when appending
6782 * a line and having it end in a space. But only do it when something
6783 * was actually inserted, otherwise undo won't work. */
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006784 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006786 pos_T tpos = curwin->w_cursor;
6787
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788 /* When the cursor is at the end of the line after a space the
6789 * formatting will move it to the following word. Avoid that by
6790 * moving the cursor onto the space. */
6791 cc = 'x';
6792 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
6793 {
6794 dec_cursor();
6795 cc = gchar_cursor();
6796 if (!vim_iswhite(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006797 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 }
6799
6800 auto_format(TRUE, FALSE);
6801
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006802 if (vim_iswhite(cc))
6803 {
6804 if (gchar_cursor() != NUL)
6805 inc_cursor();
6806#ifdef FEAT_VIRTUALEDIT
6807 /* If the cursor is still at the same character, also keep
6808 * the "coladd". */
6809 if (gchar_cursor() == NUL
6810 && curwin->w_cursor.lnum == tpos.lnum
6811 && curwin->w_cursor.col == tpos.col)
6812 curwin->w_cursor.coladd = tpos.coladd;
6813#endif
6814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815 }
6816
6817 /* If a space was inserted for auto-formatting, remove it now. */
6818 check_auto_format(TRUE);
6819
6820 /* If we just did an auto-indent, remove the white space from the end
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006821 * of the line, and put the cursor back.
Bram Moolenaar4be50682009-05-26 09:02:10 +00006822 * Do this when ESC was used or moving the cursor up/down.
6823 * Check for the old position still being valid, just in case the text
6824 * got changed unexpectedly. */
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006825 if (did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00006826 && curwin->w_cursor.lnum != end_insert_pos->lnum))
6827 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006828 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006829 pos_T tpos = curwin->w_cursor;
6830
6831 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar4be50682009-05-26 09:02:10 +00006832 check_cursor_col(); /* make sure it is not past the line */
Bram Moolenaar39f05632006-03-19 22:15:26 +00006833 for (;;)
6834 {
6835 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
6836 --curwin->w_cursor.col;
6837 cc = gchar_cursor();
6838 if (!vim_iswhite(cc))
6839 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00006840 if (del_char(TRUE) == FAIL)
6841 break; /* should not happen */
Bram Moolenaar39f05632006-03-19 22:15:26 +00006842 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006843 if (curwin->w_cursor.lnum != tpos.lnum)
6844 curwin->w_cursor = tpos;
6845 else if (cc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846 ++curwin->w_cursor.col; /* put cursor back on the NUL */
6847
6848#ifdef FEAT_VISUAL
6849 /* <C-S-Right> may have started Visual mode, adjust the position for
6850 * deleted characters. */
6851 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
6852 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006853 int len = (int)STRLEN(ml_get_curline());
6854
6855 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006857 VIsual.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858# ifdef FEAT_VIRTUALEDIT
6859 VIsual.coladd = 0;
6860# endif
6861 }
6862 }
6863#endif
6864 }
6865 }
6866 did_ai = FALSE;
6867#ifdef FEAT_SMARTINDENT
6868 did_si = FALSE;
6869 can_si = FALSE;
6870 can_si_back = FALSE;
6871#endif
6872
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006873 /* Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
6874 * now in a different buffer. */
6875 if (end_insert_pos != NULL)
6876 {
6877 curbuf->b_op_start = Insstart;
6878 curbuf->b_op_end = *end_insert_pos;
6879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880}
6881
6882/*
6883 * Set the last inserted text to a single character.
6884 * Used for the replace command.
6885 */
6886 void
6887set_last_insert(c)
6888 int c;
6889{
6890 char_u *s;
6891
6892 vim_free(last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893 last_insert = alloc(MB_MAXBYTES * 3 + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894 if (last_insert != NULL)
6895 {
6896 s = last_insert;
6897 /* Use the CTRL-V only when entering a special char */
6898 if (c < ' ' || c == DEL)
6899 *s++ = Ctrl_V;
6900 s = add_char2buf(c, s);
6901 *s++ = ESC;
6902 *s++ = NUL;
6903 last_insert_skip = 0;
6904 }
6905}
6906
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006907#if defined(EXITFREE) || defined(PROTO)
6908 void
6909free_last_insert()
6910{
6911 vim_free(last_insert);
6912 last_insert = NULL;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00006913# ifdef FEAT_INS_EXPAND
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00006914 vim_free(compl_orig_text);
6915 compl_orig_text = NULL;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00006916# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006917}
6918#endif
6919
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920/*
6921 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
6922 * and CSI. Handle multi-byte characters.
6923 * Returns a pointer to after the added bytes.
6924 */
6925 char_u *
6926add_char2buf(c, s)
6927 int c;
6928 char_u *s;
6929{
6930#ifdef FEAT_MBYTE
Bram Moolenaar9a920d82012-06-01 15:21:02 +02006931 char_u temp[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 int i;
6933 int len;
6934
6935 len = (*mb_char2bytes)(c, temp);
6936 for (i = 0; i < len; ++i)
6937 {
6938 c = temp[i];
6939#endif
6940 /* Need to escape K_SPECIAL and CSI like in the typeahead buffer. */
6941 if (c == K_SPECIAL)
6942 {
6943 *s++ = K_SPECIAL;
6944 *s++ = KS_SPECIAL;
6945 *s++ = KE_FILLER;
6946 }
6947#ifdef FEAT_GUI
6948 else if (c == CSI)
6949 {
6950 *s++ = CSI;
6951 *s++ = KS_EXTRA;
6952 *s++ = (int)KE_CSI;
6953 }
6954#endif
6955 else
6956 *s++ = c;
6957#ifdef FEAT_MBYTE
6958 }
6959#endif
6960 return s;
6961}
6962
6963/*
6964 * move cursor to start of line
6965 * if flags & BL_WHITE move to first non-white
6966 * if flags & BL_SOL move to first non-white if startofline is set,
6967 * otherwise keep "curswant" column
6968 * if flags & BL_FIX don't leave the cursor on a NUL.
6969 */
6970 void
6971beginline(flags)
6972 int flags;
6973{
6974 if ((flags & BL_SOL) && !p_sol)
6975 coladvance(curwin->w_curswant);
6976 else
6977 {
6978 curwin->w_cursor.col = 0;
6979#ifdef FEAT_VIRTUALEDIT
6980 curwin->w_cursor.coladd = 0;
6981#endif
6982
6983 if (flags & (BL_WHITE | BL_SOL))
6984 {
6985 char_u *ptr;
6986
6987 for (ptr = ml_get_curline(); vim_iswhite(*ptr)
6988 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
6989 ++curwin->w_cursor.col;
6990 }
6991 curwin->w_set_curswant = TRUE;
6992 }
6993}
6994
6995/*
6996 * oneright oneleft cursor_down cursor_up
6997 *
6998 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00006999 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000 * Return OK when successful, FAIL when we hit a line of file boundary.
7001 */
7002
7003 int
7004oneright()
7005{
7006 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008
7009#ifdef FEAT_VIRTUALEDIT
7010 if (virtual_active())
7011 {
7012 pos_T prevpos = curwin->w_cursor;
7013
7014 /* Adjust for multi-wide char (excluding TAB) */
7015 ptr = ml_get_cursor();
7016 coladvance(getviscol() + ((*ptr != TAB && vim_isprintc(
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007017# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018 (*mb_ptr2char)(ptr)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007019# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007020 *ptr
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007021# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022 ))
7023 ? ptr2cells(ptr) : 1));
7024 curwin->w_set_curswant = TRUE;
7025 /* Return OK if the cursor moved, FAIL otherwise (at window edge). */
7026 return (prevpos.col != curwin->w_cursor.col
7027 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
7028 }
7029#endif
7030
7031 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007032 if (*ptr == NUL)
7033 return FAIL; /* already at the very end */
7034
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035#ifdef FEAT_MBYTE
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007036 if (has_mbyte)
7037 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038 else
7039#endif
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00007040 l = 1;
7041
7042 /* move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
7043 * contains "onemore". */
7044 if (ptr[l] == NUL
7045#ifdef FEAT_VIRTUALEDIT
7046 && (ve_flags & VE_ONEMORE) == 0
7047#endif
7048 )
7049 return FAIL;
7050 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051
7052 curwin->w_set_curswant = TRUE;
7053 return OK;
7054}
7055
7056 int
7057oneleft()
7058{
7059#ifdef FEAT_VIRTUALEDIT
7060 if (virtual_active())
7061 {
7062 int width;
7063 int v = getviscol();
7064
7065 if (v == 0)
7066 return FAIL;
7067
7068# ifdef FEAT_LINEBREAK
7069 /* We might get stuck on 'showbreak', skip over it. */
7070 width = 1;
7071 for (;;)
7072 {
7073 coladvance(v - width);
7074 /* getviscol() is slow, skip it when 'showbreak' is empty and
7075 * there are no multi-byte characters */
7076 if ((*p_sbr == NUL
7077# ifdef FEAT_MBYTE
7078 && !has_mbyte
7079# endif
7080 ) || getviscol() < v)
7081 break;
7082 ++width;
7083 }
7084# else
7085 coladvance(v - 1);
7086# endif
7087
7088 if (curwin->w_cursor.coladd == 1)
7089 {
7090 char_u *ptr;
7091
7092 /* Adjust for multi-wide char (not a TAB) */
7093 ptr = ml_get_cursor();
7094 if (*ptr != TAB && vim_isprintc(
7095# ifdef FEAT_MBYTE
7096 (*mb_ptr2char)(ptr)
7097# else
7098 *ptr
7099# endif
7100 ) && ptr2cells(ptr) > 1)
7101 curwin->w_cursor.coladd = 0;
7102 }
7103
7104 curwin->w_set_curswant = TRUE;
7105 return OK;
7106 }
7107#endif
7108
7109 if (curwin->w_cursor.col == 0)
7110 return FAIL;
7111
7112 curwin->w_set_curswant = TRUE;
7113 --curwin->w_cursor.col;
7114
7115#ifdef FEAT_MBYTE
7116 /* if the character on the left of the current cursor is a multi-byte
7117 * character, move to its first byte */
7118 if (has_mbyte)
7119 mb_adjust_cursor();
7120#endif
7121 return OK;
7122}
7123
7124 int
7125cursor_up(n, upd_topline)
7126 long n;
7127 int upd_topline; /* When TRUE: update topline */
7128{
7129 linenr_T lnum;
7130
7131 if (n > 0)
7132 {
7133 lnum = curwin->w_cursor.lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007134 /* This fails if the cursor is already in the first line or the count
7135 * is larger than the line number and '-' is in 'cpoptions' */
7136 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137 return FAIL;
7138 if (n >= lnum)
7139 lnum = 1;
7140 else
7141#ifdef FEAT_FOLDING
7142 if (hasAnyFolding(curwin))
7143 {
7144 /*
7145 * Count each sequence of folded lines as one logical line.
7146 */
7147 /* go to the the start of the current fold */
7148 (void)hasFolding(lnum, &lnum, NULL);
7149
7150 while (n--)
7151 {
7152 /* move up one line */
7153 --lnum;
7154 if (lnum <= 1)
7155 break;
7156 /* If we entered a fold, move to the beginning, unless in
7157 * Insert mode or when 'foldopen' contains "all": it will open
7158 * in a moment. */
7159 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
7160 (void)hasFolding(lnum, &lnum, NULL);
7161 }
7162 if (lnum < 1)
7163 lnum = 1;
7164 }
7165 else
7166#endif
7167 lnum -= n;
7168 curwin->w_cursor.lnum = lnum;
7169 }
7170
7171 /* try to advance to the column we want to be at */
7172 coladvance(curwin->w_curswant);
7173
7174 if (upd_topline)
7175 update_topline(); /* make sure curwin->w_topline is valid */
7176
7177 return OK;
7178}
7179
7180/*
7181 * Cursor down a number of logical lines.
7182 */
7183 int
7184cursor_down(n, upd_topline)
7185 long n;
7186 int upd_topline; /* When TRUE: update topline */
7187{
7188 linenr_T lnum;
7189
7190 if (n > 0)
7191 {
7192 lnum = curwin->w_cursor.lnum;
7193#ifdef FEAT_FOLDING
7194 /* Move to last line of fold, will fail if it's the end-of-file. */
7195 (void)hasFolding(lnum, NULL, &lnum);
7196#endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00007197 /* This fails if the cursor is already in the last line or would move
7198 * beyound the last line and '-' is in 'cpoptions' */
7199 if (lnum >= curbuf->b_ml.ml_line_count
7200 || (lnum + n > curbuf->b_ml.ml_line_count
7201 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007202 return FAIL;
7203 if (lnum + n >= curbuf->b_ml.ml_line_count)
7204 lnum = curbuf->b_ml.ml_line_count;
7205 else
7206#ifdef FEAT_FOLDING
7207 if (hasAnyFolding(curwin))
7208 {
7209 linenr_T last;
7210
7211 /* count each sequence of folded lines as one logical line */
7212 while (n--)
7213 {
7214 if (hasFolding(lnum, NULL, &last))
7215 lnum = last + 1;
7216 else
7217 ++lnum;
7218 if (lnum >= curbuf->b_ml.ml_line_count)
7219 break;
7220 }
7221 if (lnum > curbuf->b_ml.ml_line_count)
7222 lnum = curbuf->b_ml.ml_line_count;
7223 }
7224 else
7225#endif
7226 lnum += n;
7227 curwin->w_cursor.lnum = lnum;
7228 }
7229
7230 /* try to advance to the column we want to be at */
7231 coladvance(curwin->w_curswant);
7232
7233 if (upd_topline)
7234 update_topline(); /* make sure curwin->w_topline is valid */
7235
7236 return OK;
7237}
7238
7239/*
7240 * Stuff the last inserted text in the read buffer.
7241 * Last_insert actually is a copy of the redo buffer, so we
7242 * first have to remove the command.
7243 */
7244 int
7245stuff_inserted(c, count, no_esc)
7246 int c; /* Command character to be inserted */
7247 long count; /* Repeat this many times */
7248 int no_esc; /* Don't add an ESC at the end */
7249{
7250 char_u *esc_ptr;
7251 char_u *ptr;
7252 char_u *last_ptr;
7253 char_u last = NUL;
7254
7255 ptr = get_last_insert();
7256 if (ptr == NULL)
7257 {
7258 EMSG(_(e_noinstext));
7259 return FAIL;
7260 }
7261
7262 /* may want to stuff the command character, to start Insert mode */
7263 if (c != NUL)
7264 stuffcharReadbuff(c);
7265 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
7266 *esc_ptr = NUL; /* remove the ESC */
7267
7268 /* when the last char is either "0" or "^" it will be quoted if no ESC
7269 * comes after it OR if it will inserted more than once and "ptr"
7270 * starts with ^D. -- Acevedo
7271 */
7272 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
7273 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
7274 && (no_esc || (*ptr == Ctrl_D && count > 1)))
7275 {
7276 last = *last_ptr;
7277 *last_ptr = NUL;
7278 }
7279
7280 do
7281 {
7282 stuffReadbuff(ptr);
7283 /* a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^" */
7284 if (last)
7285 stuffReadbuff((char_u *)(last == '0'
7286 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
7287 : IF_EB("\026^", CTRL_V_STR "^")));
7288 }
7289 while (--count > 0);
7290
7291 if (last)
7292 *last_ptr = last;
7293
7294 if (esc_ptr != NULL)
7295 *esc_ptr = ESC; /* put the ESC back */
7296
7297 /* may want to stuff a trailing ESC, to get out of Insert mode */
7298 if (!no_esc)
7299 stuffcharReadbuff(ESC);
7300
7301 return OK;
7302}
7303
7304 char_u *
7305get_last_insert()
7306{
7307 if (last_insert == NULL)
7308 return NULL;
7309 return last_insert + last_insert_skip;
7310}
7311
7312/*
7313 * Get last inserted string, and remove trailing <Esc>.
7314 * Returns pointer to allocated memory (must be freed) or NULL.
7315 */
7316 char_u *
7317get_last_insert_save()
7318{
7319 char_u *s;
7320 int len;
7321
7322 if (last_insert == NULL)
7323 return NULL;
7324 s = vim_strsave(last_insert + last_insert_skip);
7325 if (s != NULL)
7326 {
7327 len = (int)STRLEN(s);
7328 if (len > 0 && s[len - 1] == ESC) /* remove trailing ESC */
7329 s[len - 1] = NUL;
7330 }
7331 return s;
7332}
7333
7334/*
7335 * Check the word in front of the cursor for an abbreviation.
7336 * Called when the non-id character "c" has been entered.
7337 * When an abbreviation is recognized it is removed from the text and
7338 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
7339 */
7340 static int
7341echeck_abbr(c)
7342 int c;
7343{
7344 /* Don't check for abbreviation in paste mode, when disabled and just
7345 * after moving around with cursor keys. */
7346 if (p_paste || no_abbr || arrow_used)
7347 return FALSE;
7348
7349 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
7350 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
7351}
7352
7353/*
7354 * replace-stack functions
7355 *
7356 * When replacing characters, the replaced characters are remembered for each
7357 * new character. This is used to re-insert the old text when backspacing.
7358 *
7359 * There is a NUL headed list of characters for each character that is
7360 * currently in the file after the insertion point. When BS is used, one NUL
7361 * headed list is put back for the deleted character.
7362 *
7363 * For a newline, there are two NUL headed lists. One contains the characters
7364 * that the NL replaced. The extra one stores the characters after the cursor
7365 * that were deleted (always white space).
7366 *
7367 * Replace_offset is normally 0, in which case replace_push will add a new
7368 * character at the end of the stack. If replace_offset is not 0, that many
7369 * characters will be left on the stack above the newly inserted character.
7370 */
7371
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00007372static char_u *replace_stack = NULL;
7373static long replace_stack_nr = 0; /* next entry in replace stack */
7374static long replace_stack_len = 0; /* max. number of entries */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007375
7376 void
7377replace_push(c)
7378 int c; /* character that is replaced (NUL is none) */
7379{
7380 char_u *p;
7381
7382 if (replace_stack_nr < replace_offset) /* nothing to do */
7383 return;
7384 if (replace_stack_len <= replace_stack_nr)
7385 {
7386 replace_stack_len += 50;
7387 p = lalloc(sizeof(char_u) * replace_stack_len, TRUE);
7388 if (p == NULL) /* out of memory */
7389 {
7390 replace_stack_len -= 50;
7391 return;
7392 }
7393 if (replace_stack != NULL)
7394 {
7395 mch_memmove(p, replace_stack,
7396 (size_t)(replace_stack_nr * sizeof(char_u)));
7397 vim_free(replace_stack);
7398 }
7399 replace_stack = p;
7400 }
7401 p = replace_stack + replace_stack_nr - replace_offset;
7402 if (replace_offset)
7403 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
7404 *p = c;
7405 ++replace_stack_nr;
7406}
7407
Bram Moolenaar2c994e82008-01-02 16:49:36 +00007408#if defined(FEAT_MBYTE) || defined(PROTO)
7409/*
7410 * Push a character onto the replace stack. Handles a multi-byte character in
7411 * reverse byte order, so that the first byte is popped off first.
7412 * Return the number of bytes done (includes composing characters).
7413 */
7414 int
7415replace_push_mb(p)
7416 char_u *p;
7417{
7418 int l = (*mb_ptr2len)(p);
7419 int j;
7420
7421 for (j = l - 1; j >= 0; --j)
7422 replace_push(p[j]);
7423 return l;
7424}
7425#endif
7426
Bram Moolenaar071d4272004-06-13 20:20:40 +00007427/*
7428 * Pop one item from the replace stack.
7429 * return -1 if stack empty
7430 * return replaced character or NUL otherwise
7431 */
7432 static int
7433replace_pop()
7434{
7435 if (replace_stack_nr == 0)
7436 return -1;
7437 return (int)replace_stack[--replace_stack_nr];
7438}
7439
7440/*
7441 * Join the top two items on the replace stack. This removes to "off"'th NUL
7442 * encountered.
7443 */
7444 static void
7445replace_join(off)
7446 int off; /* offset for which NUL to remove */
7447{
7448 int i;
7449
7450 for (i = replace_stack_nr; --i >= 0; )
7451 if (replace_stack[i] == NUL && off-- <= 0)
7452 {
7453 --replace_stack_nr;
7454 mch_memmove(replace_stack + i, replace_stack + i + 1,
7455 (size_t)(replace_stack_nr - i));
7456 return;
7457 }
7458}
7459
7460/*
7461 * Pop bytes from the replace stack until a NUL is found, and insert them
7462 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
7463 */
7464 static void
7465replace_pop_ins()
7466{
7467 int cc;
7468 int oldState = State;
7469
7470 State = NORMAL; /* don't want REPLACE here */
7471 while ((cc = replace_pop()) > 0)
7472 {
7473#ifdef FEAT_MBYTE
7474 mb_replace_pop_ins(cc);
7475#else
7476 ins_char(cc);
7477#endif
7478 dec_cursor();
7479 }
7480 State = oldState;
7481}
7482
7483#ifdef FEAT_MBYTE
7484/*
7485 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
7486 * indicates a multi-byte char, pop the other bytes too.
7487 */
7488 static void
7489mb_replace_pop_ins(cc)
7490 int cc;
7491{
7492 int n;
Bram Moolenaar9a920d82012-06-01 15:21:02 +02007493 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007494 int i;
7495 int c;
7496
7497 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
7498 {
7499 buf[0] = cc;
7500 for (i = 1; i < n; ++i)
7501 buf[i] = replace_pop();
7502 ins_bytes_len(buf, n);
7503 }
7504 else
7505 ins_char(cc);
7506
7507 if (enc_utf8)
7508 /* Handle composing chars. */
7509 for (;;)
7510 {
7511 c = replace_pop();
7512 if (c == -1) /* stack empty */
7513 break;
7514 if ((n = MB_BYTE2LEN(c)) == 1)
7515 {
7516 /* Not a multi-byte char, put it back. */
7517 replace_push(c);
7518 break;
7519 }
7520 else
7521 {
7522 buf[0] = c;
7523 for (i = 1; i < n; ++i)
7524 buf[i] = replace_pop();
7525 if (utf_iscomposing(utf_ptr2char(buf)))
7526 ins_bytes_len(buf, n);
7527 else
7528 {
7529 /* Not a composing char, put it back. */
7530 for (i = n - 1; i >= 0; --i)
7531 replace_push(buf[i]);
7532 break;
7533 }
7534 }
7535 }
7536}
7537#endif
7538
7539/*
7540 * make the replace stack empty
7541 * (called when exiting replace mode)
7542 */
7543 static void
7544replace_flush()
7545{
7546 vim_free(replace_stack);
7547 replace_stack = NULL;
7548 replace_stack_len = 0;
7549 replace_stack_nr = 0;
7550}
7551
7552/*
7553 * Handle doing a BS for one character.
7554 * cc < 0: replace stack empty, just move cursor
7555 * cc == 0: character was inserted, delete it
7556 * cc > 0: character was replaced, put cc (first byte of original char) back
7557 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007558 * When "limit_col" is >= 0, don't delete before this column. Matters when
7559 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 */
7561 static void
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007562replace_do_bs(limit_col)
7563 int limit_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007564{
7565 int cc;
7566#ifdef FEAT_VREPLACE
7567 int orig_len = 0;
7568 int ins_len;
7569 int orig_vcols = 0;
7570 colnr_T start_vcol;
7571 char_u *p;
7572 int i;
7573 int vcol;
7574#endif
7575
7576 cc = replace_pop();
7577 if (cc > 0)
7578 {
7579#ifdef FEAT_VREPLACE
7580 if (State & VREPLACE_FLAG)
7581 {
7582 /* Get the number of screen cells used by the character we are
7583 * going to delete. */
7584 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
7585 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
7586 }
7587#endif
7588#ifdef FEAT_MBYTE
7589 if (has_mbyte)
7590 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007591 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592# ifdef FEAT_VREPLACE
7593 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007594 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007595# endif
7596 replace_push(cc);
7597 }
7598 else
7599#endif
7600 {
7601 pchar_cursor(cc);
7602#ifdef FEAT_VREPLACE
7603 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007604 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007605#endif
7606 }
7607 replace_pop_ins();
7608
7609#ifdef FEAT_VREPLACE
7610 if (State & VREPLACE_FLAG)
7611 {
7612 /* Get the number of screen cells used by the inserted characters */
7613 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007614 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007615 vcol = start_vcol;
7616 for (i = 0; i < ins_len; ++i)
7617 {
7618 vcol += chartabsize(p + i, vcol);
7619#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007620 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621#endif
7622 }
7623 vcol -= start_vcol;
7624
7625 /* Delete spaces that were inserted after the cursor to keep the
7626 * text aligned. */
7627 curwin->w_cursor.col += ins_len;
7628 while (vcol > orig_vcols && gchar_cursor() == ' ')
7629 {
7630 del_char(FALSE);
7631 ++orig_vcols;
7632 }
7633 curwin->w_cursor.col -= ins_len;
7634 }
7635#endif
7636
7637 /* mark the buffer as changed and prepare for displaying */
7638 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
7639 }
7640 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007641 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007642}
7643
7644#ifdef FEAT_CINDENT
7645/*
7646 * Return TRUE if C-indenting is on.
7647 */
7648 static int
7649cindent_on()
7650{
7651 return (!p_paste && (curbuf->b_p_cin
7652# ifdef FEAT_EVAL
7653 || *curbuf->b_p_inde != NUL
7654# endif
7655 ));
7656}
7657#endif
7658
7659#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
7660/*
7661 * Re-indent the current line, based on the current contents of it and the
7662 * surrounding lines. Fixing the cursor position seems really easy -- I'm very
7663 * confused what all the part that handles Control-T is doing that I'm not.
7664 * "get_the_indent" should be get_c_indent, get_expr_indent or get_lisp_indent.
7665 */
7666
7667 void
7668fixthisline(get_the_indent)
7669 int (*get_the_indent) __ARGS((void));
7670{
Bram Moolenaar21b17e72008-01-16 19:03:13 +00007671 change_indent(INDENT_SET, get_the_indent(), FALSE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007672 if (linewhite(curwin->w_cursor.lnum))
7673 did_ai = TRUE; /* delete the indent if the line stays empty */
7674}
7675
7676 void
7677fix_indent()
7678{
7679 if (p_paste)
7680 return;
7681# ifdef FEAT_LISP
7682 if (curbuf->b_p_lisp && curbuf->b_p_ai)
7683 fixthisline(get_lisp_indent);
7684# endif
7685# if defined(FEAT_LISP) && defined(FEAT_CINDENT)
7686 else
7687# endif
7688# ifdef FEAT_CINDENT
7689 if (cindent_on())
7690 do_c_expr_indent();
7691# endif
7692}
7693
7694#endif
7695
7696#ifdef FEAT_CINDENT
7697/*
7698 * return TRUE if 'cinkeys' contains the key "keytyped",
7699 * when == '*': Only if key is preceded with '*' (indent before insert)
7700 * when == '!': Only if key is prededed with '!' (don't insert)
7701 * when == ' ': Only if key is not preceded with '*'(indent afterwards)
7702 *
7703 * "keytyped" can have a few special values:
7704 * KEY_OPEN_FORW
7705 * KEY_OPEN_BACK
7706 * KEY_COMPLETE just finished completion.
7707 *
7708 * If line_is_empty is TRUE accept keys with '0' before them.
7709 */
7710 int
7711in_cinkeys(keytyped, when, line_is_empty)
7712 int keytyped;
7713 int when;
7714 int line_is_empty;
7715{
7716 char_u *look;
7717 int try_match;
7718 int try_match_word;
7719 char_u *p;
7720 char_u *line;
7721 int icase;
7722 int i;
7723
Bram Moolenaar30848942009-12-24 14:46:12 +00007724 if (keytyped == NUL)
7725 /* Can happen with CTRL-Y and CTRL-E on a short line. */
7726 return FALSE;
7727
Bram Moolenaar071d4272004-06-13 20:20:40 +00007728#ifdef FEAT_EVAL
7729 if (*curbuf->b_p_inde != NUL)
7730 look = curbuf->b_p_indk; /* 'indentexpr' set: use 'indentkeys' */
7731 else
7732#endif
7733 look = curbuf->b_p_cink; /* 'indentexpr' empty: use 'cinkeys' */
7734 while (*look)
7735 {
7736 /*
7737 * Find out if we want to try a match with this key, depending on
7738 * 'when' and a '*' or '!' before the key.
7739 */
7740 switch (when)
7741 {
7742 case '*': try_match = (*look == '*'); break;
7743 case '!': try_match = (*look == '!'); break;
7744 default: try_match = (*look != '*'); break;
7745 }
7746 if (*look == '*' || *look == '!')
7747 ++look;
7748
7749 /*
7750 * If there is a '0', only accept a match if the line is empty.
7751 * But may still match when typing last char of a word.
7752 */
7753 if (*look == '0')
7754 {
7755 try_match_word = try_match;
7756 if (!line_is_empty)
7757 try_match = FALSE;
7758 ++look;
7759 }
7760 else
7761 try_match_word = FALSE;
7762
7763 /*
7764 * does it look like a control character?
7765 */
7766 if (*look == '^'
7767#ifdef EBCDIC
7768 && (Ctrl_chr(look[1]) != 0)
7769#else
7770 && look[1] >= '?' && look[1] <= '_'
7771#endif
7772 )
7773 {
7774 if (try_match && keytyped == Ctrl_chr(look[1]))
7775 return TRUE;
7776 look += 2;
7777 }
7778 /*
7779 * 'o' means "o" command, open forward.
7780 * 'O' means "O" command, open backward.
7781 */
7782 else if (*look == 'o')
7783 {
7784 if (try_match && keytyped == KEY_OPEN_FORW)
7785 return TRUE;
7786 ++look;
7787 }
7788 else if (*look == 'O')
7789 {
7790 if (try_match && keytyped == KEY_OPEN_BACK)
7791 return TRUE;
7792 ++look;
7793 }
7794
7795 /*
7796 * 'e' means to check for "else" at start of line and just before the
7797 * cursor.
7798 */
7799 else if (*look == 'e')
7800 {
7801 if (try_match && keytyped == 'e' && curwin->w_cursor.col >= 4)
7802 {
7803 p = ml_get_curline();
7804 if (skipwhite(p) == p + curwin->w_cursor.col - 4 &&
7805 STRNCMP(p + curwin->w_cursor.col - 4, "else", 4) == 0)
7806 return TRUE;
7807 }
7808 ++look;
7809 }
7810
7811 /*
7812 * ':' only causes an indent if it is at the end of a label or case
7813 * statement, or when it was before typing the ':' (to fix
7814 * class::method for C++).
7815 */
7816 else if (*look == ':')
7817 {
7818 if (try_match && keytyped == ':')
7819 {
7820 p = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007821 if (cin_iscase(p, FALSE) || cin_isscopedecl(p)
7822 || cin_islabel(30))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007823 return TRUE;
Bram Moolenaar30118152007-06-28 10:49:22 +00007824 /* Need to get the line again after cin_islabel(). */
7825 p = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007826 if (curwin->w_cursor.col > 2
7827 && p[curwin->w_cursor.col - 1] == ':'
7828 && p[curwin->w_cursor.col - 2] == ':')
7829 {
7830 p[curwin->w_cursor.col - 1] = ' ';
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007831 i = (cin_iscase(p, FALSE) || cin_isscopedecl(p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007832 || cin_islabel(30));
7833 p = ml_get_curline();
7834 p[curwin->w_cursor.col - 1] = ':';
7835 if (i)
7836 return TRUE;
7837 }
7838 }
7839 ++look;
7840 }
7841
7842
7843 /*
7844 * Is it a key in <>, maybe?
7845 */
7846 else if (*look == '<')
7847 {
7848 if (try_match)
7849 {
7850 /*
7851 * make up some named keys <o>, <O>, <e>, <0>, <>>, <<>, <*>,
7852 * <:> and <!> so that people can re-indent on o, O, e, 0, <,
7853 * >, *, : and ! keys if they really really want to.
7854 */
7855 if (vim_strchr((char_u *)"<>!*oOe0:", look[1]) != NULL
7856 && keytyped == look[1])
7857 return TRUE;
7858
7859 if (keytyped == get_special_key_code(look + 1))
7860 return TRUE;
7861 }
7862 while (*look && *look != '>')
7863 look++;
7864 while (*look == '>')
7865 look++;
7866 }
7867
7868 /*
7869 * Is it a word: "=word"?
7870 */
7871 else if (*look == '=' && look[1] != ',' && look[1] != NUL)
7872 {
7873 ++look;
7874 if (*look == '~')
7875 {
7876 icase = TRUE;
7877 ++look;
7878 }
7879 else
7880 icase = FALSE;
7881 p = vim_strchr(look, ',');
7882 if (p == NULL)
7883 p = look + STRLEN(look);
7884 if ((try_match || try_match_word)
7885 && curwin->w_cursor.col >= (colnr_T)(p - look))
7886 {
7887 int match = FALSE;
7888
7889#ifdef FEAT_INS_EXPAND
7890 if (keytyped == KEY_COMPLETE)
7891 {
7892 char_u *s;
7893
7894 /* Just completed a word, check if it starts with "look".
7895 * search back for the start of a word. */
7896 line = ml_get_curline();
7897# ifdef FEAT_MBYTE
7898 if (has_mbyte)
7899 {
7900 char_u *n;
7901
7902 for (s = line + curwin->w_cursor.col; s > line; s = n)
7903 {
7904 n = mb_prevptr(line, s);
7905 if (!vim_iswordp(n))
7906 break;
7907 }
7908 }
7909 else
7910# endif
7911 for (s = line + curwin->w_cursor.col; s > line; --s)
7912 if (!vim_iswordc(s[-1]))
7913 break;
7914 if (s + (p - look) <= line + curwin->w_cursor.col
7915 && (icase
7916 ? MB_STRNICMP(s, look, p - look)
7917 : STRNCMP(s, look, p - look)) == 0)
7918 match = TRUE;
7919 }
7920 else
7921#endif
7922 /* TODO: multi-byte */
7923 if (keytyped == (int)p[-1] || (icase && keytyped < 256
7924 && TOLOWER_LOC(keytyped) == TOLOWER_LOC((int)p[-1])))
7925 {
7926 line = ml_get_cursor();
7927 if ((curwin->w_cursor.col == (colnr_T)(p - look)
7928 || !vim_iswordc(line[-(p - look) - 1]))
7929 && (icase
7930 ? MB_STRNICMP(line - (p - look), look, p - look)
7931 : STRNCMP(line - (p - look), look, p - look))
7932 == 0)
7933 match = TRUE;
7934 }
7935 if (match && try_match_word && !try_match)
7936 {
7937 /* "0=word": Check if there are only blanks before the
7938 * word. */
7939 line = ml_get_curline();
7940 if ((int)(skipwhite(line) - line) !=
7941 (int)(curwin->w_cursor.col - (p - look)))
7942 match = FALSE;
7943 }
7944 if (match)
7945 return TRUE;
7946 }
7947 look = p;
7948 }
7949
7950 /*
7951 * ok, it's a boring generic character.
7952 */
7953 else
7954 {
7955 if (try_match && *look == keytyped)
7956 return TRUE;
7957 ++look;
7958 }
7959
7960 /*
7961 * Skip over ", ".
7962 */
7963 look = skip_to_option_part(look);
7964 }
7965 return FALSE;
7966}
7967#endif /* FEAT_CINDENT */
7968
7969#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
7970/*
7971 * Map Hebrew keyboard when in hkmap mode.
7972 */
7973 int
7974hkmap(c)
7975 int c;
7976{
7977 if (p_hkmapp) /* phonetic mapping, by Ilya Dogolazky */
7978 {
7979 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
7980 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
7981 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
7982 static char_u map[26] =
7983 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
7984 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
7985 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
7986 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
7987 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
7988 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
7989 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
7990 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
7991 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
7992
7993 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
7994 return (int)(map[CharOrd(c)] - 1 + p_aleph);
7995 /* '-1'='sofit' */
7996 else if (c == 'x')
7997 return 'X';
7998 else if (c == 'q')
7999 return '\''; /* {geresh}={'} */
8000 else if (c == 246)
8001 return ' '; /* \"o --> ' ' for a german keyboard */
8002 else if (c == 228)
8003 return ' '; /* \"a --> ' ' -- / -- */
8004 else if (c == 252)
8005 return ' '; /* \"u --> ' ' -- / -- */
8006#ifdef EBCDIC
8007 else if (islower(c))
8008#else
8009 /* NOTE: islower() does not do the right thing for us on Linux so we
8010 * do this the same was as 5.7 and previous, so it works correctly on
8011 * all systems. Specifically, the e.g. Delete and Arrow keys are
8012 * munged and won't work if e.g. searching for Hebrew text.
8013 */
8014 else if (c >= 'a' && c <= 'z')
8015#endif
8016 return (int)(map[CharOrdLow(c)] + p_aleph);
8017 else
8018 return c;
8019 }
8020 else
8021 {
8022 switch (c)
8023 {
8024 case '`': return ';';
8025 case '/': return '.';
8026 case '\'': return ',';
8027 case 'q': return '/';
8028 case 'w': return '\'';
8029
8030 /* Hebrew letters - set offset from 'a' */
8031 case ',': c = '{'; break;
8032 case '.': c = 'v'; break;
8033 case ';': c = 't'; break;
8034 default: {
8035 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
8036
8037#ifdef EBCDIC
8038 /* see note about islower() above */
8039 if (!islower(c))
8040#else
8041 if (c < 'a' || c > 'z')
8042#endif
8043 return c;
8044 c = str[CharOrdLow(c)];
8045 break;
8046 }
8047 }
8048
8049 return (int)(CharOrdLow(c) + p_aleph);
8050 }
8051}
8052#endif
8053
8054 static void
8055ins_reg()
8056{
8057 int need_redraw = FALSE;
8058 int regname;
8059 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008060#ifdef FEAT_VISUAL
8061 int vis_active = VIsual_active;
8062#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008063
8064 /*
8065 * If we are going to wait for a character, show a '"'.
8066 */
8067 pc_status = PC_STATUS_UNSET;
8068 if (redrawing() && !char_avail())
8069 {
8070 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00008071 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008072
8073 edit_putchar('"', TRUE);
8074#ifdef FEAT_CMDL_INFO
8075 add_to_showcmd_c(Ctrl_R);
8076#endif
8077 }
8078
8079#ifdef USE_ON_FLY_SCROLL
8080 dont_scroll = TRUE; /* disallow scrolling here */
8081#endif
8082
8083 /*
8084 * Don't map the register name. This also prevents the mode message to be
8085 * deleted when ESC is hit.
8086 */
8087 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008088 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008089 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008090 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
8091 {
8092 /* Get a third key for literal register insertion */
8093 literally = regname;
8094#ifdef FEAT_CMDL_INFO
8095 add_to_showcmd_c(literally);
8096#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008097 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008098 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008099 }
8100 --no_mapping;
8101
8102#ifdef FEAT_EVAL
8103 /*
8104 * Don't call u_sync() while getting the expression,
8105 * evaluating it or giving an error message for it!
8106 */
8107 ++no_u_sync;
8108 if (regname == '=')
8109 {
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008110# ifdef USE_IM_CONTROL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008111 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008112# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113 regname = get_expr_register();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008114# ifdef USE_IM_CONTROL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008115 /* Restore the Input Method. */
8116 if (im_on)
8117 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008118# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008119 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00008120 if (regname == NUL || !valid_yank_reg(regname, FALSE))
8121 {
8122 vim_beep();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008123 need_redraw = TRUE; /* remove the '"' */
Bram Moolenaar677ee682005-01-27 14:41:15 +00008124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008125 else
8126 {
8127#endif
8128 if (literally == Ctrl_O || literally == Ctrl_P)
8129 {
8130 /* Append the command to the redo buffer. */
8131 AppendCharToRedobuff(Ctrl_R);
8132 AppendCharToRedobuff(literally);
8133 AppendCharToRedobuff(regname);
8134
8135 do_put(regname, BACKWARD, 1L,
8136 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
8137 }
8138 else if (insert_reg(regname, literally) == FAIL)
8139 {
8140 vim_beep();
8141 need_redraw = TRUE; /* remove the '"' */
8142 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008143 else if (stop_insert_mode)
8144 /* When the '=' register was used and a function was invoked that
8145 * did ":stopinsert" then stuff_empty() returns FALSE but we won't
8146 * insert anything, need to remove the '"' */
8147 need_redraw = TRUE;
8148
Bram Moolenaar071d4272004-06-13 20:20:40 +00008149#ifdef FEAT_EVAL
8150 }
8151 --no_u_sync;
8152#endif
8153#ifdef FEAT_CMDL_INFO
8154 clear_showcmd();
8155#endif
8156
8157 /* If the inserted register is empty, we need to remove the '"' */
8158 if (need_redraw || stuff_empty())
8159 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008160
8161#ifdef FEAT_VISUAL
8162 /* Disallow starting Visual mode here, would get a weird mode. */
8163 if (!vis_active && VIsual_active)
8164 end_visual_mode();
8165#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008166}
8167
8168/*
8169 * CTRL-G commands in Insert mode.
8170 */
8171 static void
8172ins_ctrl_g()
8173{
8174 int c;
8175
8176#ifdef FEAT_INS_EXPAND
8177 /* Right after CTRL-X the cursor will be after the ruler. */
8178 setcursor();
8179#endif
8180
8181 /*
8182 * Don't map the second key. This also prevents the mode message to be
8183 * deleted when ESC is hit.
8184 */
8185 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008186 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008187 --no_mapping;
8188 switch (c)
8189 {
8190 /* CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col */
8191 case K_UP:
8192 case Ctrl_K:
8193 case 'k': ins_up(TRUE);
8194 break;
8195
8196 /* CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col */
8197 case K_DOWN:
8198 case Ctrl_J:
8199 case 'j': ins_down(TRUE);
8200 break;
8201
8202 /* CTRL-G u: start new undoable edit */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008203 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008204 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00008205
8206 /* Need to reset Insstart, esp. because a BS that joins
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00008207 * a line to the previous one must save for undo. */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00008208 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008209 break;
8210
8211 /* Unknown CTRL-G command, reserved for future expansion. */
8212 default: vim_beep();
8213 }
8214}
8215
8216/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008217 * CTRL-^ in Insert mode.
8218 */
8219 static void
8220ins_ctrl_hat()
8221{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00008222 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008223 {
8224 /* ":lmap" mappings exists, Toggle use of ":lmap" mappings. */
8225 if (State & LANGMAP)
8226 {
8227 curbuf->b_p_iminsert = B_IMODE_NONE;
8228 State &= ~LANGMAP;
8229 }
8230 else
8231 {
8232 curbuf->b_p_iminsert = B_IMODE_LMAP;
8233 State |= LANGMAP;
8234#ifdef USE_IM_CONTROL
8235 im_set_active(FALSE);
8236#endif
8237 }
8238 }
8239#ifdef USE_IM_CONTROL
8240 else
8241 {
8242 /* There are no ":lmap" mappings, toggle IM */
8243 if (im_get_status())
8244 {
8245 curbuf->b_p_iminsert = B_IMODE_NONE;
8246 im_set_active(FALSE);
8247 }
8248 else
8249 {
8250 curbuf->b_p_iminsert = B_IMODE_IM;
8251 State &= ~LANGMAP;
8252 im_set_active(TRUE);
8253 }
8254 }
8255#endif
8256 set_iminsert_global();
8257 showmode();
8258#ifdef FEAT_GUI
8259 /* may show different cursor shape or color */
8260 if (gui.in_use)
8261 gui_update_cursor(TRUE, FALSE);
8262#endif
8263#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8264 /* Show/unshow value of 'keymap' in status lines. */
8265 status_redraw_curbuf();
8266#endif
8267}
8268
8269/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008270 * Handle ESC in insert mode.
8271 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
8272 * insert.
8273 */
8274 static int
Bram Moolenaar488c6512005-08-11 20:09:58 +00008275ins_esc(count, cmdchar, nomove)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008276 long *count;
8277 int cmdchar;
Bram Moolenaar488c6512005-08-11 20:09:58 +00008278 int nomove; /* don't move cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008279{
8280 int temp;
8281 static int disabled_redraw = FALSE;
8282
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00008283#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008284 check_spell_redraw();
8285#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008286#if defined(FEAT_HANGULIN)
8287# if defined(ESC_CHG_TO_ENG_MODE)
8288 hangul_input_state_set(0);
8289# endif
8290 if (composing_hangul)
8291 {
8292 push_raw_key(composing_hangul_buffer, 2);
8293 composing_hangul = 0;
8294 }
8295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008296
8297 temp = curwin->w_cursor.col;
8298 if (disabled_redraw)
8299 {
8300 --RedrawingDisabled;
8301 disabled_redraw = FALSE;
8302 }
8303 if (!arrow_used)
8304 {
8305 /*
8306 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00008307 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
8308 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008309 */
8310 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00008311 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008312
8313 /*
8314 * Repeating insert may take a long time. Check for
8315 * interrupt now and then.
8316 */
8317 if (*count > 0)
8318 {
8319 line_breakcheck();
8320 if (got_int)
8321 *count = 0;
8322 }
8323
8324 if (--*count > 0) /* repeat what was typed */
8325 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00008326 /* Vi repeats the insert without replacing characters. */
8327 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
8328 State &= ~REPLACE_FLAG;
8329
Bram Moolenaar071d4272004-06-13 20:20:40 +00008330 (void)start_redo_ins();
8331 if (cmdchar == 'r' || cmdchar == 'v')
8332 stuffReadbuff(ESC_STR); /* no ESC in redo buffer */
8333 ++RedrawingDisabled;
8334 disabled_redraw = TRUE;
8335 return FALSE; /* repeat the insert */
8336 }
8337 stop_insert(&curwin->w_cursor, TRUE);
8338 undisplay_dollar();
8339 }
8340
8341 /* When an autoindent was removed, curswant stays after the
8342 * indent */
8343 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
8344 curwin->w_set_curswant = TRUE;
8345
8346 /* Remember the last Insert position in the '^ mark. */
8347 if (!cmdmod.keepjumps)
8348 curbuf->b_last_insert = curwin->w_cursor;
8349
8350 /*
8351 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00008352 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008353 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00008354 if (!nomove
8355 && (curwin->w_cursor.col != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00008356#ifdef FEAT_VIRTUALEDIT
8357 || curwin->w_cursor.coladd > 0
8358#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00008359 )
8360 && (restart_edit == NUL
8361 || (gchar_cursor() == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008362#ifdef FEAT_VISUAL
Bram Moolenaar488c6512005-08-11 20:09:58 +00008363 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00008364#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00008365 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008366#ifdef FEAT_RIGHTLEFT
8367 && !revins_on
8368#endif
8369 )
8370 {
8371#ifdef FEAT_VIRTUALEDIT
8372 if (curwin->w_cursor.coladd > 0 || ve_flags == VE_ALL)
8373 {
8374 oneleft();
8375 if (restart_edit != NUL)
8376 ++curwin->w_cursor.coladd;
8377 }
8378 else
8379#endif
8380 {
8381 --curwin->w_cursor.col;
8382#ifdef FEAT_MBYTE
8383 /* Correct cursor for multi-byte character. */
8384 if (has_mbyte)
8385 mb_adjust_cursor();
8386#endif
8387 }
8388 }
8389
8390#ifdef USE_IM_CONTROL
8391 /* Disable IM to allow typing English directly for Normal mode commands.
8392 * When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
8393 * well). */
8394 if (!(State & LANGMAP))
8395 im_save_status(&curbuf->b_p_iminsert);
8396 im_set_active(FALSE);
8397#endif
8398
8399 State = NORMAL;
8400 /* need to position cursor again (e.g. when on a TAB ) */
8401 changed_cline_bef_curs();
8402
8403#ifdef FEAT_MOUSE
8404 setmouse();
8405#endif
8406#ifdef CURSOR_SHAPE
8407 ui_cursor_shape(); /* may show different cursor shape */
8408#endif
8409
8410 /*
8411 * When recording or for CTRL-O, need to display the new mode.
8412 * Otherwise remove the mode message.
8413 */
8414 if (Recording || restart_edit != NUL)
8415 showmode();
8416 else if (p_smd)
8417 MSG("");
8418
8419 return TRUE; /* exit Insert mode */
8420}
8421
8422#ifdef FEAT_RIGHTLEFT
8423/*
8424 * Toggle language: hkmap and revins_on.
8425 * Move to end of reverse inserted text.
8426 */
8427 static void
8428ins_ctrl_()
8429{
8430 if (revins_on && revins_chars && revins_scol >= 0)
8431 {
8432 while (gchar_cursor() != NUL && revins_chars--)
8433 ++curwin->w_cursor.col;
8434 }
8435 p_ri = !p_ri;
8436 revins_on = (State == INSERT && p_ri);
8437 if (revins_on)
8438 {
8439 revins_scol = curwin->w_cursor.col;
8440 revins_legal++;
8441 revins_chars = 0;
8442 undisplay_dollar();
8443 }
8444 else
8445 revins_scol = -1;
8446#ifdef FEAT_FKMAP
8447 if (p_altkeymap)
8448 {
8449 /*
8450 * to be consistent also for redo command, using '.'
8451 * set arrow_used to true and stop it - causing to redo
8452 * characters entered in one mode (normal/reverse insert).
8453 */
8454 arrow_used = TRUE;
8455 (void)stop_arrow();
8456 p_fkmap = curwin->w_p_rl ^ p_ri;
8457 if (p_fkmap && p_ri)
8458 State = INSERT;
8459 }
8460 else
8461#endif
8462 p_hkmap = curwin->w_p_rl ^ p_ri; /* be consistent! */
8463 showmode();
8464}
8465#endif
8466
8467#ifdef FEAT_VISUAL
8468/*
8469 * If 'keymodel' contains "startsel", may start selection.
8470 * Returns TRUE when a CTRL-O and other keys stuffed.
8471 */
8472 static int
8473ins_start_select(c)
8474 int c;
8475{
8476 if (km_startsel)
8477 switch (c)
8478 {
8479 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008480 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008481 case K_PAGEUP:
8482 case K_KPAGEUP:
8483 case K_PAGEDOWN:
8484 case K_KPAGEDOWN:
8485# ifdef MACOS
8486 case K_LEFT:
8487 case K_RIGHT:
8488 case K_UP:
8489 case K_DOWN:
8490 case K_END:
8491 case K_HOME:
8492# endif
8493 if (!(mod_mask & MOD_MASK_SHIFT))
8494 break;
8495 /* FALLTHROUGH */
8496 case K_S_LEFT:
8497 case K_S_RIGHT:
8498 case K_S_UP:
8499 case K_S_DOWN:
8500 case K_S_END:
8501 case K_S_HOME:
8502 /* Start selection right away, the cursor can move with
8503 * CTRL-O when beyond the end of the line. */
8504 start_selection();
8505
8506 /* Execute the key in (insert) Select mode. */
8507 stuffcharReadbuff(Ctrl_O);
8508 if (mod_mask)
8509 {
8510 char_u buf[4];
8511
8512 buf[0] = K_SPECIAL;
8513 buf[1] = KS_MODIFIER;
8514 buf[2] = mod_mask;
8515 buf[3] = NUL;
8516 stuffReadbuff(buf);
8517 }
8518 stuffcharReadbuff(c);
8519 return TRUE;
8520 }
8521 return FALSE;
8522}
8523#endif
8524
8525/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008526 * <Insert> key in Insert mode: toggle insert/remplace mode.
8527 */
8528 static void
8529ins_insert(replaceState)
8530 int replaceState;
8531{
8532#ifdef FEAT_FKMAP
8533 if (p_fkmap && p_ri)
8534 {
8535 beep_flush();
8536 EMSG(farsi_text_3); /* encoded in Farsi */
8537 return;
8538 }
8539#endif
8540
8541#ifdef FEAT_AUTOCMD
Bram Moolenaar1e015462005-09-25 22:16:38 +00008542# ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008543 set_vim_var_string(VV_INSERTMODE,
8544 (char_u *)((State & REPLACE_FLAG) ? "i" :
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008545# ifdef FEAT_VREPLACE
8546 replaceState == VREPLACE ? "v" :
8547# endif
8548 "r"), 1);
Bram Moolenaar1e015462005-09-25 22:16:38 +00008549# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008550 apply_autocmds(EVENT_INSERTCHANGE, NULL, NULL, FALSE, curbuf);
8551#endif
8552 if (State & REPLACE_FLAG)
8553 State = INSERT | (State & LANGMAP);
8554 else
8555 State = replaceState | (State & LANGMAP);
8556 AppendCharToRedobuff(K_INS);
8557 showmode();
8558#ifdef CURSOR_SHAPE
8559 ui_cursor_shape(); /* may show different cursor shape */
8560#endif
8561}
8562
8563/*
8564 * Pressed CTRL-O in Insert mode.
8565 */
8566 static void
8567ins_ctrl_o()
8568{
8569#ifdef FEAT_VREPLACE
8570 if (State & VREPLACE_FLAG)
8571 restart_edit = 'V';
8572 else
8573#endif
8574 if (State & REPLACE_FLAG)
8575 restart_edit = 'R';
8576 else
8577 restart_edit = 'I';
8578#ifdef FEAT_VIRTUALEDIT
8579 if (virtual_active())
8580 ins_at_eol = FALSE; /* cursor always keeps its column */
8581 else
8582#endif
8583 ins_at_eol = (gchar_cursor() == NUL);
8584}
8585
8586/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008587 * If the cursor is on an indent, ^T/^D insert/delete one
8588 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00008589 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00008590 * with vi. But vi only supports ^T and ^D after an
8591 * autoindent, we support it everywhere.
8592 */
8593 static void
8594ins_shift(c, lastc)
8595 int c;
8596 int lastc;
8597{
8598 if (stop_arrow() == FAIL)
8599 return;
8600 AppendCharToRedobuff(c);
8601
8602 /*
8603 * 0^D and ^^D: remove all indent.
8604 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00008605 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
8606 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008607 {
8608 --curwin->w_cursor.col;
8609 (void)del_char(FALSE); /* delete the '^' or '0' */
8610 /* In Replace mode, restore the characters that '^' or '0' replaced. */
8611 if (State & REPLACE_FLAG)
8612 replace_pop_ins();
8613 if (lastc == '^')
8614 old_indent = get_indent(); /* remember curr. indent */
Bram Moolenaar21b17e72008-01-16 19:03:13 +00008615 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008616 }
8617 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00008618 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008619
8620 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
8621 did_ai = FALSE;
8622#ifdef FEAT_SMARTINDENT
8623 did_si = FALSE;
8624 can_si = FALSE;
8625 can_si_back = FALSE;
8626#endif
8627#ifdef FEAT_CINDENT
8628 can_cindent = FALSE; /* no cindenting after ^D or ^T */
8629#endif
8630}
8631
8632 static void
8633ins_del()
8634{
8635 int temp;
8636
8637 if (stop_arrow() == FAIL)
8638 return;
8639 if (gchar_cursor() == NUL) /* delete newline */
8640 {
8641 temp = curwin->w_cursor.col;
8642 if (!can_bs(BS_EOL) /* only if "eol" included */
Bram Moolenaar81340392012-06-06 16:12:59 +02008643 || do_join(2, FALSE, TRUE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008644 vim_beep();
8645 else
8646 curwin->w_cursor.col = temp;
8647 }
8648 else if (del_char(FALSE) == FAIL) /* delete char under cursor */
8649 vim_beep();
8650 did_ai = FALSE;
8651#ifdef FEAT_SMARTINDENT
8652 did_si = FALSE;
8653 can_si = FALSE;
8654 can_si_back = FALSE;
8655#endif
8656 AppendCharToRedobuff(K_DEL);
8657}
8658
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008659static void ins_bs_one __ARGS((colnr_T *vcolp));
8660
8661/*
8662 * Delete one character for ins_bs().
8663 */
8664 static void
8665ins_bs_one(vcolp)
8666 colnr_T *vcolp;
8667{
8668 dec_cursor();
8669 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
8670 if (State & REPLACE_FLAG)
8671 {
8672 /* Don't delete characters before the insert point when in
8673 * Replace mode */
8674 if (curwin->w_cursor.lnum != Insstart.lnum
8675 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00008676 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008677 }
8678 else
8679 (void)del_char(FALSE);
8680}
8681
Bram Moolenaar071d4272004-06-13 20:20:40 +00008682/*
8683 * Handle Backspace, delete-word and delete-line in Insert mode.
8684 * Return TRUE when backspace was actually used.
8685 */
8686 static int
8687ins_bs(c, mode, inserted_space_p)
8688 int c;
8689 int mode;
8690 int *inserted_space_p;
8691{
8692 linenr_T lnum;
8693 int cc;
8694 int temp = 0; /* init for GCC */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008695 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008696 colnr_T mincol;
8697 int did_backspace = FALSE;
8698 int in_indent;
8699 int oldState;
8700#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008701 int cpc[MAX_MCO]; /* composing characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008702#endif
8703
8704 /*
8705 * can't delete anything in an empty file
8706 * can't backup past first character in buffer
8707 * can't backup past starting point unless 'backspace' > 1
8708 * can backup to a previous line if 'backspace' == 0
8709 */
8710 if ( bufempty()
8711 || (
8712#ifdef FEAT_RIGHTLEFT
8713 !revins_on &&
8714#endif
8715 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
8716 || (!can_bs(BS_START)
8717 && (arrow_used
8718 || (curwin->w_cursor.lnum == Insstart.lnum
8719 && curwin->w_cursor.col <= Insstart.col)))
8720 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
8721 && curwin->w_cursor.col <= ai_col)
8722 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
8723 {
8724 vim_beep();
8725 return FALSE;
8726 }
8727
8728 if (stop_arrow() == FAIL)
8729 return FALSE;
8730 in_indent = inindent(0);
8731#ifdef FEAT_CINDENT
8732 if (in_indent)
8733 can_cindent = FALSE;
8734#endif
8735#ifdef FEAT_COMMENTS
8736 end_comment_pending = NUL; /* After BS, don't auto-end comment */
8737#endif
8738#ifdef FEAT_RIGHTLEFT
8739 if (revins_on) /* put cursor after last inserted char */
8740 inc_cursor();
8741#endif
8742
8743#ifdef FEAT_VIRTUALEDIT
8744 /* Virtualedit:
8745 * BACKSPACE_CHAR eats a virtual space
8746 * BACKSPACE_WORD eats all coladd
8747 * BACKSPACE_LINE eats all coladd and keeps going
8748 */
8749 if (curwin->w_cursor.coladd > 0)
8750 {
8751 if (mode == BACKSPACE_CHAR)
8752 {
8753 --curwin->w_cursor.coladd;
8754 return TRUE;
8755 }
8756 if (mode == BACKSPACE_WORD)
8757 {
8758 curwin->w_cursor.coladd = 0;
8759 return TRUE;
8760 }
8761 curwin->w_cursor.coladd = 0;
8762 }
8763#endif
8764
8765 /*
8766 * delete newline!
8767 */
8768 if (curwin->w_cursor.col == 0)
8769 {
8770 lnum = Insstart.lnum;
8771 if (curwin->w_cursor.lnum == Insstart.lnum
8772#ifdef FEAT_RIGHTLEFT
8773 || revins_on
8774#endif
8775 )
8776 {
8777 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
8778 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
8779 return FALSE;
8780 --Insstart.lnum;
8781 Insstart.col = MAXCOL;
8782 }
8783 /*
8784 * In replace mode:
8785 * cc < 0: NL was inserted, delete it
8786 * cc >= 0: NL was replaced, put original characters back
8787 */
8788 cc = -1;
8789 if (State & REPLACE_FLAG)
8790 cc = replace_pop(); /* returns -1 if NL was inserted */
8791 /*
8792 * In replace mode, in the line we started replacing, we only move the
8793 * cursor.
8794 */
8795 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
8796 {
8797 dec_cursor();
8798 }
8799 else
8800 {
8801#ifdef FEAT_VREPLACE
8802 if (!(State & VREPLACE_FLAG)
8803 || curwin->w_cursor.lnum > orig_line_count)
8804#endif
8805 {
8806 temp = gchar_cursor(); /* remember current char */
8807 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00008808
8809 /* When "aw" is in 'formatoptions' we must delete the space at
8810 * the end of the line, otherwise the line will be broken
8811 * again when auto-formatting. */
8812 if (has_format_option(FO_AUTO)
8813 && has_format_option(FO_WHITE_PAR))
8814 {
8815 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
8816 TRUE);
8817 int len;
8818
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008819 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00008820 if (len > 0 && ptr[len - 1] == ' ')
8821 ptr[len - 1] = NUL;
8822 }
8823
Bram Moolenaar81340392012-06-06 16:12:59 +02008824 (void)do_join(2, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008825 if (temp == NUL && gchar_cursor() != NUL)
8826 inc_cursor();
8827 }
8828#ifdef FEAT_VREPLACE
8829 else
8830 dec_cursor();
8831#endif
8832
8833 /*
8834 * In REPLACE mode we have to put back the text that was replaced
8835 * by the NL. On the replace stack is first a NUL-terminated
8836 * sequence of characters that were deleted and then the
8837 * characters that NL replaced.
8838 */
8839 if (State & REPLACE_FLAG)
8840 {
8841 /*
8842 * Do the next ins_char() in NORMAL state, to
8843 * prevent ins_char() from replacing characters and
8844 * avoiding showmatch().
8845 */
8846 oldState = State;
8847 State = NORMAL;
8848 /*
8849 * restore characters (blanks) deleted after cursor
8850 */
8851 while (cc > 0)
8852 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008853 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008854#ifdef FEAT_MBYTE
8855 mb_replace_pop_ins(cc);
8856#else
8857 ins_char(cc);
8858#endif
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008859 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008860 cc = replace_pop();
8861 }
8862 /* restore the characters that NL replaced */
8863 replace_pop_ins();
8864 State = oldState;
8865 }
8866 }
8867 did_ai = FALSE;
8868 }
8869 else
8870 {
8871 /*
8872 * Delete character(s) before the cursor.
8873 */
8874#ifdef FEAT_RIGHTLEFT
8875 if (revins_on) /* put cursor on last inserted char */
8876 dec_cursor();
8877#endif
8878 mincol = 0;
8879 /* keep indent */
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00008880 if (mode == BACKSPACE_LINE
8881 && (curbuf->b_p_ai
8882#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00008883 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00008884#endif
8885 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00008886#ifdef FEAT_RIGHTLEFT
8887 && !revins_on
8888#endif
8889 )
8890 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008891 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008892 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00008893 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008894 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008895 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008896 }
8897
8898 /*
8899 * Handle deleting one 'shiftwidth' or 'softtabstop'.
8900 */
8901 if ( mode == BACKSPACE_CHAR
8902 && ((p_sta && in_indent)
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02008903 || (get_sts_value() != 0
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00008904 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00008905 && (*(ml_get_cursor() - 1) == TAB
8906 || (*(ml_get_cursor() - 1) == ' '
8907 && (!*inserted_space_p
8908 || arrow_used))))))
8909 {
8910 int ts;
8911 colnr_T vcol;
8912 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008913 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008914
8915 *inserted_space_p = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00008916 if (p_sta && in_indent)
Bram Moolenaar14f24742012-08-08 18:01:05 +02008917 ts = (int)get_sw_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008918 else
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02008919 ts = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008920 /* Compute the virtual column where we want to be. Since
8921 * 'showbreak' may get in the way, need to get the last column of
8922 * the previous character. */
8923 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008924 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925 dec_cursor();
8926 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
8927 inc_cursor();
8928 want_vcol = (want_vcol / ts) * ts;
8929
8930 /* delete characters until we are at or before want_vcol */
8931 while (vcol > want_vcol
8932 && (cc = *(ml_get_cursor() - 1), vim_iswhite(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008933 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008934
8935 /* insert extra spaces until we are at want_vcol */
8936 while (vcol < want_vcol)
8937 {
8938 /* Remember the first char we inserted */
8939 if (curwin->w_cursor.lnum == Insstart.lnum
8940 && curwin->w_cursor.col < Insstart.col)
8941 Insstart.col = curwin->w_cursor.col;
8942
8943#ifdef FEAT_VREPLACE
8944 if (State & VREPLACE_FLAG)
8945 ins_char(' ');
8946 else
8947#endif
8948 {
8949 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008950 if ((State & REPLACE_FLAG))
8951 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008952 }
8953 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
8954 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008955
8956 /* If we are now back where we started delete one character. Can
8957 * happen when using 'sts' and 'linebreak'. */
8958 if (vcol >= start_vcol)
8959 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008960 }
8961
8962 /*
8963 * Delete upto starting point, start of line or previous word.
8964 */
8965 else do
8966 {
8967#ifdef FEAT_RIGHTLEFT
8968 if (!revins_on) /* put cursor on char to be deleted */
8969#endif
8970 dec_cursor();
8971
8972 /* start of word? */
8973 if (mode == BACKSPACE_WORD && !vim_isspace(gchar_cursor()))
8974 {
8975 mode = BACKSPACE_WORD_NOT_SPACE;
8976 temp = vim_iswordc(gchar_cursor());
8977 }
8978 /* end of word? */
8979 else if (mode == BACKSPACE_WORD_NOT_SPACE
8980 && (vim_isspace(cc = gchar_cursor())
8981 || vim_iswordc(cc) != temp))
8982 {
8983#ifdef FEAT_RIGHTLEFT
8984 if (!revins_on)
8985#endif
8986 inc_cursor();
8987#ifdef FEAT_RIGHTLEFT
8988 else if (State & REPLACE_FLAG)
8989 dec_cursor();
8990#endif
8991 break;
8992 }
8993 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00008994 replace_do_bs(-1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008995 else
8996 {
8997#ifdef FEAT_MBYTE
8998 if (enc_utf8 && p_deco)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008999 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009000#endif
9001 (void)del_char(FALSE);
9002#ifdef FEAT_MBYTE
9003 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00009004 * If there are combining characters and 'delcombine' is set
9005 * move the cursor back. Don't back up before the base
Bram Moolenaar071d4272004-06-13 20:20:40 +00009006 * character.
9007 */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00009008 if (enc_utf8 && p_deco && cpc[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009009 inc_cursor();
9010#endif
9011#ifdef FEAT_RIGHTLEFT
9012 if (revins_chars)
9013 {
9014 revins_chars--;
9015 revins_legal++;
9016 }
9017 if (revins_on && gchar_cursor() == NUL)
9018 break;
9019#endif
9020 }
9021 /* Just a single backspace?: */
9022 if (mode == BACKSPACE_CHAR)
9023 break;
9024 } while (
9025#ifdef FEAT_RIGHTLEFT
9026 revins_on ||
9027#endif
9028 (curwin->w_cursor.col > mincol
9029 && (curwin->w_cursor.lnum != Insstart.lnum
9030 || curwin->w_cursor.col != Insstart.col)));
9031 did_backspace = TRUE;
9032 }
9033#ifdef FEAT_SMARTINDENT
9034 did_si = FALSE;
9035 can_si = FALSE;
9036 can_si_back = FALSE;
9037#endif
9038 if (curwin->w_cursor.col <= 1)
9039 did_ai = FALSE;
9040 /*
9041 * It's a little strange to put backspaces into the redo
9042 * buffer, but it makes auto-indent a lot easier to deal
9043 * with.
9044 */
9045 AppendCharToRedobuff(c);
9046
9047 /* If deleted before the insertion point, adjust it */
9048 if (curwin->w_cursor.lnum == Insstart.lnum
9049 && curwin->w_cursor.col < Insstart.col)
9050 Insstart.col = curwin->w_cursor.col;
9051
9052 /* vi behaviour: the cursor moves backward but the character that
9053 * was there remains visible
9054 * Vim behaviour: the cursor moves backward and the character that
9055 * was there is erased from the screen.
9056 * We can emulate the vi behaviour by pretending there is a dollar
9057 * displayed even when there isn't.
9058 * --pkv Sun Jan 19 01:56:40 EST 2003 */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01009059 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009060 dollar_vcol = curwin->w_virtcol;
9061
Bram Moolenaarce3be472008-01-14 19:12:28 +00009062#ifdef FEAT_FOLDING
9063 /* When deleting a char the cursor line must never be in a closed fold.
9064 * E.g., when 'foldmethod' is indent and deleting the first non-white
9065 * char before a Tab. */
9066 if (did_backspace)
9067 foldOpenCursor();
9068#endif
9069
Bram Moolenaar071d4272004-06-13 20:20:40 +00009070 return did_backspace;
9071}
9072
9073#ifdef FEAT_MOUSE
9074 static void
9075ins_mouse(c)
9076 int c;
9077{
9078 pos_T tpos;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009079 win_T *old_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009080
9081# ifdef FEAT_GUI
9082 /* When GUI is active, also move/paste when 'mouse' is empty */
9083 if (!gui.in_use)
9084# endif
9085 if (!mouse_has(MOUSE_INSERT))
9086 return;
9087
9088 undisplay_dollar();
9089 tpos = curwin->w_cursor;
9090 if (do_mouse(NULL, c, BACKWARD, 1L, 0))
9091 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009092#ifdef FEAT_WINDOWS
9093 win_T *new_curwin = curwin;
9094
9095 if (curwin != old_curwin && win_valid(old_curwin))
9096 {
9097 /* Mouse took us to another window. We need to go back to the
9098 * previous one to stop insert there properly. */
9099 curwin = old_curwin;
9100 curbuf = curwin->w_buffer;
9101 }
9102#endif
9103 start_arrow(curwin == old_curwin ? &tpos : NULL);
9104#ifdef FEAT_WINDOWS
9105 if (curwin != new_curwin && win_valid(new_curwin))
9106 {
9107 curwin = new_curwin;
9108 curbuf = curwin->w_buffer;
9109 }
9110#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009111# ifdef FEAT_CINDENT
9112 can_cindent = TRUE;
9113# endif
9114 }
9115
9116#ifdef FEAT_WINDOWS
9117 /* redraw status lines (in case another window became active) */
9118 redraw_statuslines();
9119#endif
9120}
9121
9122 static void
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009123ins_mousescroll(dir)
9124 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009125{
9126 pos_T tpos;
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009127# if defined(FEAT_WINDOWS)
9128 win_T *old_curwin = curwin;
9129# endif
9130# ifdef FEAT_INS_EXPAND
9131 int did_scroll = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009132# endif
9133
9134 tpos = curwin->w_cursor;
9135
9136# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009137 /* Currently the mouse coordinates are only known in the GUI. */
9138 if (gui.in_use && mouse_row >= 0 && mouse_col >= 0)
9139 {
9140 int row, col;
9141
9142 row = mouse_row;
9143 col = mouse_col;
9144
9145 /* find the window at the pointer coordinates */
9146 curwin = mouse_find_win(&row, &col);
9147 curbuf = curwin->w_buffer;
9148 }
9149 if (curwin == old_curwin)
9150# endif
9151 undisplay_dollar();
9152
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009153# ifdef FEAT_INS_EXPAND
9154 /* Don't scroll the window in which completion is being done. */
9155 if (!pum_visible()
9156# if defined(FEAT_WINDOWS)
9157 || curwin != old_curwin
9158# endif
9159 )
9160# endif
9161 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009162 if (dir == MSCR_DOWN || dir == MSCR_UP)
9163 {
9164 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
9165 scroll_redraw(dir,
9166 (long)(curwin->w_botline - curwin->w_topline));
9167 else
9168 scroll_redraw(dir, 3L);
9169 }
9170#ifdef FEAT_GUI
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009171 else
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009172 {
9173 int val, step = 6;
9174
9175 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
9176 step = W_WIDTH(curwin);
9177 val = curwin->w_leftcol + (dir == MSCR_RIGHT ? -step : step);
9178 if (val < 0)
9179 val = 0;
9180 gui_do_horiz_scroll(val, TRUE);
9181 }
9182#endif
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009183# ifdef FEAT_INS_EXPAND
9184 did_scroll = TRUE;
9185# endif
9186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009187
9188# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
9189 curwin->w_redr_status = TRUE;
9190
9191 curwin = old_curwin;
9192 curbuf = curwin->w_buffer;
9193# endif
9194
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009195# ifdef FEAT_INS_EXPAND
9196 /* The popup menu may overlay the window, need to redraw it.
9197 * TODO: Would be more efficient to only redraw the windows that are
9198 * overlapped by the popup menu. */
9199 if (pum_visible() && did_scroll)
9200 {
9201 redraw_all_later(NOT_VALID);
9202 ins_compl_show_pum();
9203 }
9204# endif
9205
Bram Moolenaar071d4272004-06-13 20:20:40 +00009206 if (!equalpos(curwin->w_cursor, tpos))
9207 {
9208 start_arrow(&tpos);
9209# ifdef FEAT_CINDENT
9210 can_cindent = TRUE;
9211# endif
9212 }
9213}
9214#endif
9215
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009216#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00009217 static void
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009218ins_tabline(c)
9219 int c;
9220{
9221 /* We will be leaving the current window, unless closing another tab. */
9222 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
9223 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
9224 {
9225 undisplay_dollar();
9226 start_arrow(&curwin->w_cursor);
9227# ifdef FEAT_CINDENT
9228 can_cindent = TRUE;
9229# endif
9230 }
9231
9232 if (c == K_TABLINE)
9233 goto_tabpage(current_tab);
9234 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009235 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009236 handle_tabmenu();
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009237 redraw_statuslines(); /* will redraw the tabline when needed */
9238 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009239}
9240#endif
9241
9242#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009243 void
9244ins_scroll()
9245{
9246 pos_T tpos;
9247
9248 undisplay_dollar();
9249 tpos = curwin->w_cursor;
9250 if (gui_do_scroll())
9251 {
9252 start_arrow(&tpos);
9253# ifdef FEAT_CINDENT
9254 can_cindent = TRUE;
9255# endif
9256 }
9257}
9258
9259 void
9260ins_horscroll()
9261{
9262 pos_T tpos;
9263
9264 undisplay_dollar();
9265 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009266 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009267 {
9268 start_arrow(&tpos);
9269# ifdef FEAT_CINDENT
9270 can_cindent = TRUE;
9271# endif
9272 }
9273}
9274#endif
9275
9276 static void
9277ins_left()
9278{
9279 pos_T tpos;
9280
9281#ifdef FEAT_FOLDING
9282 if ((fdo_flags & FDO_HOR) && KeyTyped)
9283 foldOpenCursor();
9284#endif
9285 undisplay_dollar();
9286 tpos = curwin->w_cursor;
9287 if (oneleft() == OK)
9288 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00009289#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
9290 /* Only call start_arrow() when not busy with preediting, it will
9291 * break undo. K_LEFT is inserted in im_correct_cursor(). */
9292 if (!im_is_preediting())
9293#endif
9294 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009295#ifdef FEAT_RIGHTLEFT
9296 /* If exit reversed string, position is fixed */
9297 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
9298 revins_legal++;
9299 revins_chars++;
9300#endif
9301 }
9302
9303 /*
9304 * if 'whichwrap' set for cursor in insert mode may go to
9305 * previous line
9306 */
9307 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
9308 {
9309 start_arrow(&tpos);
9310 --(curwin->w_cursor.lnum);
9311 coladvance((colnr_T)MAXCOL);
9312 curwin->w_set_curswant = TRUE; /* so we stay at the end */
9313 }
9314 else
9315 vim_beep();
9316}
9317
9318 static void
9319ins_home(c)
9320 int c;
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 (c == K_C_HOME)
9331 curwin->w_cursor.lnum = 1;
9332 curwin->w_cursor.col = 0;
9333#ifdef FEAT_VIRTUALEDIT
9334 curwin->w_cursor.coladd = 0;
9335#endif
9336 curwin->w_curswant = 0;
9337 start_arrow(&tpos);
9338}
9339
9340 static void
9341ins_end(c)
9342 int c;
9343{
9344 pos_T tpos;
9345
9346#ifdef FEAT_FOLDING
9347 if ((fdo_flags & FDO_HOR) && KeyTyped)
9348 foldOpenCursor();
9349#endif
9350 undisplay_dollar();
9351 tpos = curwin->w_cursor;
9352 if (c == K_C_END)
9353 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9354 coladvance((colnr_T)MAXCOL);
9355 curwin->w_curswant = MAXCOL;
9356
9357 start_arrow(&tpos);
9358}
9359
9360 static void
9361ins_s_left()
9362{
9363#ifdef FEAT_FOLDING
9364 if ((fdo_flags & FDO_HOR) && KeyTyped)
9365 foldOpenCursor();
9366#endif
9367 undisplay_dollar();
9368 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
9369 {
9370 start_arrow(&curwin->w_cursor);
9371 (void)bck_word(1L, FALSE, FALSE);
9372 curwin->w_set_curswant = TRUE;
9373 }
9374 else
9375 vim_beep();
9376}
9377
9378 static void
9379ins_right()
9380{
9381#ifdef FEAT_FOLDING
9382 if ((fdo_flags & FDO_HOR) && KeyTyped)
9383 foldOpenCursor();
9384#endif
9385 undisplay_dollar();
Bram Moolenaar78a15312009-05-15 19:33:18 +00009386 if (gchar_cursor() != NUL
9387#ifdef FEAT_VIRTUALEDIT
9388 || virtual_active()
9389#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009390 )
9391 {
9392 start_arrow(&curwin->w_cursor);
9393 curwin->w_set_curswant = TRUE;
9394#ifdef FEAT_VIRTUALEDIT
9395 if (virtual_active())
9396 oneright();
9397 else
9398#endif
9399 {
9400#ifdef FEAT_MBYTE
9401 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009402 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00009403 else
9404#endif
9405 ++curwin->w_cursor.col;
9406 }
9407
9408#ifdef FEAT_RIGHTLEFT
9409 revins_legal++;
9410 if (revins_chars)
9411 revins_chars--;
9412#endif
9413 }
9414 /* if 'whichwrap' set for cursor in insert mode, may move the
9415 * cursor to the next line */
9416 else if (vim_strchr(p_ww, ']') != NULL
9417 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
9418 {
9419 start_arrow(&curwin->w_cursor);
9420 curwin->w_set_curswant = TRUE;
9421 ++curwin->w_cursor.lnum;
9422 curwin->w_cursor.col = 0;
9423 }
9424 else
9425 vim_beep();
9426}
9427
9428 static void
9429ins_s_right()
9430{
9431#ifdef FEAT_FOLDING
9432 if ((fdo_flags & FDO_HOR) && KeyTyped)
9433 foldOpenCursor();
9434#endif
9435 undisplay_dollar();
9436 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
9437 || gchar_cursor() != NUL)
9438 {
9439 start_arrow(&curwin->w_cursor);
9440 (void)fwd_word(1L, FALSE, 0);
9441 curwin->w_set_curswant = TRUE;
9442 }
9443 else
9444 vim_beep();
9445}
9446
9447 static void
9448ins_up(startcol)
9449 int startcol; /* when TRUE move to Insstart.col */
9450{
9451 pos_T tpos;
9452 linenr_T old_topline = curwin->w_topline;
9453#ifdef FEAT_DIFF
9454 int old_topfill = curwin->w_topfill;
9455#endif
9456
9457 undisplay_dollar();
9458 tpos = curwin->w_cursor;
9459 if (cursor_up(1L, TRUE) == OK)
9460 {
9461 if (startcol)
9462 coladvance(getvcol_nolist(&Insstart));
9463 if (old_topline != curwin->w_topline
9464#ifdef FEAT_DIFF
9465 || old_topfill != curwin->w_topfill
9466#endif
9467 )
9468 redraw_later(VALID);
9469 start_arrow(&tpos);
9470#ifdef FEAT_CINDENT
9471 can_cindent = TRUE;
9472#endif
9473 }
9474 else
9475 vim_beep();
9476}
9477
9478 static void
9479ins_pageup()
9480{
9481 pos_T tpos;
9482
9483 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009484
9485#ifdef FEAT_WINDOWS
9486 if (mod_mask & MOD_MASK_CTRL)
9487 {
9488 /* <C-PageUp>: tab page back */
Bram Moolenaarbc444822006-10-17 11:37:50 +00009489 if (first_tabpage->tp_next != NULL)
9490 {
9491 start_arrow(&curwin->w_cursor);
9492 goto_tabpage(-1);
9493 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009494 return;
9495 }
9496#endif
9497
Bram Moolenaar071d4272004-06-13 20:20:40 +00009498 tpos = curwin->w_cursor;
9499 if (onepage(BACKWARD, 1L) == OK)
9500 {
9501 start_arrow(&tpos);
9502#ifdef FEAT_CINDENT
9503 can_cindent = TRUE;
9504#endif
9505 }
9506 else
9507 vim_beep();
9508}
9509
9510 static void
9511ins_down(startcol)
9512 int startcol; /* when TRUE move to Insstart.col */
9513{
9514 pos_T tpos;
9515 linenr_T old_topline = curwin->w_topline;
9516#ifdef FEAT_DIFF
9517 int old_topfill = curwin->w_topfill;
9518#endif
9519
9520 undisplay_dollar();
9521 tpos = curwin->w_cursor;
9522 if (cursor_down(1L, TRUE) == OK)
9523 {
9524 if (startcol)
9525 coladvance(getvcol_nolist(&Insstart));
9526 if (old_topline != curwin->w_topline
9527#ifdef FEAT_DIFF
9528 || old_topfill != curwin->w_topfill
9529#endif
9530 )
9531 redraw_later(VALID);
9532 start_arrow(&tpos);
9533#ifdef FEAT_CINDENT
9534 can_cindent = TRUE;
9535#endif
9536 }
9537 else
9538 vim_beep();
9539}
9540
9541 static void
9542ins_pagedown()
9543{
9544 pos_T tpos;
9545
9546 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009547
9548#ifdef FEAT_WINDOWS
9549 if (mod_mask & MOD_MASK_CTRL)
9550 {
9551 /* <C-PageDown>: tab page forward */
Bram Moolenaarbc444822006-10-17 11:37:50 +00009552 if (first_tabpage->tp_next != NULL)
9553 {
9554 start_arrow(&curwin->w_cursor);
9555 goto_tabpage(0);
9556 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009557 return;
9558 }
9559#endif
9560
Bram Moolenaar071d4272004-06-13 20:20:40 +00009561 tpos = curwin->w_cursor;
9562 if (onepage(FORWARD, 1L) == OK)
9563 {
9564 start_arrow(&tpos);
9565#ifdef FEAT_CINDENT
9566 can_cindent = TRUE;
9567#endif
9568 }
9569 else
9570 vim_beep();
9571}
9572
9573#ifdef FEAT_DND
9574 static void
9575ins_drop()
9576{
9577 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9578}
9579#endif
9580
9581/*
9582 * Handle TAB in Insert or Replace mode.
9583 * Return TRUE when the TAB needs to be inserted like a normal character.
9584 */
9585 static int
9586ins_tab()
9587{
9588 int ind;
9589 int i;
9590 int temp;
9591
9592 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
9593 Insstart_blank_vcol = get_nolist_virtcol();
9594 if (echeck_abbr(TAB + ABBR_OFF))
9595 return FALSE;
9596
9597 ind = inindent(0);
9598#ifdef FEAT_CINDENT
9599 if (ind)
9600 can_cindent = FALSE;
9601#endif
9602
9603 /*
9604 * When nothing special, insert TAB like a normal character
9605 */
9606 if (!curbuf->b_p_et
Bram Moolenaar14f24742012-08-08 18:01:05 +02009607 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value())
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02009608 && get_sts_value() == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009609 return TRUE;
9610
9611 if (stop_arrow() == FAIL)
9612 return TRUE;
9613
9614 did_ai = FALSE;
9615#ifdef FEAT_SMARTINDENT
9616 did_si = FALSE;
9617 can_si = FALSE;
9618 can_si_back = FALSE;
9619#endif
9620 AppendToRedobuff((char_u *)"\t");
9621
9622 if (p_sta && ind) /* insert tab in indent, use 'shiftwidth' */
Bram Moolenaar14f24742012-08-08 18:01:05 +02009623 temp = (int)get_sw_value();
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02009624 else if (curbuf->b_p_sts != 0) /* use 'softtabstop' when set */
9625 temp = (int)get_sts_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009626 else /* otherwise use 'tabstop' */
9627 temp = (int)curbuf->b_p_ts;
9628 temp -= get_nolist_virtcol() % temp;
9629
9630 /*
9631 * Insert the first space with ins_char(). It will delete one char in
9632 * replace mode. Insert the rest with ins_str(); it will not delete any
9633 * chars. For VREPLACE mode, we use ins_char() for all characters.
9634 */
9635 ins_char(' ');
9636 while (--temp > 0)
9637 {
9638#ifdef FEAT_VREPLACE
9639 if (State & VREPLACE_FLAG)
9640 ins_char(' ');
9641 else
9642#endif
9643 {
9644 ins_str((char_u *)" ");
9645 if (State & REPLACE_FLAG) /* no char replaced */
9646 replace_push(NUL);
9647 }
9648 }
9649
9650 /*
9651 * When 'expandtab' not set: Replace spaces by TABs where possible.
9652 */
Bram Moolenaar9f340fa2012-10-21 00:10:39 +02009653 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009654 {
9655 char_u *ptr;
9656#ifdef FEAT_VREPLACE
9657 char_u *saved_line = NULL; /* init for GCC */
9658 pos_T pos;
9659#endif
9660 pos_T fpos;
9661 pos_T *cursor;
9662 colnr_T want_vcol, vcol;
9663 int change_col = -1;
9664 int save_list = curwin->w_p_list;
9665
9666 /*
9667 * Get the current line. For VREPLACE mode, don't make real changes
9668 * yet, just work on a copy of the line.
9669 */
9670#ifdef FEAT_VREPLACE
9671 if (State & VREPLACE_FLAG)
9672 {
9673 pos = curwin->w_cursor;
9674 cursor = &pos;
9675 saved_line = vim_strsave(ml_get_curline());
9676 if (saved_line == NULL)
9677 return FALSE;
9678 ptr = saved_line + pos.col;
9679 }
9680 else
9681#endif
9682 {
9683 ptr = ml_get_cursor();
9684 cursor = &curwin->w_cursor;
9685 }
9686
9687 /* When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces. */
9688 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
9689 curwin->w_p_list = FALSE;
9690
9691 /* Find first white before the cursor */
9692 fpos = curwin->w_cursor;
9693 while (fpos.col > 0 && vim_iswhite(ptr[-1]))
9694 {
9695 --fpos.col;
9696 --ptr;
9697 }
9698
9699 /* In Replace mode, don't change characters before the insert point. */
9700 if ((State & REPLACE_FLAG)
9701 && fpos.lnum == Insstart.lnum
9702 && fpos.col < Insstart.col)
9703 {
9704 ptr += Insstart.col - fpos.col;
9705 fpos.col = Insstart.col;
9706 }
9707
9708 /* compute virtual column numbers of first white and cursor */
9709 getvcol(curwin, &fpos, &vcol, NULL, NULL);
9710 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
9711
9712 /* Use as many TABs as possible. Beware of 'showbreak' and
9713 * 'linebreak' adding extra virtual columns. */
9714 while (vim_iswhite(*ptr))
9715 {
9716 i = lbr_chartabsize((char_u *)"\t", vcol);
9717 if (vcol + i > want_vcol)
9718 break;
9719 if (*ptr != TAB)
9720 {
9721 *ptr = TAB;
9722 if (change_col < 0)
9723 {
9724 change_col = fpos.col; /* Column of first change */
9725 /* May have to adjust Insstart */
9726 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
9727 Insstart.col = fpos.col;
9728 }
9729 }
9730 ++fpos.col;
9731 ++ptr;
9732 vcol += i;
9733 }
9734
9735 if (change_col >= 0)
9736 {
9737 int repl_off = 0;
9738
9739 /* Skip over the spaces we need. */
9740 while (vcol < want_vcol && *ptr == ' ')
9741 {
9742 vcol += lbr_chartabsize(ptr, vcol);
9743 ++ptr;
9744 ++repl_off;
9745 }
9746 if (vcol > want_vcol)
9747 {
9748 /* Must have a char with 'showbreak' just before it. */
9749 --ptr;
9750 --repl_off;
9751 }
9752 fpos.col += repl_off;
9753
9754 /* Delete following spaces. */
9755 i = cursor->col - fpos.col;
9756 if (i > 0)
9757 {
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00009758 STRMOVE(ptr, ptr + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009759 /* correct replace stack. */
9760 if ((State & REPLACE_FLAG)
9761#ifdef FEAT_VREPLACE
9762 && !(State & VREPLACE_FLAG)
9763#endif
9764 )
9765 for (temp = i; --temp >= 0; )
9766 replace_join(repl_off);
9767 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00009768#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02009769 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00009770 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02009771 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00009772 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
9773 (char_u *)"\t", 1);
9774 }
9775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009776 cursor->col -= i;
9777
9778#ifdef FEAT_VREPLACE
9779 /*
9780 * In VREPLACE mode, we haven't changed anything yet. Do it now by
9781 * backspacing over the changed spacing and then inserting the new
9782 * spacing.
9783 */
9784 if (State & VREPLACE_FLAG)
9785 {
9786 /* Backspace from real cursor to change_col */
9787 backspace_until_column(change_col);
9788
9789 /* Insert each char in saved_line from changed_col to
9790 * ptr-cursor */
9791 ins_bytes_len(saved_line + change_col,
9792 cursor->col - change_col);
9793 }
9794#endif
9795 }
9796
9797#ifdef FEAT_VREPLACE
9798 if (State & VREPLACE_FLAG)
9799 vim_free(saved_line);
9800#endif
9801 curwin->w_p_list = save_list;
9802 }
9803
9804 return FALSE;
9805}
9806
9807/*
9808 * Handle CR or NL in insert mode.
9809 * Return TRUE when out of memory or can't undo.
9810 */
9811 static int
9812ins_eol(c)
9813 int c;
9814{
9815 int i;
9816
9817 if (echeck_abbr(c + ABBR_OFF))
9818 return FALSE;
9819 if (stop_arrow() == FAIL)
9820 return TRUE;
9821 undisplay_dollar();
9822
9823 /*
9824 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
9825 * character under the cursor. Only push a NUL on the replace stack,
9826 * nothing to put back when the NL is deleted.
9827 */
9828 if ((State & REPLACE_FLAG)
9829#ifdef FEAT_VREPLACE
9830 && !(State & VREPLACE_FLAG)
9831#endif
9832 )
9833 replace_push(NUL);
9834
9835 /*
9836 * In VREPLACE mode, a NL replaces the rest of the line, and starts
9837 * replacing the next line, so we push all of the characters left on the
9838 * line onto the replace stack. This is not done here though, it is done
9839 * in open_line().
9840 */
9841
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009842#ifdef FEAT_VIRTUALEDIT
9843 /* Put cursor on NUL if on the last char and coladd is 1 (happens after
9844 * CTRL-O). */
9845 if (virtual_active() && curwin->w_cursor.coladd > 0)
9846 coladvance(getviscol());
9847#endif
9848
Bram Moolenaar071d4272004-06-13 20:20:40 +00009849#ifdef FEAT_RIGHTLEFT
9850# ifdef FEAT_FKMAP
9851 if (p_altkeymap && p_fkmap)
9852 fkmap(NL);
9853# endif
9854 /* NL in reverse insert will always start in the end of
9855 * current line. */
9856 if (revins_on)
9857 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
9858#endif
9859
9860 AppendToRedobuff(NL_STR);
9861 i = open_line(FORWARD,
9862#ifdef FEAT_COMMENTS
9863 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM :
9864#endif
9865 0, old_indent);
9866 old_indent = 0;
9867#ifdef FEAT_CINDENT
9868 can_cindent = TRUE;
9869#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00009870#ifdef FEAT_FOLDING
9871 /* When inserting a line the cursor line must never be in a closed fold. */
9872 foldOpenCursor();
9873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009874
9875 return (!i);
9876}
9877
9878#ifdef FEAT_DIGRAPHS
9879/*
9880 * Handle digraph in insert mode.
9881 * Returns character still to be inserted, or NUL when nothing remaining to be
9882 * done.
9883 */
9884 static int
9885ins_digraph()
9886{
9887 int c;
9888 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009889 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009890
9891 pc_status = PC_STATUS_UNSET;
9892 if (redrawing() && !char_avail())
9893 {
9894 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00009895 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009896
9897 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009898 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009899#ifdef FEAT_CMDL_INFO
9900 add_to_showcmd_c(Ctrl_K);
9901#endif
9902 }
9903
9904#ifdef USE_ON_FLY_SCROLL
9905 dont_scroll = TRUE; /* disallow scrolling here */
9906#endif
9907
9908 /* don't map the digraph chars. This also prevents the
9909 * mode message to be deleted when ESC is hit */
9910 ++no_mapping;
9911 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00009912 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009913 --no_mapping;
9914 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009915 if (did_putchar)
9916 /* when the line fits in 'columns' the '?' is at the start of the next
9917 * line and will not be removed by the redraw */
9918 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02009919
Bram Moolenaar071d4272004-06-13 20:20:40 +00009920 if (IS_SPECIAL(c) || mod_mask) /* special key */
9921 {
9922#ifdef FEAT_CMDL_INFO
9923 clear_showcmd();
9924#endif
9925 insert_special(c, TRUE, FALSE);
9926 return NUL;
9927 }
9928 if (c != ESC)
9929 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009930 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009931 if (redrawing() && !char_avail())
9932 {
9933 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00009934 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009935
9936 if (char2cells(c) == 1)
9937 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00009938 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009939 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009940 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009941 }
9942#ifdef FEAT_CMDL_INFO
9943 add_to_showcmd_c(c);
9944#endif
9945 }
9946 ++no_mapping;
9947 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00009948 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009949 --no_mapping;
9950 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009951 if (did_putchar)
9952 /* when the line fits in 'columns' the '?' is at the start of the
9953 * next line and will not be removed by a redraw */
9954 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009955 if (cc != ESC)
9956 {
9957 AppendToRedobuff((char_u *)CTRL_V_STR);
9958 c = getdigraph(c, cc, TRUE);
9959#ifdef FEAT_CMDL_INFO
9960 clear_showcmd();
9961#endif
9962 return c;
9963 }
9964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009965#ifdef FEAT_CMDL_INFO
9966 clear_showcmd();
9967#endif
9968 return NUL;
9969}
9970#endif
9971
9972/*
9973 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
9974 * Returns the char to be inserted, or NUL if none found.
9975 */
Bram Moolenaar8320da42012-04-30 18:18:47 +02009976 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00009977ins_copychar(lnum)
9978 linenr_T lnum;
9979{
9980 int c;
9981 int temp;
9982 char_u *ptr, *prev_ptr;
9983
9984 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
9985 {
9986 vim_beep();
9987 return NUL;
9988 }
9989
9990 /* try to advance to the cursor column */
9991 temp = 0;
9992 ptr = ml_get(lnum);
9993 prev_ptr = ptr;
9994 validate_virtcol();
9995 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
9996 {
9997 prev_ptr = ptr;
9998 temp += lbr_chartabsize_adv(&ptr, (colnr_T)temp);
9999 }
10000 if ((colnr_T)temp > curwin->w_virtcol)
10001 ptr = prev_ptr;
10002
10003#ifdef FEAT_MBYTE
10004 c = (*mb_ptr2char)(ptr);
10005#else
10006 c = *ptr;
10007#endif
10008 if (c == NUL)
10009 vim_beep();
10010 return c;
10011}
10012
Bram Moolenaar4be06f92005-07-29 22:36:03 +000010013/*
10014 * CTRL-Y or CTRL-E typed in Insert mode.
10015 */
10016 static int
10017ins_ctrl_ey(tc)
10018 int tc;
10019{
10020 int c = tc;
10021
10022#ifdef FEAT_INS_EXPAND
10023 if (ctrl_x_mode == CTRL_X_SCROLL)
10024 {
10025 if (c == Ctrl_Y)
10026 scrolldown_clamp();
10027 else
10028 scrollup_clamp();
10029 redraw_later(VALID);
10030 }
10031 else
10032#endif
10033 {
10034 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
10035 if (c != NUL)
10036 {
10037 long tw_save;
10038
10039 /* The character must be taken literally, insert like it
10040 * was typed after a CTRL-V, and pretend 'textwidth'
10041 * wasn't set. Digits, 'o' and 'x' are special after a
10042 * CTRL-V, don't use it for these. */
10043 if (c < 256 && !isalnum(c))
10044 AppendToRedobuff((char_u *)CTRL_V_STR); /* CTRL-V */
10045 tw_save = curbuf->b_p_tw;
10046 curbuf->b_p_tw = -1;
10047 insert_special(c, TRUE, FALSE);
10048 curbuf->b_p_tw = tw_save;
10049#ifdef FEAT_RIGHTLEFT
10050 revins_chars++;
10051 revins_legal++;
10052#endif
10053 c = Ctrl_V; /* pretend CTRL-V is last character */
10054 auto_format(FALSE, TRUE);
10055 }
10056 }
10057 return c;
10058}
10059
Bram Moolenaar071d4272004-06-13 20:20:40 +000010060#ifdef FEAT_SMARTINDENT
10061/*
10062 * Try to do some very smart auto-indenting.
10063 * Used when inserting a "normal" character.
10064 */
10065 static void
10066ins_try_si(c)
10067 int c;
10068{
10069 pos_T *pos, old_pos;
10070 char_u *ptr;
10071 int i;
10072 int temp;
10073
10074 /*
10075 * do some very smart indenting when entering '{' or '}'
10076 */
10077 if (((did_si || can_si_back) && c == '{') || (can_si && c == '}'))
10078 {
10079 /*
10080 * for '}' set indent equal to indent of line containing matching '{'
10081 */
10082 if (c == '}' && (pos = findmatch(NULL, '{')) != NULL)
10083 {
10084 old_pos = curwin->w_cursor;
10085 /*
10086 * If the matching '{' has a ')' immediately before it (ignoring
10087 * white-space), then line up with the start of the line
10088 * containing the matching '(' if there is one. This handles the
10089 * case where an "if (..\n..) {" statement continues over multiple
10090 * lines -- webb
10091 */
10092 ptr = ml_get(pos->lnum);
10093 i = pos->col;
10094 if (i > 0) /* skip blanks before '{' */
10095 while (--i > 0 && vim_iswhite(ptr[i]))
10096 ;
10097 curwin->w_cursor.lnum = pos->lnum;
10098 curwin->w_cursor.col = i;
10099 if (ptr[i] == ')' && (pos = findmatch(NULL, '(')) != NULL)
10100 curwin->w_cursor = *pos;
10101 i = get_indent();
10102 curwin->w_cursor = old_pos;
10103#ifdef FEAT_VREPLACE
10104 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +000010105 change_indent(INDENT_SET, i, FALSE, NUL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010106 else
10107#endif
10108 (void)set_indent(i, SIN_CHANGED);
10109 }
10110 else if (curwin->w_cursor.col > 0)
10111 {
10112 /*
10113 * when inserting '{' after "O" reduce indent, but not
10114 * more than indent of previous line
10115 */
10116 temp = TRUE;
10117 if (c == '{' && can_si_back && curwin->w_cursor.lnum > 1)
10118 {
10119 old_pos = curwin->w_cursor;
10120 i = get_indent();
10121 while (curwin->w_cursor.lnum > 1)
10122 {
10123 ptr = skipwhite(ml_get(--(curwin->w_cursor.lnum)));
10124
10125 /* ignore empty lines and lines starting with '#'. */
10126 if (*ptr != '#' && *ptr != NUL)
10127 break;
10128 }
10129 if (get_indent() >= i)
10130 temp = FALSE;
10131 curwin->w_cursor = old_pos;
10132 }
10133 if (temp)
Bram Moolenaar21b17e72008-01-16 19:03:13 +000010134 shift_line(TRUE, FALSE, 1, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010135 }
10136 }
10137
10138 /*
10139 * set indent of '#' always to 0
10140 */
10141 if (curwin->w_cursor.col > 0 && can_si && c == '#')
10142 {
10143 /* remember current indent for next line */
10144 old_indent = get_indent();
10145 (void)set_indent(0, SIN_CHANGED);
10146 }
10147
10148 /* Adjust ai_col, the char at this position can be deleted. */
10149 if (ai_col > curwin->w_cursor.col)
10150 ai_col = curwin->w_cursor.col;
10151}
10152#endif
10153
10154/*
10155 * Get the value that w_virtcol would have when 'list' is off.
10156 * Unless 'cpo' contains the 'L' flag.
10157 */
10158 static colnr_T
10159get_nolist_virtcol()
10160{
10161 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
10162 return getvcol_nolist(&curwin->w_cursor);
10163 validate_virtcol();
10164 return curwin->w_virtcol;
10165}
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010166
10167#ifdef FEAT_AUTOCMD
10168/*
10169 * Handle the InsertCharPre autocommand.
10170 * "c" is the character that was typed.
10171 * Return a pointer to allocated memory with the replacement string.
10172 * Return NULL to continue inserting "c".
10173 */
10174 static char_u *
10175do_insert_char_pre(c)
10176 int c;
10177{
Bram Moolenaar704984a2012-06-01 14:57:51 +020010178 char_u *res;
Bram Moolenaar704984a2012-06-01 14:57:51 +020010179 char_u buf[MB_MAXBYTES + 1];
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010180
10181 /* Return quickly when there is nothing to do. */
10182 if (!has_insertcharpre())
10183 return NULL;
10184
Bram Moolenaar704984a2012-06-01 14:57:51 +020010185#ifdef FEAT_MBYTE
10186 if (has_mbyte)
10187 buf[(*mb_char2bytes)(c, buf)] = NUL;
10188 else
10189#endif
10190 {
10191 buf[0] = c;
10192 buf[1] = NUL;
10193 }
10194
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010195 /* Lock the text to avoid weird things from happening. */
10196 ++textlock;
Bram Moolenaar704984a2012-06-01 14:57:51 +020010197 set_vim_var_string(VV_CHAR, buf, -1); /* set v:char */
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010198
Bram Moolenaar704984a2012-06-01 14:57:51 +020010199 res = NULL;
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010200 if (apply_autocmds(EVENT_INSERTCHARPRE, NULL, NULL, FALSE, curbuf))
Bram Moolenaar704984a2012-06-01 14:57:51 +020010201 {
10202 /* Get the value of v:char. It may be empty or more than one
10203 * character. Only use it when changed, otherwise continue with the
10204 * original character to avoid breaking autoindent. */
10205 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
10206 res = vim_strsave(get_vim_var_str(VV_CHAR));
10207 }
Bram Moolenaarf5876f12012-02-29 18:22:08 +010010208
10209 set_vim_var_string(VV_CHAR, NULL, -1); /* clear v:char */
10210 --textlock;
10211
10212 return res;
10213}
10214#endif