blob: 6ac6142c6109d506dfac8b2b74735bb4746830e7 [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
256static int ins_copychar __ARGS((linenr_T lnum));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000257static int ins_ctrl_ey __ARGS((int tc));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258#ifdef FEAT_SMARTINDENT
259static void ins_try_si __ARGS((int c));
260#endif
261static colnr_T get_nolist_virtcol __ARGS((void));
262
263static colnr_T Insstart_textlen; /* length of line when insert started */
264static colnr_T Insstart_blank_vcol; /* vcol for first inserted blank */
265
266static char_u *last_insert = NULL; /* the text of the previous insert,
267 K_SPECIAL and CSI are escaped */
268static int last_insert_skip; /* nr of chars in front of previous insert */
269static int new_insert_skip; /* nr of chars in front of current insert */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000270static int did_restart_edit; /* "restart_edit" when calling edit() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271
272#ifdef FEAT_CINDENT
273static int can_cindent; /* may do cindenting on this line */
274#endif
275
276static int old_indent = 0; /* for ^^D command in insert mode */
277
278#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +0000279static int revins_on; /* reverse insert mode on */
280static int revins_chars; /* how much to skip after edit */
281static int revins_legal; /* was the last char 'legal'? */
282static int revins_scol; /* start column of revins session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283#endif
284
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285static int ins_need_undo; /* call u_save() before inserting a
286 char. Set when edit() is called.
287 after that arrow_used is used. */
288
289static int did_add_space = FALSE; /* auto_format() added an extra space
290 under the cursor */
291
292/*
293 * edit(): Start inserting text.
294 *
295 * "cmdchar" can be:
296 * 'i' normal insert command
297 * 'a' normal append command
298 * 'R' replace command
299 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo,
300 * but still only one <CR> is inserted. The <Esc> is not used for redo.
301 * 'g' "gI" command.
302 * 'V' "gR" command for Virtual Replace mode.
303 * 'v' "gr" command for single character Virtual Replace mode.
304 *
305 * This function is not called recursively. For CTRL-O commands, it returns
306 * and lets the caller handle the Normal-mode command.
307 *
308 * Return TRUE if a CTRL-O command caused the return (insert mode pending).
309 */
310 int
311edit(cmdchar, startln, count)
312 int cmdchar;
313 int startln; /* if set, insert at start of line */
314 long count;
315{
316 int c = 0;
317 char_u *ptr;
318 int lastc;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000319 int mincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 static linenr_T o_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321 int i;
322 int did_backspace = TRUE; /* previous char was backspace */
323#ifdef FEAT_CINDENT
324 int line_is_white = FALSE; /* line is empty before insert */
325#endif
326 linenr_T old_topline = 0; /* topline before insertion */
327#ifdef FEAT_DIFF
328 int old_topfill = -1;
329#endif
330 int inserted_space = FALSE; /* just inserted a space */
331 int replaceState = REPLACE;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000332 int nomove = FALSE; /* don't move cursor on return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000334 /* Remember whether editing was restarted after CTRL-O. */
335 did_restart_edit = restart_edit;
336
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 /* sleep before redrawing, needed for "CTRL-O :" that results in an
338 * error message */
339 check_for_delay(TRUE);
340
341#ifdef HAVE_SANDBOX
342 /* Don't allow inserting in the sandbox. */
343 if (sandbox != 0)
344 {
345 EMSG(_(e_sandbox));
346 return FALSE;
347 }
348#endif
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000349 /* Don't allow changes in the buffer while editing the cmdline. The
350 * caller of getcmdline() may get confused. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000351 if (textlock != 0)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000352 {
353 EMSG(_(e_secure));
354 return FALSE;
355 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356
357#ifdef FEAT_INS_EXPAND
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000358 /* Don't allow recursive insert mode when busy with completion. */
Bram Moolenaar031e0dd2009-07-09 16:15:16 +0000359 if (compl_started || compl_busy || pum_visible())
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000360 {
361 EMSG(_(e_secure));
362 return FALSE;
363 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 ins_compl_clear(); /* clear stuff for CTRL-X mode */
365#endif
366
Bram Moolenaar843ee412004-06-30 16:16:41 +0000367#ifdef FEAT_AUTOCMD
368 /*
369 * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx".
370 */
371 if (cmdchar != 'r' && cmdchar != 'v')
372 {
Bram Moolenaar1e015462005-09-25 22:16:38 +0000373# ifdef FEAT_EVAL
Bram Moolenaar843ee412004-06-30 16:16:41 +0000374 if (cmdchar == 'R')
375 ptr = (char_u *)"r";
376 else if (cmdchar == 'V')
377 ptr = (char_u *)"v";
378 else
379 ptr = (char_u *)"i";
380 set_vim_var_string(VV_INSERTMODE, ptr, 1);
Bram Moolenaar1e015462005-09-25 22:16:38 +0000381# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000382 apply_autocmds(EVENT_INSERTENTER, NULL, NULL, FALSE, curbuf);
383 }
384#endif
385
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200386#ifdef FEAT_CONCEAL
387 /* Check if the cursor line needs redrawing before changing State. If
388 * 'concealcursor' is "n" it needs to be redrawn without concealing. */
Bram Moolenaar8e469272010-07-28 19:38:16 +0200389 conceal_check_cursur_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +0200390#endif
391
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392#ifdef FEAT_MOUSE
393 /*
394 * When doing a paste with the middle mouse button, Insstart is set to
395 * where the paste started.
396 */
397 if (where_paste_started.lnum != 0)
398 Insstart = where_paste_started;
399 else
400#endif
401 {
402 Insstart = curwin->w_cursor;
403 if (startln)
404 Insstart.col = 0;
405 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000406 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 Insstart_blank_vcol = MAXCOL;
408 if (!did_ai)
409 ai_col = 0;
410
411 if (cmdchar != NUL && restart_edit == 0)
412 {
413 ResetRedobuff();
414 AppendNumberToRedobuff(count);
415#ifdef FEAT_VREPLACE
416 if (cmdchar == 'V' || cmdchar == 'v')
417 {
418 /* "gR" or "gr" command */
419 AppendCharToRedobuff('g');
420 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
421 }
422 else
423#endif
424 {
425 AppendCharToRedobuff(cmdchar);
426 if (cmdchar == 'g') /* "gI" command */
427 AppendCharToRedobuff('I');
428 else if (cmdchar == 'r') /* "r<CR>" command */
429 count = 1; /* insert only one <CR> */
430 }
431 }
432
433 if (cmdchar == 'R')
434 {
435#ifdef FEAT_FKMAP
436 if (p_fkmap && p_ri)
437 {
438 beep_flush();
439 EMSG(farsi_text_3); /* encoded in Farsi */
440 State = INSERT;
441 }
442 else
443#endif
444 State = REPLACE;
445 }
446#ifdef FEAT_VREPLACE
447 else if (cmdchar == 'V' || cmdchar == 'v')
448 {
449 State = VREPLACE;
450 replaceState = VREPLACE;
451 orig_line_count = curbuf->b_ml.ml_line_count;
452 vr_lines_changed = 1;
453 }
454#endif
455 else
456 State = INSERT;
457
458 stop_insert_mode = FALSE;
459
460 /*
461 * Need to recompute the cursor position, it might move when the cursor is
462 * on a TAB or special character.
463 */
464 curs_columns(TRUE);
465
466 /*
467 * Enable langmap or IME, indicated by 'iminsert'.
468 * Note that IME may enabled/disabled without us noticing here, thus the
469 * 'iminsert' value may not reflect what is actually used. It is updated
470 * when hitting <Esc>.
471 */
472 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
473 State |= LANGMAP;
474#ifdef USE_IM_CONTROL
475 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
476#endif
477
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478#ifdef FEAT_MOUSE
479 setmouse();
480#endif
481#ifdef FEAT_CMDL_INFO
482 clear_showcmd();
483#endif
484#ifdef FEAT_RIGHTLEFT
485 /* there is no reverse replace mode */
486 revins_on = (State == INSERT && p_ri);
487 if (revins_on)
488 undisplay_dollar();
489 revins_chars = 0;
490 revins_legal = 0;
491 revins_scol = -1;
492#endif
493
494 /*
495 * Handle restarting Insert mode.
496 * Don't do this for "CTRL-O ." (repeat an insert): we get here with
497 * restart_edit non-zero, and something in the stuff buffer.
498 */
499 if (restart_edit != 0 && stuff_empty())
500 {
501#ifdef FEAT_MOUSE
502 /*
503 * After a paste we consider text typed to be part of the insert for
504 * the pasted text. You can backspace over the pasted text too.
505 */
506 if (where_paste_started.lnum)
507 arrow_used = FALSE;
508 else
509#endif
510 arrow_used = TRUE;
511 restart_edit = 0;
512
513 /*
514 * If the cursor was after the end-of-line before the CTRL-O and it is
515 * now at the end-of-line, put it after the end-of-line (this is not
516 * correct in very rare cases).
517 * Also do this if curswant is greater than the current virtual
518 * column. Eg after "^O$" or "^O80|".
519 */
520 validate_virtcol();
521 update_curswant();
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000522 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 || curwin->w_curswant > curwin->w_virtcol)
524 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
525 {
526 if (ptr[1] == NUL)
527 ++curwin->w_cursor.col;
528#ifdef FEAT_MBYTE
529 else if (has_mbyte)
530 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000531 i = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 if (ptr[i] == NUL)
533 curwin->w_cursor.col += i;
534 }
535#endif
536 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000537 ins_at_eol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 }
539 else
540 arrow_used = FALSE;
541
542 /* we are in insert mode now, don't need to start it anymore */
543 need_start_insertmode = FALSE;
544
545 /* Need to save the line for undo before inserting the first char. */
546 ins_need_undo = TRUE;
547
548#ifdef FEAT_MOUSE
549 where_paste_started.lnum = 0;
550#endif
551#ifdef FEAT_CINDENT
552 can_cindent = TRUE;
553#endif
554#ifdef FEAT_FOLDING
555 /* The cursor line is not in a closed fold, unless 'insertmode' is set or
556 * restarting. */
557 if (!p_im && did_restart_edit == 0)
558 foldOpenCursor();
559#endif
560
561 /*
562 * If 'showmode' is set, show the current (insert/replace/..) mode.
563 * A warning message for changing a readonly file is given here, before
564 * actually changing anything. It's put after the mode, if any.
565 */
566 i = 0;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000567 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 i = showmode();
569
570 if (!p_im && did_restart_edit == 0)
Bram Moolenaar21af89e2008-01-02 21:09:33 +0000571 change_warning(i == 0 ? 0 : i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572
573#ifdef CURSOR_SHAPE
574 ui_cursor_shape(); /* may show different cursor shape */
575#endif
576#ifdef FEAT_DIGRAPHS
577 do_digraph(-1); /* clear digraphs */
578#endif
579
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000580 /*
581 * Get the current length of the redo buffer, those characters have to be
582 * skipped if we want to get to the inserted characters.
583 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 ptr = get_inserted();
585 if (ptr == NULL)
586 new_insert_skip = 0;
587 else
588 {
589 new_insert_skip = (int)STRLEN(ptr);
590 vim_free(ptr);
591 }
592
593 old_indent = 0;
594
595 /*
596 * Main loop in Insert mode: repeat until Insert mode is left.
597 */
598 for (;;)
599 {
600#ifdef FEAT_RIGHTLEFT
601 if (!revins_legal)
602 revins_scol = -1; /* reset on illegal motions */
603 else
604 revins_legal = 0;
605#endif
606 if (arrow_used) /* don't repeat insert when arrow key used */
607 count = 0;
608
609 if (stop_insert_mode)
610 {
611 /* ":stopinsert" used or 'insertmode' reset */
612 count = 0;
613 goto doESCkey;
614 }
615
616 /* set curwin->w_curswant for next K_DOWN or K_UP */
617 if (!arrow_used)
618 curwin->w_set_curswant = TRUE;
619
620 /* If there is no typeahead may check for timestamps (e.g., for when a
621 * menu invoked a shell command). */
622 if (stuff_empty())
623 {
624 did_check_timestamps = FALSE;
625 if (need_check_timestamps)
626 check_timestamps(FALSE);
627 }
628
629 /*
630 * When emsg() was called msg_scroll will have been set.
631 */
632 msg_scroll = FALSE;
633
634#ifdef FEAT_GUI
635 /* When 'mousefocus' is set a mouse movement may have taken us to
636 * another window. "need_mouse_correct" may then be set because of an
637 * autocommand. */
638 if (need_mouse_correct)
639 gui_mouse_correct();
640#endif
641
642#ifdef FEAT_FOLDING
643 /* Open fold at the cursor line, according to 'foldopen'. */
644 if (fdo_flags & FDO_INSERT)
645 foldOpenCursor();
646 /* Close folds where the cursor isn't, according to 'foldclose' */
647 if (!char_avail())
648 foldCheckClose();
649#endif
650
651 /*
652 * If we inserted a character at the last position of the last line in
653 * the window, scroll the window one line up. This avoids an extra
654 * redraw.
655 * This is detected when the cursor column is smaller after inserting
656 * something.
657 * Don't do this when the topline changed already, it has
658 * already been adjusted (by insertchar() calling open_line())).
659 */
660 if (curbuf->b_mod_set
661 && curwin->w_p_wrap
662 && !did_backspace
663 && curwin->w_topline == old_topline
664#ifdef FEAT_DIFF
665 && curwin->w_topfill == old_topfill
666#endif
667 )
668 {
669 mincol = curwin->w_wcol;
670 validate_cursor_col();
671
Bram Moolenaar0ab2a882009-05-13 10:51:08 +0000672 if ((int)curwin->w_wcol < mincol - curbuf->b_p_ts
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 && curwin->w_wrow == W_WINROW(curwin)
674 + curwin->w_height - 1 - p_so
675 && (curwin->w_cursor.lnum != curwin->w_topline
676#ifdef FEAT_DIFF
677 || curwin->w_topfill > 0
678#endif
679 ))
680 {
681#ifdef FEAT_DIFF
682 if (curwin->w_topfill > 0)
683 --curwin->w_topfill;
684 else
685#endif
686#ifdef FEAT_FOLDING
687 if (hasFolding(curwin->w_topline, NULL, &old_topline))
688 set_topline(curwin, old_topline + 1);
689 else
690#endif
691 set_topline(curwin, curwin->w_topline + 1);
692 }
693 }
694
695 /* May need to adjust w_topline to show the cursor. */
696 update_topline();
697
698 did_backspace = FALSE;
699
700 validate_cursor(); /* may set must_redraw */
701
702 /*
703 * Redraw the display when no characters are waiting.
704 * Also shows mode, ruler and positions cursor.
705 */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000706 ins_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707
708#ifdef FEAT_SCROLLBIND
709 if (curwin->w_p_scb)
710 do_check_scrollbind(TRUE);
711#endif
712
Bram Moolenaar860cae12010-06-05 23:22:07 +0200713#ifdef FEAT_CURSORBIND
714 if (curwin->w_p_crb)
715 do_check_cursorbind();
716#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 update_curswant();
718 old_topline = curwin->w_topline;
719#ifdef FEAT_DIFF
720 old_topfill = curwin->w_topfill;
721#endif
722
723#ifdef USE_ON_FLY_SCROLL
724 dont_scroll = FALSE; /* allow scrolling here */
725#endif
726
727 /*
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000728 * Get a character for Insert mode. Ignore K_IGNORE.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 */
730 lastc = c; /* remember previous char for CTRL-D */
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000731 do
732 {
733 c = safe_vgetc();
734 } while (c == K_IGNORE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735
Bram Moolenaard29a9ee2006-09-14 09:07:34 +0000736#ifdef FEAT_AUTOCMD
737 /* Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V. */
738 did_cursorhold = TRUE;
739#endif
740
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741#ifdef FEAT_RIGHTLEFT
742 if (p_hkmap && KeyTyped)
743 c = hkmap(c); /* Hebrew mode mapping */
744#endif
745#ifdef FEAT_FKMAP
746 if (p_fkmap && KeyTyped)
747 c = fkmap(c); /* Farsi mode mapping */
748#endif
749
750#ifdef FEAT_INS_EXPAND
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000751 /*
752 * Special handling of keys while the popup menu is visible or wanted
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000753 * and the cursor is still in the completed word. Only when there is
754 * a match, skip this when no matches were found.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000755 */
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +0000756 if (compl_started
757 && pum_wanted()
758 && curwin->w_cursor.col >= compl_col
759 && (compl_shown_match == NULL
760 || compl_shown_match != compl_shown_match->cp_next))
Bram Moolenaara6557602006-02-04 22:43:20 +0000761 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000762 /* BS: Delete one character from "compl_leader". */
763 if ((c == K_BS || c == Ctrl_H)
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000764 && curwin->w_cursor.col > compl_col
765 && (c = ins_compl_bs()) == NUL)
Bram Moolenaara6557602006-02-04 22:43:20 +0000766 continue;
767
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000768 /* When no match was selected or it was edited. */
769 if (!compl_used_match)
Bram Moolenaara6557602006-02-04 22:43:20 +0000770 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000771 /* CTRL-L: Add one character from the current match to
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000772 * "compl_leader". Except when at the original match and
773 * there is nothing to add, CTRL-L works like CTRL-P then. */
774 if (c == Ctrl_L
775 && (ctrl_x_mode != CTRL_X_WHOLE_LINE
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000776 || (int)STRLEN(compl_shown_match->cp_str)
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000777 > curwin->w_cursor.col - compl_col))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000778 {
779 ins_compl_addfrommatch();
780 continue;
781 }
782
Bram Moolenaar711d5b52007-10-19 18:40:51 +0000783 /* A non-white character that fits in with the current
784 * completion: Add to "compl_leader". */
785 if (ins_compl_accept_char(c))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000786 {
787 ins_compl_addleader(c);
788 continue;
789 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000790
Bram Moolenaar0440ca32006-05-13 13:24:33 +0000791 /* Pressing CTRL-Y selects the current match. When
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000792 * compl_enter_selects is set the Enter key does the same. */
793 if (c == Ctrl_Y || (compl_enter_selects
794 && (c == CAR || c == K_KENTER || c == NL)))
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000795 {
796 ins_compl_delete();
797 ins_compl_insert();
798 }
Bram Moolenaara6557602006-02-04 22:43:20 +0000799 }
800 }
801
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 /* Prepare for or stop CTRL-X mode. This doesn't do completion, but
803 * it does fix up the text when finishing completion. */
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000804 compl_get_longest = FALSE;
Bram Moolenaard4e20a72008-01-22 16:50:03 +0000805 if (ins_compl_prep(c))
Bram Moolenaara6557602006-02-04 22:43:20 +0000806 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807#endif
808
Bram Moolenaar488c6512005-08-11 20:09:58 +0000809 /* CTRL-\ CTRL-N goes to Normal mode,
810 * CTRL-\ CTRL-G goes to mode selected with 'insertmode',
811 * CTRL-\ CTRL-O is like CTRL-O but without moving the cursor. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 if (c == Ctrl_BSL)
813 {
814 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +0000815 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 ++no_mapping;
817 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000818 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 --no_mapping;
820 --allow_keys;
Bram Moolenaar488c6512005-08-11 20:09:58 +0000821 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000823 /* it's something else */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 vungetc(c);
825 c = Ctrl_BSL;
826 }
827 else if (c == Ctrl_G && p_im)
828 continue;
829 else
830 {
Bram Moolenaar488c6512005-08-11 20:09:58 +0000831 if (c == Ctrl_O)
832 {
833 ins_ctrl_o();
834 ins_at_eol = FALSE; /* cursor keeps its column */
835 nomove = TRUE;
836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 count = 0;
838 goto doESCkey;
839 }
840 }
841
842#ifdef FEAT_DIGRAPHS
843 c = do_digraph(c);
844#endif
845
846#ifdef FEAT_INS_EXPAND
847 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode == CTRL_X_CMDLINE)
848 goto docomplete;
849#endif
850 if (c == Ctrl_V || c == Ctrl_Q)
851 {
852 ins_ctrl_v();
853 c = Ctrl_V; /* pretend CTRL-V is last typed character */
854 continue;
855 }
856
857#ifdef FEAT_CINDENT
858 if (cindent_on()
859# ifdef FEAT_INS_EXPAND
860 && ctrl_x_mode == 0
861# endif
862 )
863 {
864 /* A key name preceded by a bang means this key is not to be
865 * inserted. Skip ahead to the re-indenting below.
866 * A key name preceded by a star means that indenting has to be
867 * done before inserting the key. */
868 line_is_white = inindent(0);
869 if (in_cinkeys(c, '!', line_is_white))
870 goto force_cindent;
871 if (can_cindent && in_cinkeys(c, '*', line_is_white)
872 && stop_arrow() == OK)
873 do_c_expr_indent();
874 }
875#endif
876
877#ifdef FEAT_RIGHTLEFT
878 if (curwin->w_p_rl)
879 switch (c)
880 {
881 case K_LEFT: c = K_RIGHT; break;
882 case K_S_LEFT: c = K_S_RIGHT; break;
883 case K_C_LEFT: c = K_C_RIGHT; break;
884 case K_RIGHT: c = K_LEFT; break;
885 case K_S_RIGHT: c = K_S_LEFT; break;
886 case K_C_RIGHT: c = K_C_LEFT; break;
887 }
888#endif
889
890#ifdef FEAT_VISUAL
891 /*
892 * If 'keymodel' contains "startsel", may start selection. If it
893 * does, a CTRL-O and c will be stuffed, we need to get these
894 * characters.
895 */
896 if (ins_start_select(c))
897 continue;
898#endif
899
900 /*
901 * The big switch to handle a character in insert mode.
902 */
903 switch (c)
904 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000905 case ESC: /* End input mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 if (echeck_abbr(ESC + ABBR_OFF))
907 break;
908 /*FALLTHROUGH*/
909
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000910 case Ctrl_C: /* End input mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911#ifdef FEAT_CMDWIN
912 if (c == Ctrl_C && cmdwin_type != 0)
913 {
914 /* Close the cmdline window. */
915 cmdwin_result = K_IGNORE;
916 got_int = FALSE; /* don't stop executing autocommands et al. */
Bram Moolenaar5495cc92006-08-16 14:23:04 +0000917 nomove = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 goto doESCkey;
919 }
920#endif
921
922#ifdef UNIX
923do_intr:
924#endif
925 /* when 'insertmode' set, and not halfway a mapping, don't leave
926 * Insert mode */
927 if (goto_im())
928 {
929 if (got_int)
930 {
931 (void)vgetc(); /* flush all buffers */
932 got_int = FALSE;
933 }
934 else
935 vim_beep();
936 break;
937 }
938doESCkey:
939 /*
940 * This is the ONLY return from edit()!
941 */
942 /* Always update o_lnum, so that a "CTRL-O ." that adds a line
943 * still puts the cursor back after the inserted text. */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000944 if (ins_at_eol && gchar_cursor() == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 o_lnum = curwin->w_cursor.lnum;
946
Bram Moolenaar488c6512005-08-11 20:09:58 +0000947 if (ins_esc(&count, cmdchar, nomove))
Bram Moolenaar843ee412004-06-30 16:16:41 +0000948 {
949#ifdef FEAT_AUTOCMD
950 if (cmdchar != 'r' && cmdchar != 'v')
951 apply_autocmds(EVENT_INSERTLEAVE, NULL, NULL,
952 FALSE, curbuf);
Bram Moolenaarc0a0ab52006-10-06 18:39:58 +0000953 did_cursorhold = FALSE;
Bram Moolenaar843ee412004-06-30 16:16:41 +0000954#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 return (c == Ctrl_O);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 continue;
958
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000959 case Ctrl_Z: /* suspend when 'insertmode' set */
960 if (!p_im)
961 goto normalchar; /* insert CTRL-Z as normal char */
962 stuffReadbuff((char_u *)":st\r");
963 c = Ctrl_O;
964 /*FALLTHROUGH*/
965
966 case Ctrl_O: /* execute one command */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000967#ifdef FEAT_COMPL_FUNC
Bram Moolenaarf75a9632005-09-13 21:20:47 +0000968 if (ctrl_x_mode == CTRL_X_OMNI)
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000969 goto docomplete;
970#endif
971 if (echeck_abbr(Ctrl_O + ABBR_OFF))
972 break;
973 ins_ctrl_o();
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000974
975#ifdef FEAT_VIRTUALEDIT
976 /* don't move the cursor left when 'virtualedit' has "onemore". */
977 if (ve_flags & VE_ONEMORE)
978 {
979 ins_at_eol = FALSE;
980 nomove = TRUE;
981 }
982#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000983 count = 0;
984 goto doESCkey;
985
Bram Moolenaar572cb562005-08-05 21:35:02 +0000986 case K_INS: /* toggle insert/replace mode */
987 case K_KINS:
988 ins_insert(replaceState);
989 break;
990
991 case K_SELECT: /* end of Select mode mapping - ignore */
992 break;
993
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000994#ifdef FEAT_SNIFF
995 case K_SNIFF: /* Sniff command received */
996 stuffcharReadbuff(K_SNIFF);
997 goto doESCkey;
998#endif
999
1000 case K_HELP: /* Help key works like <ESC> <Help> */
1001 case K_F1:
1002 case K_XF1:
1003 stuffcharReadbuff(K_HELP);
1004 if (p_im)
1005 need_start_insertmode = TRUE;
1006 goto doESCkey;
1007
1008#ifdef FEAT_NETBEANS_INTG
1009 case K_F21: /* NetBeans command */
1010 ++no_mapping; /* don't map the next key hits */
Bram Moolenaar61abfd12007-09-13 16:26:47 +00001011 i = plain_vgetc();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001012 --no_mapping;
1013 netbeans_keycommand(i);
1014 break;
1015#endif
1016
1017 case K_ZERO: /* Insert the previously inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 case NUL:
1019 case Ctrl_A:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001020 /* For ^@ the trailing ESC will end the insert, unless there is an
1021 * error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
1023 && c != Ctrl_A && !p_im)
1024 goto doESCkey; /* quit insert mode */
1025 inserted_space = FALSE;
1026 break;
1027
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001028 case Ctrl_R: /* insert the contents of a register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 ins_reg();
1030 auto_format(FALSE, TRUE);
1031 inserted_space = FALSE;
1032 break;
1033
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001034 case Ctrl_G: /* commands starting with CTRL-G */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 ins_ctrl_g();
1036 break;
1037
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001038 case Ctrl_HAT: /* switch input mode and/or langmap */
1039 ins_ctrl_hat();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 break;
1041
1042#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001043 case Ctrl__: /* switch between languages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 if (!p_ari)
1045 goto normalchar;
1046 ins_ctrl_();
1047 break;
1048#endif
1049
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001050 case Ctrl_D: /* Make indent one shiftwidth smaller. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051#if defined(FEAT_INS_EXPAND) && defined(FEAT_FIND_ID)
1052 if (ctrl_x_mode == CTRL_X_PATH_DEFINES)
1053 goto docomplete;
1054#endif
1055 /* FALLTHROUGH */
1056
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001057 case Ctrl_T: /* Make indent one shiftwidth greater. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058# ifdef FEAT_INS_EXPAND
1059 if (c == Ctrl_T && ctrl_x_mode == CTRL_X_THESAURUS)
1060 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001061 if (has_compl_option(FALSE))
1062 goto docomplete;
1063 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 }
1065# endif
1066 ins_shift(c, lastc);
1067 auto_format(FALSE, TRUE);
1068 inserted_space = FALSE;
1069 break;
1070
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001071 case K_DEL: /* delete character under the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 case K_KDEL:
1073 ins_del();
1074 auto_format(FALSE, TRUE);
1075 break;
1076
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001077 case K_BS: /* delete character before the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 case Ctrl_H:
1079 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
1080 auto_format(FALSE, TRUE);
1081 break;
1082
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001083 case Ctrl_W: /* delete word before the cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
1085 auto_format(FALSE, TRUE);
1086 break;
1087
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001088 case Ctrl_U: /* delete all inserted text in current line */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001089# ifdef FEAT_COMPL_FUNC
1090 /* CTRL-X CTRL-U completes with 'completefunc'. */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001091 if (ctrl_x_mode == CTRL_X_FUNCTION)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001092 goto docomplete;
1093# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
1095 auto_format(FALSE, TRUE);
1096 inserted_space = FALSE;
1097 break;
1098
1099#ifdef FEAT_MOUSE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001100 case K_LEFTMOUSE: /* mouse keys */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 case K_LEFTMOUSE_NM:
1102 case K_LEFTDRAG:
1103 case K_LEFTRELEASE:
1104 case K_LEFTRELEASE_NM:
1105 case K_MIDDLEMOUSE:
1106 case K_MIDDLEDRAG:
1107 case K_MIDDLERELEASE:
1108 case K_RIGHTMOUSE:
1109 case K_RIGHTDRAG:
1110 case K_RIGHTRELEASE:
1111 case K_X1MOUSE:
1112 case K_X1DRAG:
1113 case K_X1RELEASE:
1114 case K_X2MOUSE:
1115 case K_X2DRAG:
1116 case K_X2RELEASE:
1117 ins_mouse(c);
1118 break;
1119
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001120 case K_MOUSEDOWN: /* Default action for scroll wheel up: scroll up */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001121 ins_mousescroll(MSCR_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 break;
1123
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001124 case K_MOUSEUP: /* Default action for scroll wheel down: scroll down */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001125 ins_mousescroll(MSCR_UP);
1126 break;
1127
1128 case K_MOUSELEFT: /* Scroll wheel left */
1129 ins_mousescroll(MSCR_LEFT);
1130 break;
1131
1132 case K_MOUSERIGHT: /* Scroll wheel right */
1133 ins_mousescroll(MSCR_RIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 break;
1135#endif
Bram Moolenaara23ccb82006-02-27 00:08:02 +00001136#ifdef FEAT_GUI_TABLINE
1137 case K_TABLINE:
1138 case K_TABMENU:
1139 ins_tabline(c);
1140 break;
1141#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001143 case K_IGNORE: /* Something mapped to nothing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 break;
1145
Bram Moolenaar754b5602006-02-09 23:53:20 +00001146#ifdef FEAT_AUTOCMD
1147 case K_CURSORHOLD: /* Didn't type something for a while. */
1148 apply_autocmds(EVENT_CURSORHOLDI, NULL, NULL, FALSE, curbuf);
1149 did_cursorhold = TRUE;
1150 break;
1151#endif
1152
Bram Moolenaar4770d092006-01-12 23:22:24 +00001153#ifdef FEAT_GUI_W32
1154 /* On Win32 ignore <M-F4>, we get it when closing the window was
1155 * cancelled. */
1156 case K_F4:
1157 if (mod_mask != MOD_MASK_ALT)
1158 goto normalchar;
1159 break;
1160#endif
1161
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162#ifdef FEAT_GUI
1163 case K_VER_SCROLLBAR:
1164 ins_scroll();
1165 break;
1166
1167 case K_HOR_SCROLLBAR:
1168 ins_horscroll();
1169 break;
1170#endif
1171
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001172 case K_HOME: /* <Home> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 case K_S_HOME:
1175 case K_C_HOME:
1176 ins_home(c);
1177 break;
1178
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001179 case K_END: /* <End> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 case K_S_END:
1182 case K_C_END:
1183 ins_end(c);
1184 break;
1185
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001186 case K_LEFT: /* <Left> */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001187 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1188 ins_s_left();
1189 else
1190 ins_left();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 break;
1192
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001193 case K_S_LEFT: /* <S-Left> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 case K_C_LEFT:
1195 ins_s_left();
1196 break;
1197
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001198 case K_RIGHT: /* <Right> */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001199 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
1200 ins_s_right();
1201 else
1202 ins_right();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 break;
1204
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001205 case K_S_RIGHT: /* <S-Right> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 case K_C_RIGHT:
1207 ins_s_right();
1208 break;
1209
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001210 case K_UP: /* <Up> */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001211#ifdef FEAT_INS_EXPAND
1212 if (pum_visible())
1213 goto docomplete;
1214#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001215 if (mod_mask & MOD_MASK_SHIFT)
1216 ins_pageup();
1217 else
1218 ins_up(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 break;
1220
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001221 case K_S_UP: /* <S-Up> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 case K_PAGEUP:
1223 case K_KPAGEUP:
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001224#ifdef FEAT_INS_EXPAND
Bram Moolenaare3226be2005-12-18 22:10:00 +00001225 if (pum_visible())
1226 goto docomplete;
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 ins_pageup();
1229 break;
1230
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001231 case K_DOWN: /* <Down> */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00001232#ifdef FEAT_INS_EXPAND
1233 if (pum_visible())
1234 goto docomplete;
1235#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001236 if (mod_mask & MOD_MASK_SHIFT)
1237 ins_pagedown();
1238 else
1239 ins_down(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 break;
1241
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001242 case K_S_DOWN: /* <S-Down> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 case K_PAGEDOWN:
1244 case K_KPAGEDOWN:
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001245#ifdef FEAT_INS_EXPAND
Bram Moolenaare3226be2005-12-18 22:10:00 +00001246 if (pum_visible())
1247 goto docomplete;
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 ins_pagedown();
1250 break;
1251
1252#ifdef FEAT_DND
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001253 case K_DROP: /* drag-n-drop event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 ins_drop();
1255 break;
1256#endif
1257
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001258 case K_S_TAB: /* When not mapped, use like a normal TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 c = TAB;
1260 /* FALLTHROUGH */
1261
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001262 case TAB: /* TAB or Complete patterns along path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263#if defined(FEAT_INS_EXPAND) && defined(FEAT_FIND_ID)
1264 if (ctrl_x_mode == CTRL_X_PATH_PATTERNS)
1265 goto docomplete;
1266#endif
1267 inserted_space = FALSE;
1268 if (ins_tab())
1269 goto normalchar; /* insert TAB as a normal char */
1270 auto_format(FALSE, TRUE);
1271 break;
1272
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001273 case K_KENTER: /* <Enter> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 c = CAR;
1275 /* FALLTHROUGH */
1276 case CAR:
1277 case NL:
1278#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
1279 /* In a quickfix window a <CR> jumps to the error under the
1280 * cursor. */
1281 if (bt_quickfix(curbuf) && c == CAR)
1282 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001283 if (curwin->w_llist_ref == NULL) /* quickfix window */
1284 do_cmdline_cmd((char_u *)".cc");
1285 else /* location list window */
1286 do_cmdline_cmd((char_u *)".ll");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 break;
1288 }
1289#endif
1290#ifdef FEAT_CMDWIN
1291 if (cmdwin_type != 0)
1292 {
1293 /* Execute the command in the cmdline window. */
1294 cmdwin_result = CAR;
1295 goto doESCkey;
1296 }
1297#endif
1298 if (ins_eol(c) && !p_im)
1299 goto doESCkey; /* out of memory */
1300 auto_format(FALSE, FALSE);
1301 inserted_space = FALSE;
1302 break;
1303
Bram Moolenaar860cae12010-06-05 23:22:07 +02001304#if defined(FEAT_DIGRAPHS) || defined(FEAT_INS_EXPAND)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001305 case Ctrl_K: /* digraph or keyword completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306# ifdef FEAT_INS_EXPAND
1307 if (ctrl_x_mode == CTRL_X_DICTIONARY)
1308 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001309 if (has_compl_option(TRUE))
1310 goto docomplete;
1311 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 }
1313# endif
1314# ifdef FEAT_DIGRAPHS
1315 c = ins_digraph();
1316 if (c == NUL)
1317 break;
1318# endif
1319 goto normalchar;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001320#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321
1322#ifdef FEAT_INS_EXPAND
Bram Moolenaar572cb562005-08-05 21:35:02 +00001323 case Ctrl_X: /* Enter CTRL-X mode */
1324 ins_ctrl_x();
1325 break;
1326
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001327 case Ctrl_RSB: /* Tag name completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 if (ctrl_x_mode != CTRL_X_TAGS)
1329 goto normalchar;
1330 goto docomplete;
1331
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001332 case Ctrl_F: /* File name completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 if (ctrl_x_mode != CTRL_X_FILES)
1334 goto normalchar;
1335 goto docomplete;
Bram Moolenaar488c6512005-08-11 20:09:58 +00001336
1337 case 's': /* Spelling completion after ^X */
1338 case Ctrl_S:
1339 if (ctrl_x_mode != CTRL_X_SPELL)
1340 goto normalchar;
1341 goto docomplete;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342#endif
1343
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001344 case Ctrl_L: /* Whole line completion after ^X */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345#ifdef FEAT_INS_EXPAND
1346 if (ctrl_x_mode != CTRL_X_WHOLE_LINE)
1347#endif
1348 {
1349 /* CTRL-L with 'insertmode' set: Leave Insert mode */
1350 if (p_im)
1351 {
1352 if (echeck_abbr(Ctrl_L + ABBR_OFF))
1353 break;
1354 goto doESCkey;
1355 }
1356 goto normalchar;
1357 }
1358#ifdef FEAT_INS_EXPAND
1359 /* FALLTHROUGH */
1360
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001361 case Ctrl_P: /* Do previous/next pattern completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 case Ctrl_N:
1363 /* if 'complete' is empty then plain ^P is no longer special,
1364 * but it is under other ^X modes */
1365 if (*curbuf->b_p_cpt == NUL
1366 && ctrl_x_mode != 0
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001367 && !(compl_cont_status & CONT_LOCAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 goto normalchar;
1369
1370docomplete:
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001371 compl_busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 if (ins_complete(c) == FAIL)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001373 compl_cont_status = 0;
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00001374 compl_busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 break;
1376#endif /* FEAT_INS_EXPAND */
1377
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001378 case Ctrl_Y: /* copy from previous line or scroll down */
1379 case Ctrl_E: /* copy from next line or scroll up */
1380 c = ins_ctrl_ey(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 break;
1382
1383 default:
1384#ifdef UNIX
1385 if (c == intr_char) /* special interrupt char */
1386 goto do_intr;
1387#endif
1388
Bram Moolenaare659c952011-05-19 17:25:41 +02001389normalchar:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 /*
1391 * Insert a nomal character.
1392 */
Bram Moolenaare659c952011-05-19 17:25:41 +02001393#ifdef FEAT_AUTOCMD
1394 if (!p_paste)
1395 {
1396 /* Trigger the InsertCharPre event. Lock the text to avoid
1397 * weird things from happening. */
1398 set_vim_var_char(c);
1399 ++textlock;
1400 if (apply_autocmds(EVENT_INSERTCHARPRE, NULL, NULL,
1401 FALSE, curbuf))
1402 {
1403 /* Get the new value of v:char. If it is more than one
1404 * character insert it literally. */
1405 char_u *s = get_vim_var_str(VV_CHAR);
1406 if (MB_CHARLEN(s) > 1)
1407 {
1408 if (stop_arrow() != FAIL)
1409 {
1410 ins_str(s);
1411 AppendToRedobuffLit(s, -1);
1412 }
1413 c = NUL;
1414 }
1415 else
1416 c = PTR2CHAR(s);
1417 }
1418
1419 set_vim_var_string(VV_CHAR, NULL, -1);
1420 --textlock;
1421
1422 /* If the new value is an empty string then don't insert a
1423 * char. */
1424 if (c == NUL)
1425 break;
1426 }
1427#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428#ifdef FEAT_SMARTINDENT
1429 /* Try to perform smart-indenting. */
1430 ins_try_si(c);
1431#endif
1432
1433 if (c == ' ')
1434 {
1435 inserted_space = TRUE;
1436#ifdef FEAT_CINDENT
1437 if (inindent(0))
1438 can_cindent = FALSE;
1439#endif
1440 if (Insstart_blank_vcol == MAXCOL
1441 && curwin->w_cursor.lnum == Insstart.lnum)
1442 Insstart_blank_vcol = get_nolist_virtcol();
1443 }
1444
1445 if (vim_iswordc(c) || !echeck_abbr(
1446#ifdef FEAT_MBYTE
1447 /* Add ABBR_OFF for characters above 0x100, this is
1448 * what check_abbr() expects. */
1449 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
1450#endif
1451 c))
1452 {
1453 insert_special(c, FALSE, FALSE);
1454#ifdef FEAT_RIGHTLEFT
1455 revins_legal++;
1456 revins_chars++;
1457#endif
1458 }
1459
1460 auto_format(FALSE, TRUE);
1461
1462#ifdef FEAT_FOLDING
1463 /* When inserting a character the cursor line must never be in a
1464 * closed fold. */
1465 foldOpenCursor();
1466#endif
1467 break;
1468 } /* end of switch (c) */
1469
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00001470#ifdef FEAT_AUTOCMD
1471 /* If typed something may trigger CursorHoldI again. */
1472 if (c != K_CURSORHOLD)
1473 did_cursorhold = FALSE;
1474#endif
1475
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 /* If the cursor was moved we didn't just insert a space */
1477 if (arrow_used)
1478 inserted_space = FALSE;
1479
1480#ifdef FEAT_CINDENT
1481 if (can_cindent && cindent_on()
1482# ifdef FEAT_INS_EXPAND
1483 && ctrl_x_mode == 0
1484# endif
1485 )
1486 {
1487force_cindent:
1488 /*
1489 * Indent now if a key was typed that is in 'cinkeys'.
1490 */
1491 if (in_cinkeys(c, ' ', line_is_white))
1492 {
1493 if (stop_arrow() == OK)
1494 /* re-indent the current line */
1495 do_c_expr_indent();
1496 }
1497 }
1498#endif /* FEAT_CINDENT */
1499
1500 } /* for (;;) */
1501 /* NOTREACHED */
1502}
1503
1504/*
1505 * Redraw for Insert mode.
1506 * This is postponed until getting the next character to make '$' in the 'cpo'
1507 * option work correctly.
1508 * Only redraw when there are no characters available. This speeds up
1509 * inserting sequences of characters (e.g., for CTRL-R).
1510 */
1511 static void
Bram Moolenaar754b5602006-02-09 23:53:20 +00001512ins_redraw(ready)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00001513 int ready UNUSED; /* not busy with something */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001515#ifdef FEAT_CONCEAL
1516 linenr_T conceal_old_cursor_line = 0;
1517 linenr_T conceal_new_cursor_line = 0;
1518 int conceal_update_lines = FALSE;
1519#endif
1520
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 if (!char_avail())
1522 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001523#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001524 /* Trigger CursorMoved if the cursor moved. Not when the popup menu is
1525 * visible, the command might delete it. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001526 if (ready && (
1527# ifdef FEAT_AUTOCMD
1528 has_cursormovedI()
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001529# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001530# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
1531 ||
1532# endif
1533# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001534 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001535# endif
1536 )
1537 && !equalpos(last_cursormoved, curwin->w_cursor)
1538# ifdef FEAT_INS_EXPAND
1539 && !pum_visible()
1540# endif
1541 )
Bram Moolenaar754b5602006-02-09 23:53:20 +00001542 {
Bram Moolenaare77c7602008-01-12 17:13:50 +00001543# ifdef FEAT_SYN_HL
1544 /* Need to update the screen first, to make sure syntax
1545 * highlighting is correct after making a change (e.g., inserting
1546 * a "(". The autocommand may also require a redraw, so it's done
1547 * again below, unfortunately. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02001548 if (syntax_present(curwin) && must_redraw)
Bram Moolenaare77c7602008-01-12 17:13:50 +00001549 update_screen(0);
1550# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001551# ifdef FEAT_AUTOCMD
1552 if (has_cursormovedI())
1553 apply_autocmds(EVENT_CURSORMOVEDI, NULL, NULL, FALSE, curbuf);
1554# endif
1555# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001556 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001557 {
1558 conceal_old_cursor_line = last_cursormoved.lnum;
1559 conceal_new_cursor_line = curwin->w_cursor.lnum;
1560 conceal_update_lines = TRUE;
1561 }
1562# endif
Bram Moolenaar754b5602006-02-09 23:53:20 +00001563 last_cursormoved = curwin->w_cursor;
1564 }
1565#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 if (must_redraw)
1567 update_screen(0);
1568 else if (clear_cmdline || redraw_cmdline)
1569 showmode(); /* clear cmdline and show mode */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001570# if defined(FEAT_CONCEAL)
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001571 if ((conceal_update_lines
1572 && (conceal_old_cursor_line != conceal_new_cursor_line
1573 || conceal_cursor_line(curwin)))
1574 || need_cursor_line_redraw)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001575 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001576 if (conceal_old_cursor_line != conceal_new_cursor_line)
1577 update_single_line(curwin, conceal_old_cursor_line);
1578 update_single_line(curwin, conceal_new_cursor_line == 0
1579 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001580 curwin->w_valid &= ~VALID_CROW;
1581 }
1582# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 showruler(FALSE);
1584 setcursor();
1585 emsg_on_display = FALSE; /* may remove error message now */
1586 }
1587}
1588
1589/*
1590 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
1591 */
1592 static void
1593ins_ctrl_v()
1594{
1595 int c;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001596 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597
1598 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00001599 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600
1601 if (redrawing() && !char_avail())
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001602 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 edit_putchar('^', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001604 did_putchar = TRUE;
1605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 AppendToRedobuff((char_u *)CTRL_V_STR); /* CTRL-V */
1607
1608#ifdef FEAT_CMDL_INFO
1609 add_to_showcmd_c(Ctrl_V);
1610#endif
1611
1612 c = get_literal();
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02001613 if (did_putchar)
1614 /* when the line fits in 'columns' the '^' is at the start of the next
1615 * line and will not removed by the redraw */
1616 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617#ifdef FEAT_CMDL_INFO
1618 clear_showcmd();
1619#endif
1620 insert_special(c, FALSE, TRUE);
1621#ifdef FEAT_RIGHTLEFT
1622 revins_chars++;
1623 revins_legal++;
1624#endif
1625}
1626
1627/*
1628 * Put a character directly onto the screen. It's not stored in a buffer.
1629 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
1630 */
1631static int pc_status;
1632#define PC_STATUS_UNSET 0 /* pc_bytes was not set */
1633#define PC_STATUS_RIGHT 1 /* right halve of double-wide char */
1634#define PC_STATUS_LEFT 2 /* left halve of double-wide char */
1635#define PC_STATUS_SET 3 /* pc_bytes was filled */
1636#ifdef FEAT_MBYTE
1637static char_u pc_bytes[MB_MAXBYTES + 1]; /* saved bytes */
1638#else
1639static char_u pc_bytes[2]; /* saved bytes */
1640#endif
1641static int pc_attr;
1642static int pc_row;
1643static int pc_col;
1644
1645 void
1646edit_putchar(c, highlight)
1647 int c;
1648 int highlight;
1649{
1650 int attr;
1651
1652 if (ScreenLines != NULL)
1653 {
1654 update_topline(); /* just in case w_topline isn't valid */
1655 validate_cursor();
1656 if (highlight)
1657 attr = hl_attr(HLF_8);
1658 else
1659 attr = 0;
1660 pc_row = W_WINROW(curwin) + curwin->w_wrow;
1661 pc_col = W_WINCOL(curwin);
1662#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
1663 pc_status = PC_STATUS_UNSET;
1664#endif
1665#ifdef FEAT_RIGHTLEFT
1666 if (curwin->w_p_rl)
1667 {
1668 pc_col += W_WIDTH(curwin) - 1 - curwin->w_wcol;
1669# ifdef FEAT_MBYTE
1670 if (has_mbyte)
1671 {
1672 int fix_col = mb_fix_col(pc_col, pc_row);
1673
1674 if (fix_col != pc_col)
1675 {
1676 screen_putchar(' ', pc_row, fix_col, attr);
1677 --curwin->w_wcol;
1678 pc_status = PC_STATUS_RIGHT;
1679 }
1680 }
1681# endif
1682 }
1683 else
1684#endif
1685 {
1686 pc_col += curwin->w_wcol;
1687#ifdef FEAT_MBYTE
1688 if (mb_lefthalve(pc_row, pc_col))
1689 pc_status = PC_STATUS_LEFT;
1690#endif
1691 }
1692
1693 /* save the character to be able to put it back */
1694#if defined(FEAT_RIGHTLEFT) || defined(FEAT_MBYTE)
1695 if (pc_status == PC_STATUS_UNSET)
1696#endif
1697 {
1698 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
1699 pc_status = PC_STATUS_SET;
1700 }
1701 screen_putchar(c, pc_row, pc_col, attr);
1702 }
1703}
1704
1705/*
1706 * Undo the previous edit_putchar().
1707 */
1708 void
1709edit_unputchar()
1710{
1711 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
1712 {
1713#if defined(FEAT_MBYTE)
1714 if (pc_status == PC_STATUS_RIGHT)
1715 ++curwin->w_wcol;
1716 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
1717 redrawWinline(curwin->w_cursor.lnum, FALSE);
1718 else
1719#endif
1720 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
1721 }
1722}
1723
1724/*
1725 * Called when p_dollar is set: display a '$' at the end of the changed text
1726 * Only works when cursor is in the line that changes.
1727 */
1728 void
1729display_dollar(col)
1730 colnr_T col;
1731{
1732 colnr_T save_col;
1733
1734 if (!redrawing())
1735 return;
1736
1737 cursor_off();
1738 save_col = curwin->w_cursor.col;
1739 curwin->w_cursor.col = col;
1740#ifdef FEAT_MBYTE
1741 if (has_mbyte)
1742 {
1743 char_u *p;
1744
1745 /* If on the last byte of a multi-byte move to the first byte. */
1746 p = ml_get_curline();
1747 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
1748 }
1749#endif
1750 curs_columns(FALSE); /* recompute w_wrow and w_wcol */
1751 if (curwin->w_wcol < W_WIDTH(curwin))
1752 {
1753 edit_putchar('$', FALSE);
1754 dollar_vcol = curwin->w_virtcol;
1755 }
1756 curwin->w_cursor.col = save_col;
1757}
1758
1759/*
1760 * Call this function before moving the cursor from the normal insert position
1761 * in insert mode.
1762 */
1763 static void
1764undisplay_dollar()
1765{
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001766 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 {
Bram Moolenaar76b9b362012-02-04 23:35:00 +01001768 dollar_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 redrawWinline(curwin->w_cursor.lnum, FALSE);
1770 }
1771}
1772
1773/*
1774 * Insert an indent (for <Tab> or CTRL-T) or delete an indent (for CTRL-D).
1775 * Keep the cursor on the same character.
1776 * type == INDENT_INC increase indent (for CTRL-T or <Tab>)
1777 * type == INDENT_DEC decrease indent (for CTRL-D)
1778 * type == INDENT_SET set indent to "amount"
1779 * if round is TRUE, round the indent to 'shiftwidth' (only with _INC and _Dec).
1780 */
1781 void
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001782change_indent(type, amount, round, replaced, call_changed_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 int type;
1784 int amount;
1785 int round;
1786 int replaced; /* replaced character, put on replace stack */
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001787 int call_changed_bytes; /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
1789 int vcol;
1790 int last_vcol;
1791 int insstart_less; /* reduction for Insstart.col */
1792 int new_cursor_col;
1793 int i;
1794 char_u *ptr;
1795 int save_p_list;
1796 int start_col;
1797 colnr_T vc;
1798#ifdef FEAT_VREPLACE
1799 colnr_T orig_col = 0; /* init for GCC */
1800 char_u *new_line, *orig_line = NULL; /* init for GCC */
1801
1802 /* VREPLACE mode needs to know what the line was like before changing */
1803 if (State & VREPLACE_FLAG)
1804 {
1805 orig_line = vim_strsave(ml_get_curline()); /* Deal with NULL below */
1806 orig_col = curwin->w_cursor.col;
1807 }
1808#endif
1809
1810 /* for the following tricks we don't want list mode */
1811 save_p_list = curwin->w_p_list;
1812 curwin->w_p_list = FALSE;
1813 vc = getvcol_nolist(&curwin->w_cursor);
1814 vcol = vc;
1815
1816 /*
1817 * For Replace mode we need to fix the replace stack later, which is only
1818 * possible when the cursor is in the indent. Remember the number of
1819 * characters before the cursor if it's possible.
1820 */
1821 start_col = curwin->w_cursor.col;
1822
1823 /* determine offset from first non-blank */
1824 new_cursor_col = curwin->w_cursor.col;
1825 beginline(BL_WHITE);
1826 new_cursor_col -= curwin->w_cursor.col;
1827
1828 insstart_less = curwin->w_cursor.col;
1829
1830 /*
1831 * If the cursor is in the indent, compute how many screen columns the
1832 * cursor is to the left of the first non-blank.
1833 */
1834 if (new_cursor_col < 0)
1835 vcol = get_indent() - vcol;
1836
1837 if (new_cursor_col > 0) /* can't fix replace stack */
1838 start_col = -1;
1839
1840 /*
1841 * Set the new indent. The cursor will be put on the first non-blank.
1842 */
1843 if (type == INDENT_SET)
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001844 (void)set_indent(amount, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 else
1846 {
1847#ifdef FEAT_VREPLACE
1848 int save_State = State;
1849
1850 /* Avoid being called recursively. */
1851 if (State & VREPLACE_FLAG)
1852 State = INSERT;
1853#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +00001854 shift_line(type == INDENT_DEC, round, 1, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855#ifdef FEAT_VREPLACE
1856 State = save_State;
1857#endif
1858 }
1859 insstart_less -= curwin->w_cursor.col;
1860
1861 /*
1862 * Try to put cursor on same character.
1863 * If the cursor is at or after the first non-blank in the line,
1864 * compute the cursor column relative to the column of the first
1865 * non-blank character.
1866 * If we are not in insert mode, leave the cursor on the first non-blank.
1867 * If the cursor is before the first non-blank, position it relative
1868 * to the first non-blank, counted in screen columns.
1869 */
1870 if (new_cursor_col >= 0)
1871 {
1872 /*
1873 * When changing the indent while the cursor is touching it, reset
1874 * Insstart_col to 0.
1875 */
1876 if (new_cursor_col == 0)
1877 insstart_less = MAXCOL;
1878 new_cursor_col += curwin->w_cursor.col;
1879 }
1880 else if (!(State & INSERT))
1881 new_cursor_col = curwin->w_cursor.col;
1882 else
1883 {
1884 /*
1885 * Compute the screen column where the cursor should be.
1886 */
1887 vcol = get_indent() - vcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001888 curwin->w_virtcol = (colnr_T)((vcol < 0) ? 0 : vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889
1890 /*
1891 * Advance the cursor until we reach the right screen column.
1892 */
1893 vcol = last_vcol = 0;
1894 new_cursor_col = -1;
1895 ptr = ml_get_curline();
1896 while (vcol <= (int)curwin->w_virtcol)
1897 {
1898 last_vcol = vcol;
1899#ifdef FEAT_MBYTE
1900 if (has_mbyte && new_cursor_col >= 0)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001901 new_cursor_col += (*mb_ptr2len)(ptr + new_cursor_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 else
1903#endif
1904 ++new_cursor_col;
1905 vcol += lbr_chartabsize(ptr + new_cursor_col, (colnr_T)vcol);
1906 }
1907 vcol = last_vcol;
1908
1909 /*
1910 * May need to insert spaces to be able to position the cursor on
1911 * the right screen column.
1912 */
1913 if (vcol != (int)curwin->w_virtcol)
1914 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001915 curwin->w_cursor.col = (colnr_T)new_cursor_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 i = (int)curwin->w_virtcol - vcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001917 ptr = alloc((unsigned)(i + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 if (ptr != NULL)
1919 {
1920 new_cursor_col += i;
1921 ptr[i] = NUL;
1922 while (--i >= 0)
1923 ptr[i] = ' ';
1924 ins_str(ptr);
1925 vim_free(ptr);
1926 }
1927 }
1928
1929 /*
1930 * When changing the indent while the cursor is in it, reset
1931 * Insstart_col to 0.
1932 */
1933 insstart_less = MAXCOL;
1934 }
1935
1936 curwin->w_p_list = save_p_list;
1937
1938 if (new_cursor_col <= 0)
1939 curwin->w_cursor.col = 0;
1940 else
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 curwin->w_set_curswant = TRUE;
1943 changed_cline_bef_curs();
1944
1945 /*
1946 * May have to adjust the start of the insert.
1947 */
1948 if (State & INSERT)
1949 {
1950 if (curwin->w_cursor.lnum == Insstart.lnum && Insstart.col != 0)
1951 {
1952 if ((int)Insstart.col <= insstart_less)
1953 Insstart.col = 0;
1954 else
1955 Insstart.col -= insstart_less;
1956 }
1957 if ((int)ai_col <= insstart_less)
1958 ai_col = 0;
1959 else
1960 ai_col -= insstart_less;
1961 }
1962
1963 /*
1964 * For REPLACE mode, may have to fix the replace stack, if it's possible.
1965 * If the number of characters before the cursor decreased, need to pop a
1966 * few characters from the replace stack.
1967 * If the number of characters before the cursor increased, need to push a
1968 * few NULs onto the replace stack.
1969 */
1970 if (REPLACE_NORMAL(State) && start_col >= 0)
1971 {
1972 while (start_col > (int)curwin->w_cursor.col)
1973 {
1974 replace_join(0); /* remove a NUL from the replace stack */
1975 --start_col;
1976 }
1977 while (start_col < (int)curwin->w_cursor.col || replaced)
1978 {
1979 replace_push(NUL);
1980 if (replaced)
1981 {
1982 replace_push(replaced);
1983 replaced = NUL;
1984 }
1985 ++start_col;
1986 }
1987 }
1988
1989#ifdef FEAT_VREPLACE
1990 /*
1991 * For VREPLACE mode, we also have to fix the replace stack. In this case
1992 * it is always possible because we backspace over the whole line and then
1993 * put it back again the way we wanted it.
1994 */
1995 if (State & VREPLACE_FLAG)
1996 {
1997 /* If orig_line didn't allocate, just return. At least we did the job,
1998 * even if you can't backspace. */
1999 if (orig_line == NULL)
2000 return;
2001
2002 /* Save new line */
2003 new_line = vim_strsave(ml_get_curline());
2004 if (new_line == NULL)
2005 return;
2006
2007 /* We only put back the new line up to the cursor */
2008 new_line[curwin->w_cursor.col] = NUL;
2009
2010 /* Put back original line */
2011 ml_replace(curwin->w_cursor.lnum, orig_line, FALSE);
2012 curwin->w_cursor.col = orig_col;
2013
2014 /* Backspace from cursor to start of line */
2015 backspace_until_column(0);
2016
2017 /* Insert new stuff into line again */
2018 ins_bytes(new_line);
2019
2020 vim_free(new_line);
2021 }
2022#endif
2023}
2024
2025/*
2026 * Truncate the space at the end of a line. This is to be used only in an
2027 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE
2028 * modes.
2029 */
2030 void
2031truncate_spaces(line)
2032 char_u *line;
2033{
2034 int i;
2035
2036 /* find start of trailing white space */
2037 for (i = (int)STRLEN(line) - 1; i >= 0 && vim_iswhite(line[i]); i--)
2038 {
2039 if (State & REPLACE_FLAG)
2040 replace_join(0); /* remove a NUL from the replace stack */
2041 }
2042 line[i + 1] = NUL;
2043}
2044
2045#if defined(FEAT_VREPLACE) || defined(FEAT_INS_EXPAND) \
2046 || defined(FEAT_COMMENTS) || defined(PROTO)
2047/*
2048 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE
2049 * modes correctly. May also be used when not in insert mode at all.
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002050 * Will attempt not to go before "col" even when there is a composing
2051 * character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 */
2053 void
2054backspace_until_column(col)
2055 int col;
2056{
2057 while ((int)curwin->w_cursor.col > col)
2058 {
2059 curwin->w_cursor.col--;
2060 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002061 replace_do_bs(col);
2062 else if (!del_char_after_col(col))
2063 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 }
2065}
2066#endif
2067
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002068/*
2069 * Like del_char(), but make sure not to go before column "limit_col".
2070 * Only matters when there are composing characters.
2071 * Return TRUE when something was deleted.
2072 */
2073 static int
2074del_char_after_col(limit_col)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00002075 int limit_col UNUSED;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002076{
2077#ifdef FEAT_MBYTE
2078 if (enc_utf8 && limit_col >= 0)
2079 {
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002080 colnr_T ecol = curwin->w_cursor.col + 1;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002081
2082 /* Make sure the cursor is at the start of a character, but
2083 * skip forward again when going too far back because of a
2084 * composing character. */
2085 mb_adjust_cursor();
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00002086 while (curwin->w_cursor.col < (colnr_T)limit_col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002087 {
2088 int l = utf_ptr2len(ml_get_cursor());
2089
2090 if (l == 0) /* end of line */
2091 break;
2092 curwin->w_cursor.col += l;
2093 }
2094 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
2095 return FALSE;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002096 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002097 }
2098 else
2099#endif
2100 (void)del_char(FALSE);
2101 return TRUE;
2102}
2103
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104#if defined(FEAT_INS_EXPAND) || defined(PROTO)
2105/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002106 * CTRL-X pressed in Insert mode.
2107 */
2108 static void
2109ins_ctrl_x()
2110{
2111 /* CTRL-X after CTRL-X CTRL-V doesn't do anything, so that CTRL-X
2112 * CTRL-V works like CTRL-N */
2113 if (ctrl_x_mode != CTRL_X_CMDLINE)
2114 {
2115 /* if the next ^X<> won't ADD nothing, then reset
2116 * compl_cont_status */
2117 if (compl_cont_status & CONT_N_ADDS)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002118 compl_cont_status |= CONT_INTRPT;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002119 else
2120 compl_cont_status = 0;
2121 /* We're not sure which CTRL-X mode it will be yet */
2122 ctrl_x_mode = CTRL_X_NOT_DEFINED_YET;
2123 edit_submode = (char_u *)_(CTRL_X_MSG(ctrl_x_mode));
2124 edit_submode_pre = NULL;
2125 showmode();
2126 }
2127}
2128
2129/*
2130 * Return TRUE if the 'dict' or 'tsr' option can be used.
2131 */
2132 static int
2133has_compl_option(dict_opt)
2134 int dict_opt;
2135{
Bram Moolenaar0b238792006-03-02 22:49:12 +00002136 if (dict_opt ? (*curbuf->b_p_dict == NUL && *p_dict == NUL
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002137# ifdef FEAT_SPELL
2138 && !curwin->w_p_spell
2139# endif
2140 )
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002141 : (*curbuf->b_p_tsr == NUL && *p_tsr == NUL))
2142 {
2143 ctrl_x_mode = 0;
2144 edit_submode = NULL;
2145 msg_attr(dict_opt ? (char_u *)_("'dictionary' option is empty")
2146 : (char_u *)_("'thesaurus' option is empty"),
2147 hl_attr(HLF_E));
2148 if (emsg_silent == 0)
2149 {
2150 vim_beep();
2151 setcursor();
2152 out_flush();
2153 ui_delay(2000L, FALSE);
2154 }
2155 return FALSE;
2156 }
2157 return TRUE;
2158}
2159
2160/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 * Is the character 'c' a valid key to go to or keep us in CTRL-X mode?
2162 * This depends on the current mode.
2163 */
2164 int
2165vim_is_ctrl_x_key(c)
2166 int c;
2167{
2168 /* Always allow ^R - let it's results then be checked */
2169 if (c == Ctrl_R)
2170 return TRUE;
2171
Bram Moolenaare3226be2005-12-18 22:10:00 +00002172 /* Accept <PageUp> and <PageDown> if the popup menu is visible. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002173 if (ins_compl_pum_key(c))
Bram Moolenaare3226be2005-12-18 22:10:00 +00002174 return TRUE;
2175
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 switch (ctrl_x_mode)
2177 {
2178 case 0: /* Not in any CTRL-X mode */
2179 return (c == Ctrl_N || c == Ctrl_P || c == Ctrl_X);
2180 case CTRL_X_NOT_DEFINED_YET:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002181 return ( c == Ctrl_X || c == Ctrl_Y || c == Ctrl_E
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 || c == Ctrl_L || c == Ctrl_F || c == Ctrl_RSB
2183 || c == Ctrl_I || c == Ctrl_D || c == Ctrl_P
2184 || c == Ctrl_N || c == Ctrl_T || c == Ctrl_V
Bram Moolenaar488c6512005-08-11 20:09:58 +00002185 || c == Ctrl_Q || c == Ctrl_U || c == Ctrl_O
Bram Moolenaarbbd9fd72011-12-23 13:15:03 +01002186 || c == Ctrl_S || c == Ctrl_K || c == 's');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 case CTRL_X_SCROLL:
2188 return (c == Ctrl_Y || c == Ctrl_E);
2189 case CTRL_X_WHOLE_LINE:
2190 return (c == Ctrl_L || c == Ctrl_P || c == Ctrl_N);
2191 case CTRL_X_FILES:
2192 return (c == Ctrl_F || c == Ctrl_P || c == Ctrl_N);
2193 case CTRL_X_DICTIONARY:
2194 return (c == Ctrl_K || c == Ctrl_P || c == Ctrl_N);
2195 case CTRL_X_THESAURUS:
2196 return (c == Ctrl_T || c == Ctrl_P || c == Ctrl_N);
2197 case CTRL_X_TAGS:
2198 return (c == Ctrl_RSB || c == Ctrl_P || c == Ctrl_N);
2199#ifdef FEAT_FIND_ID
2200 case CTRL_X_PATH_PATTERNS:
2201 return (c == Ctrl_P || c == Ctrl_N);
2202 case CTRL_X_PATH_DEFINES:
2203 return (c == Ctrl_D || c == Ctrl_P || c == Ctrl_N);
2204#endif
2205 case CTRL_X_CMDLINE:
2206 return (c == Ctrl_V || c == Ctrl_Q || c == Ctrl_P || c == Ctrl_N
2207 || c == Ctrl_X);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00002208#ifdef FEAT_COMPL_FUNC
2209 case CTRL_X_FUNCTION:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002210 return (c == Ctrl_U || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaarf75a9632005-09-13 21:20:47 +00002211 case CTRL_X_OMNI:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002212 return (c == Ctrl_O || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaare344bea2005-09-01 20:46:49 +00002213#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00002214 case CTRL_X_SPELL:
2215 return (c == Ctrl_S || c == Ctrl_P || c == Ctrl_N);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 }
2217 EMSG(_(e_internal));
2218 return FALSE;
2219}
2220
2221/*
Bram Moolenaar711d5b52007-10-19 18:40:51 +00002222 * Return TRUE when character "c" is part of the item currently being
2223 * completed. Used to decide whether to abandon complete mode when the menu
2224 * is visible.
2225 */
2226 static int
2227ins_compl_accept_char(c)
2228 int c;
2229{
2230 if (ctrl_x_mode & CTRL_X_WANT_IDENT)
2231 /* When expanding an identifier only accept identifier chars. */
2232 return vim_isIDc(c);
2233
2234 switch (ctrl_x_mode)
2235 {
2236 case CTRL_X_FILES:
2237 /* When expanding file name only accept file name chars. But not
2238 * path separators, so that "proto/<Tab>" expands files in
2239 * "proto", not "proto/" as a whole */
2240 return vim_isfilec(c) && !vim_ispathsep(c);
2241
2242 case CTRL_X_CMDLINE:
2243 case CTRL_X_OMNI:
2244 /* Command line and Omni completion can work with just about any
2245 * printable character, but do stop at white space. */
2246 return vim_isprintc(c) && !vim_iswhite(c);
2247
2248 case CTRL_X_WHOLE_LINE:
2249 /* For while line completion a space can be part of the line. */
2250 return vim_isprintc(c);
2251 }
2252 return vim_iswordc(c);
2253}
2254
2255/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002256 * This is like ins_compl_add(), but if 'ic' and 'inf' are set, then the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 * case of the originally typed text is used, and the case of the completed
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00002258 * text is inferred, ie this tries to work out what case you probably wanted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 * the rest of the word to be in -- webb
2260 */
2261 int
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002262ins_compl_add_infercase(str, len, icase, fname, dir, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 char_u *str;
2264 int len;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002265 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 char_u *fname;
2267 int dir;
Bram Moolenaar572cb562005-08-05 21:35:02 +00002268 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269{
Bram Moolenaara2993e12007-08-12 14:38:46 +00002270 char_u *p;
2271 int i, c;
2272 int actual_len; /* Take multi-byte characters */
2273 int actual_compl_length; /* into account. */
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002274 int min_len;
Bram Moolenaar97b98102009-11-17 16:41:01 +00002275 int *wca; /* Wide character array. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 int has_lower = FALSE;
2277 int was_letter = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278
Bram Moolenaare40e57c2007-11-08 12:04:26 +00002279 if (p_ic && curbuf->b_p_inf && len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002281 /* Infer case of completed part. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282
Bram Moolenaara2993e12007-08-12 14:38:46 +00002283 /* Find actual length of completion. */
2284#ifdef FEAT_MBYTE
2285 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002287 p = str;
2288 actual_len = 0;
2289 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002291 mb_ptr_adv(p);
2292 ++actual_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 }
2294 }
Bram Moolenaara2993e12007-08-12 14:38:46 +00002295 else
2296#endif
2297 actual_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298
Bram Moolenaara2993e12007-08-12 14:38:46 +00002299 /* Find actual length of original text. */
2300#ifdef FEAT_MBYTE
2301 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002303 p = compl_orig_text;
2304 actual_compl_length = 0;
2305 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 {
Bram Moolenaara2993e12007-08-12 14:38:46 +00002307 mb_ptr_adv(p);
2308 ++actual_compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 }
2310 }
Bram Moolenaara2993e12007-08-12 14:38:46 +00002311 else
2312#endif
2313 actual_compl_length = compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002315 /* "actual_len" may be smaller than "actual_compl_length" when using
2316 * thesaurus, only use the minimum when comparing. */
2317 min_len = actual_len < actual_compl_length
2318 ? actual_len : actual_compl_length;
2319
Bram Moolenaara2993e12007-08-12 14:38:46 +00002320 /* Allocate wide character array for the completion and fill it. */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002321 wca = (int *)alloc((unsigned)(actual_len * sizeof(int)));
Bram Moolenaara2993e12007-08-12 14:38:46 +00002322 if (wca != NULL)
2323 {
2324 p = str;
2325 for (i = 0; i < actual_len; ++i)
2326#ifdef FEAT_MBYTE
2327 if (has_mbyte)
2328 wca[i] = mb_ptr2char_adv(&p);
2329 else
2330#endif
2331 wca[i] = *(p++);
2332
2333 /* Rule 1: Were any chars converted to lower? */
2334 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002335 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002336 {
2337#ifdef FEAT_MBYTE
2338 if (has_mbyte)
2339 c = mb_ptr2char_adv(&p);
2340 else
2341#endif
2342 c = *(p++);
2343 if (MB_ISLOWER(c))
2344 {
2345 has_lower = TRUE;
2346 if (MB_ISUPPER(wca[i]))
2347 {
2348 /* Rule 1 is satisfied. */
2349 for (i = actual_compl_length; i < actual_len; ++i)
2350 wca[i] = MB_TOLOWER(wca[i]);
2351 break;
2352 }
2353 }
2354 }
2355
2356 /*
2357 * Rule 2: No lower case, 2nd consecutive letter converted to
2358 * upper case.
2359 */
2360 if (!has_lower)
2361 {
2362 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002363 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002364 {
2365#ifdef FEAT_MBYTE
2366 if (has_mbyte)
2367 c = mb_ptr2char_adv(&p);
2368 else
2369#endif
2370 c = *(p++);
2371 if (was_letter && MB_ISUPPER(c) && MB_ISLOWER(wca[i]))
2372 {
2373 /* Rule 2 is satisfied. */
2374 for (i = actual_compl_length; i < actual_len; ++i)
2375 wca[i] = MB_TOUPPER(wca[i]);
2376 break;
2377 }
2378 was_letter = MB_ISLOWER(c) || MB_ISUPPER(c);
2379 }
2380 }
2381
2382 /* Copy the original case of the part we typed. */
2383 p = compl_orig_text;
Bram Moolenaar04fa5422010-05-28 21:31:58 +02002384 for (i = 0; i < min_len; ++i)
Bram Moolenaara2993e12007-08-12 14:38:46 +00002385 {
2386#ifdef FEAT_MBYTE
2387 if (has_mbyte)
2388 c = mb_ptr2char_adv(&p);
2389 else
2390#endif
2391 c = *(p++);
2392 if (MB_ISLOWER(c))
2393 wca[i] = MB_TOLOWER(wca[i]);
2394 else if (MB_ISUPPER(c))
2395 wca[i] = MB_TOUPPER(wca[i]);
2396 }
2397
Bram Moolenaare40e57c2007-11-08 12:04:26 +00002398 /*
Bram Moolenaara2993e12007-08-12 14:38:46 +00002399 * Generate encoding specific output from wide character array.
2400 * Multi-byte characters can occupy up to five bytes more than
2401 * ASCII characters, and we also need one byte for NUL, so stay
2402 * six bytes away from the edge of IObuff.
2403 */
2404 p = IObuff;
2405 i = 0;
2406 while (i < actual_len && (p - IObuff + 6) < IOSIZE)
2407#ifdef FEAT_MBYTE
2408 if (has_mbyte)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00002409 p += (*mb_char2bytes)(wca[i++], p);
Bram Moolenaara2993e12007-08-12 14:38:46 +00002410 else
2411#endif
2412 *(p++) = wca[i++];
2413 *p = NUL;
2414
2415 vim_free(wca);
2416 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002418 return ins_compl_add(IObuff, len, icase, fname, NULL, dir,
2419 flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 }
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002421 return ins_compl_add(str, len, icase, fname, NULL, dir, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422}
2423
2424/*
2425 * Add a match to the list of matches.
2426 * If the given string is already in the list of completions, then return
Bram Moolenaar572cb562005-08-05 21:35:02 +00002427 * NOTDONE, otherwise add it to the list and return OK. If there is an error,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002428 * maybe because alloc() returns NULL, then FAIL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 */
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002430 static int
Bram Moolenaar89d40322006-08-29 15:30:07 +00002431ins_compl_add(str, len, icase, fname, cptext, cdir, flags, adup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 char_u *str;
2433 int len;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002434 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 char_u *fname;
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002436 char_u **cptext; /* extra text for popup menu or NULL */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002437 int cdir;
Bram Moolenaar572cb562005-08-05 21:35:02 +00002438 int flags;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002439 int adup; /* accept duplicate match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440{
Bram Moolenaar572cb562005-08-05 21:35:02 +00002441 compl_T *match;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002442 int dir = (cdir == 0 ? compl_direction : cdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443
2444 ui_breakcheck();
2445 if (got_int)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002446 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 if (len < 0)
2448 len = (int)STRLEN(str);
2449
2450 /*
2451 * If the same match is already present, don't add it.
2452 */
Bram Moolenaar89d40322006-08-29 15:30:07 +00002453 if (compl_first_match != NULL && !adup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002455 match = compl_first_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 do
2457 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002458 if ( !(match->cp_flags & ORIGINAL_TEXT)
Bram Moolenaar5948a572006-10-03 13:49:29 +00002459 && STRNCMP(match->cp_str, str, len) == 0
Bram Moolenaar572cb562005-08-05 21:35:02 +00002460 && match->cp_str[len] == NUL)
2461 return NOTDONE;
2462 match = match->cp_next;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002463 } while (match != NULL && match != compl_first_match);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 }
2465
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002466 /* Remove any popup menu before changing the list of matches. */
2467 ins_compl_del_pum();
2468
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 /*
2470 * Allocate a new match structure.
2471 * Copy the values to the new match structure.
2472 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002473 match = (compl_T *)alloc_clear((unsigned)sizeof(compl_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 if (match == NULL)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002475 return FAIL;
2476 match->cp_number = -1;
2477 if (flags & ORIGINAL_TEXT)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002478 match->cp_number = 0;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002479 if ((match->cp_str = vim_strnsave(str, len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 {
2481 vim_free(match);
Bram Moolenaar572cb562005-08-05 21:35:02 +00002482 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 }
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002484 match->cp_icase = icase;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002485
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 /* match-fname is:
Bram Moolenaar572cb562005-08-05 21:35:02 +00002487 * - compl_curr_match->cp_fname if it is a string equal to fname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 * - a copy of fname, FREE_FNAME is set to free later THE allocated mem.
2489 * - NULL otherwise. --Acevedo */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002490 if (fname != NULL
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002491 && compl_curr_match != NULL
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002492 && compl_curr_match->cp_fname != NULL
2493 && STRCMP(fname, compl_curr_match->cp_fname) == 0)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002494 match->cp_fname = compl_curr_match->cp_fname;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002495 else if (fname != NULL)
2496 {
2497 match->cp_fname = vim_strsave(fname);
Bram Moolenaar572cb562005-08-05 21:35:02 +00002498 flags |= FREE_FNAME;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002499 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 else
Bram Moolenaar572cb562005-08-05 21:35:02 +00002501 match->cp_fname = NULL;
2502 match->cp_flags = flags;
Bram Moolenaar39f05632006-03-19 22:15:26 +00002503
2504 if (cptext != NULL)
2505 {
2506 int i;
2507
2508 for (i = 0; i < CPT_COUNT; ++i)
2509 if (cptext[i] != NULL && *cptext[i] != NUL)
2510 match->cp_text[i] = vim_strsave(cptext[i]);
2511 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512
2513 /*
2514 * Link the new match structure in the list of matches.
2515 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002516 if (compl_first_match == NULL)
Bram Moolenaar572cb562005-08-05 21:35:02 +00002517 match->cp_next = match->cp_prev = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 else if (dir == FORWARD)
2519 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002520 match->cp_next = compl_curr_match->cp_next;
2521 match->cp_prev = compl_curr_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 }
2523 else /* BACKWARD */
2524 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002525 match->cp_next = compl_curr_match;
2526 match->cp_prev = compl_curr_match->cp_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00002528 if (match->cp_next)
2529 match->cp_next->cp_prev = match;
2530 if (match->cp_prev)
2531 match->cp_prev->cp_next = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 else /* if there's nothing before, it is the first match */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002533 compl_first_match = match;
2534 compl_curr_match = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002536 /*
2537 * Find the longest common string if still doing that.
2538 */
2539 if (compl_get_longest && (flags & ORIGINAL_TEXT) == 0)
2540 ins_compl_longest_match(match);
2541
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 return OK;
2543}
2544
2545/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002546 * Return TRUE if "str[len]" matches with match->cp_str, considering
2547 * match->cp_icase.
2548 */
2549 static int
2550ins_compl_equal(match, str, len)
2551 compl_T *match;
2552 char_u *str;
2553 int len;
2554{
2555 if (match->cp_icase)
2556 return STRNICMP(match->cp_str, str, (size_t)len) == 0;
2557 return STRNCMP(match->cp_str, str, (size_t)len) == 0;
2558}
2559
2560/*
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002561 * Reduce the longest common string for match "match".
2562 */
2563 static void
2564ins_compl_longest_match(match)
2565 compl_T *match;
2566{
2567 char_u *p, *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002568 int c1, c2;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002569 int had_match;
2570
2571 if (compl_leader == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002572 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002573 /* First match, use it as a whole. */
2574 compl_leader = vim_strsave(match->cp_str);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002575 if (compl_leader != NULL)
2576 {
2577 had_match = (curwin->w_cursor.col > compl_col);
2578 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002579 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002580 ins_redraw(FALSE);
2581
2582 /* When the match isn't there (to avoid matching itself) remove it
2583 * again after redrawing. */
2584 if (!had_match)
2585 ins_compl_delete();
2586 compl_used_match = FALSE;
2587 }
2588 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002589 else
2590 {
2591 /* Reduce the text if this match differs from compl_leader. */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002592 p = compl_leader;
2593 s = match->cp_str;
2594 while (*p != NUL)
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002595 {
2596#ifdef FEAT_MBYTE
2597 if (has_mbyte)
2598 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002599 c1 = mb_ptr2char(p);
2600 c2 = mb_ptr2char(s);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002601 }
2602 else
2603#endif
2604 {
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002605 c1 = *p;
2606 c2 = *s;
2607 }
2608 if (match->cp_icase ? (MB_TOLOWER(c1) != MB_TOLOWER(c2))
2609 : (c1 != c2))
2610 break;
2611#ifdef FEAT_MBYTE
2612 if (has_mbyte)
2613 {
2614 mb_ptr_adv(p);
2615 mb_ptr_adv(s);
2616 }
2617 else
2618#endif
2619 {
2620 ++p;
2621 ++s;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002622 }
2623 }
2624
2625 if (*p != NUL)
2626 {
2627 /* Leader was shortened, need to change the inserted text. */
2628 *p = NUL;
2629 had_match = (curwin->w_cursor.col > compl_col);
2630 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00002631 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002632 ins_redraw(FALSE);
2633
2634 /* When the match isn't there (to avoid matching itself) remove it
2635 * again after redrawing. */
2636 if (!had_match)
2637 ins_compl_delete();
2638 }
2639
2640 compl_used_match = FALSE;
2641 }
2642}
2643
2644/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 * Add an array of matches to the list of matches.
2646 * Frees matches[].
2647 */
2648 static void
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002649ins_compl_add_matches(num_matches, matches, icase)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 int num_matches;
2651 char_u **matches;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002652 int icase;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653{
2654 int i;
2655 int add_r = OK;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002656 int dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657
Bram Moolenaar572cb562005-08-05 21:35:02 +00002658 for (i = 0; i < num_matches && add_r != FAIL; i++)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002659 if ((add_r = ins_compl_add(matches[i], -1, icase,
Bram Moolenaar4a85b412006-04-23 22:40:29 +00002660 NULL, NULL, dir, 0, FALSE)) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 /* if dir was BACKWARD then honor it just once */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002662 dir = FORWARD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 FreeWild(num_matches, matches);
2664}
2665
2666/* Make the completion list cyclic.
2667 * Return the number of matches (excluding the original).
2668 */
2669 static int
2670ins_compl_make_cyclic()
2671{
Bram Moolenaar572cb562005-08-05 21:35:02 +00002672 compl_T *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 int count = 0;
2674
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002675 if (compl_first_match != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 {
2677 /*
2678 * Find the end of the list.
2679 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00002680 match = compl_first_match;
2681 /* there's always an entry for the compl_orig_text, it doesn't count. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00002682 while (match->cp_next != NULL && match->cp_next != compl_first_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00002684 match = match->cp_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 ++count;
2686 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00002687 match->cp_next = compl_first_match;
2688 compl_first_match->cp_prev = match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 }
2690 return count;
2691}
2692
Bram Moolenaara94bc432006-03-10 21:42:59 +00002693/*
2694 * Start completion for the complete() function.
2695 * "startcol" is where the matched text starts (1 is first column).
2696 * "list" is the list of matches.
2697 */
2698 void
2699set_completion(startcol, list)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002700 colnr_T startcol;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002701 list_T *list;
2702{
2703 /* If already doing completions stop it. */
2704 if (ctrl_x_mode != 0)
2705 ins_compl_prep(' ');
2706 ins_compl_clear();
2707
2708 if (stop_arrow() == FAIL)
2709 return;
2710
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01002711 compl_direction = FORWARD;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002712 if (startcol > curwin->w_cursor.col)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002713 startcol = curwin->w_cursor.col;
2714 compl_col = startcol;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00002715 compl_length = (int)curwin->w_cursor.col - (int)startcol;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002716 /* compl_pattern doesn't need to be set */
2717 compl_orig_text = vim_strnsave(ml_get_curline() + compl_col, compl_length);
2718 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
Bram Moolenaare8c3a142006-08-29 14:30:35 +00002719 -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
Bram Moolenaara94bc432006-03-10 21:42:59 +00002720 return;
2721
2722 /* Handle like dictionary completion. */
2723 ctrl_x_mode = CTRL_X_WHOLE_LINE;
2724
2725 ins_compl_add_list(list);
2726 compl_matches = ins_compl_make_cyclic();
2727 compl_started = TRUE;
2728 compl_used_match = TRUE;
Bram Moolenaar5495cc92006-08-16 14:23:04 +00002729 compl_cont_status = 0;
Bram Moolenaara94bc432006-03-10 21:42:59 +00002730
2731 compl_curr_match = compl_first_match;
2732 ins_complete(Ctrl_N);
2733 out_flush();
2734}
2735
2736
Bram Moolenaar9372a112005-12-06 19:59:18 +00002737/* "compl_match_array" points the currently displayed list of entries in the
2738 * popup menu. It is NULL when there is no popup menu. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002739static pumitem_T *compl_match_array = NULL;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002740static int compl_match_arraysize;
2741
2742/*
2743 * Update the screen and when there is any scrolling remove the popup menu.
2744 */
2745 static void
2746ins_compl_upd_pum()
2747{
2748 int h;
2749
2750 if (compl_match_array != NULL)
2751 {
2752 h = curwin->w_cline_height;
2753 update_screen(0);
2754 if (h != curwin->w_cline_height)
2755 ins_compl_del_pum();
2756 }
2757}
2758
2759/*
2760 * Remove any popup menu.
2761 */
2762 static void
2763ins_compl_del_pum()
2764{
2765 if (compl_match_array != NULL)
2766 {
2767 pum_undisplay();
2768 vim_free(compl_match_array);
2769 compl_match_array = NULL;
2770 }
2771}
2772
2773/*
2774 * Return TRUE if the popup menu should be displayed.
2775 */
2776 static int
2777pum_wanted()
2778{
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002779 /* 'completeopt' must contain "menu" or "menuone" */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00002780 if (vim_strchr(p_cot, 'm') == NULL)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002781 return FALSE;
2782
2783 /* The display looks bad on a B&W display. */
2784 if (t_colors < 8
2785#ifdef FEAT_GUI
2786 && !gui.in_use
2787#endif
2788 )
2789 return FALSE;
Bram Moolenaara6557602006-02-04 22:43:20 +00002790 return TRUE;
2791}
2792
2793/*
2794 * Return TRUE if there are two or more matches to be shown in the popup menu.
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002795 * One if 'completopt' contains "menuone".
Bram Moolenaara6557602006-02-04 22:43:20 +00002796 */
2797 static int
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002798pum_enough_matches()
Bram Moolenaara6557602006-02-04 22:43:20 +00002799{
2800 compl_T *compl;
2801 int i;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002802
2803 /* Don't display the popup menu if there are no matches or there is only
2804 * one (ignoring the original text). */
2805 compl = compl_first_match;
2806 i = 0;
2807 do
2808 {
2809 if (compl == NULL
2810 || ((compl->cp_flags & ORIGINAL_TEXT) == 0 && ++i == 2))
2811 break;
2812 compl = compl->cp_next;
2813 } while (compl != compl_first_match);
2814
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002815 if (strstr((char *)p_cot, "menuone") != NULL)
2816 return (i >= 1);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002817 return (i >= 2);
2818}
2819
2820/*
2821 * Show the popup menu for the list of matches.
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002822 * Also adjusts "compl_shown_match" to an entry that is actually displayed.
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002823 */
Bram Moolenaar280f1262006-01-30 00:14:18 +00002824 void
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002825ins_compl_show_pum()
2826{
2827 compl_T *compl;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002828 compl_T *shown_compl = NULL;
2829 int did_find_shown_match = FALSE;
2830 int shown_match_ok = FALSE;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002831 int i;
2832 int cur = -1;
2833 colnr_T col;
Bram Moolenaara6557602006-02-04 22:43:20 +00002834 int lead_len = 0;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002835
Bram Moolenaar65c923a2006-03-03 22:56:30 +00002836 if (!pum_wanted() || !pum_enough_matches())
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002837 return;
2838
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002839#if defined(FEAT_EVAL)
2840 /* Dirty hard-coded hack: remove any matchparen highlighting. */
2841 do_cmdline_cmd((char_u *)"if exists('g:loaded_matchparen')|3match none|endif");
2842#endif
2843
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002844 /* Update the screen before drawing the popup menu over it. */
2845 update_screen(0);
2846
2847 if (compl_match_array == NULL)
2848 {
2849 /* Need to build the popup menu list. */
2850 compl_match_arraysize = 0;
2851 compl = compl_first_match;
Bram Moolenaara6557602006-02-04 22:43:20 +00002852 if (compl_leader != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002853 lead_len = (int)STRLEN(compl_leader);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002854 do
2855 {
Bram Moolenaara6557602006-02-04 22:43:20 +00002856 if ((compl->cp_flags & ORIGINAL_TEXT) == 0
2857 && (compl_leader == NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002858 || ins_compl_equal(compl, compl_leader, lead_len)))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002859 ++compl_match_arraysize;
2860 compl = compl->cp_next;
2861 } while (compl != NULL && compl != compl_first_match);
Bram Moolenaara6557602006-02-04 22:43:20 +00002862 if (compl_match_arraysize == 0)
2863 return;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002864 compl_match_array = (pumitem_T *)alloc_clear(
2865 (unsigned)(sizeof(pumitem_T)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002866 * compl_match_arraysize));
2867 if (compl_match_array != NULL)
2868 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002869 /* If the current match is the original text don't find the first
2870 * match after it, don't highlight anything. */
2871 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
2872 shown_match_ok = TRUE;
2873
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002874 i = 0;
2875 compl = compl_first_match;
2876 do
2877 {
Bram Moolenaara6557602006-02-04 22:43:20 +00002878 if ((compl->cp_flags & ORIGINAL_TEXT) == 0
2879 && (compl_leader == NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002880 || ins_compl_equal(compl, compl_leader, lead_len)))
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002881 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002882 if (!shown_match_ok)
2883 {
2884 if (compl == compl_shown_match || did_find_shown_match)
2885 {
2886 /* This item is the shown match or this is the
2887 * first displayed item after the shown match. */
2888 compl_shown_match = compl;
2889 did_find_shown_match = TRUE;
2890 shown_match_ok = TRUE;
2891 }
2892 else
2893 /* Remember this displayed match for when the
2894 * shown match is just below it. */
2895 shown_compl = compl;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002896 cur = i;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002897 }
Bram Moolenaar39f05632006-03-19 22:15:26 +00002898
2899 if (compl->cp_text[CPT_ABBR] != NULL)
2900 compl_match_array[i].pum_text =
2901 compl->cp_text[CPT_ABBR];
2902 else
2903 compl_match_array[i].pum_text = compl->cp_str;
2904 compl_match_array[i].pum_kind = compl->cp_text[CPT_KIND];
2905 compl_match_array[i].pum_info = compl->cp_text[CPT_INFO];
2906 if (compl->cp_text[CPT_MENU] != NULL)
2907 compl_match_array[i++].pum_extra =
2908 compl->cp_text[CPT_MENU];
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002909 else
2910 compl_match_array[i++].pum_extra = compl->cp_fname;
2911 }
2912
2913 if (compl == compl_shown_match)
2914 {
2915 did_find_shown_match = TRUE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00002916
2917 /* When the original text is the shown match don't set
2918 * compl_shown_match. */
2919 if (compl->cp_flags & ORIGINAL_TEXT)
2920 shown_match_ok = TRUE;
2921
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002922 if (!shown_match_ok && shown_compl != NULL)
2923 {
2924 /* The shown match isn't displayed, set it to the
2925 * previously displayed match. */
2926 compl_shown_match = shown_compl;
2927 shown_match_ok = TRUE;
2928 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002929 }
2930 compl = compl->cp_next;
2931 } while (compl != NULL && compl != compl_first_match);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002932
2933 if (!shown_match_ok) /* no displayed match at all */
2934 cur = -1;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002935 }
2936 }
2937 else
2938 {
2939 /* popup menu already exists, only need to find the current item.*/
Bram Moolenaara6557602006-02-04 22:43:20 +00002940 for (i = 0; i < compl_match_arraysize; ++i)
Bram Moolenaar39f05632006-03-19 22:15:26 +00002941 if (compl_match_array[i].pum_text == compl_shown_match->cp_str
2942 || compl_match_array[i].pum_text
2943 == compl_shown_match->cp_text[CPT_ABBR])
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002944 {
2945 cur = i;
Bram Moolenaara6557602006-02-04 22:43:20 +00002946 break;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002947 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002948 }
2949
2950 if (compl_match_array != NULL)
2951 {
2952 /* Compute the screen column of the start of the completed text.
2953 * Use the cursor to get all wrapping and other settings right. */
2954 col = curwin->w_cursor.col;
2955 curwin->w_cursor.col = compl_col;
Bram Moolenaard289f132006-03-11 21:30:53 +00002956 pum_display(compl_match_array, compl_match_arraysize, cur);
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002957 curwin->w_cursor.col = col;
2958 }
2959}
2960
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961#define DICT_FIRST (1) /* use just first element in "dict" */
2962#define DICT_EXACT (2) /* "dict" is the exact name of a file */
Bram Moolenaar280f1262006-01-30 00:14:18 +00002963
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964/*
Bram Moolenaar0b238792006-03-02 22:49:12 +00002965 * Add any identifiers that match the given pattern in the list of dictionary
2966 * files "dict_start" to the list of completions.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 */
2968 static void
Bram Moolenaar0b238792006-03-02 22:49:12 +00002969ins_compl_dictionaries(dict_start, pat, flags, thesaurus)
2970 char_u *dict_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 char_u *pat;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002972 int flags; /* DICT_FIRST and/or DICT_EXACT */
Bram Moolenaar0b238792006-03-02 22:49:12 +00002973 int thesaurus; /* Thesaurus completion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974{
Bram Moolenaar0b238792006-03-02 22:49:12 +00002975 char_u *dict = dict_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 char_u *ptr;
2977 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 regmatch_T regmatch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 char_u **files;
2980 int count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 int save_p_scs;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002982 int dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983
Bram Moolenaar0b238792006-03-02 22:49:12 +00002984 if (*dict == NUL)
2985 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00002986#ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00002987 /* When 'dictionary' is empty and spell checking is enabled use
2988 * "spell". */
2989 if (!thesaurus && curwin->w_p_spell)
2990 dict = (char_u *)"spell";
2991 else
2992#endif
2993 return;
2994 }
2995
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 buf = alloc(LSIZE);
Bram Moolenaar0b238792006-03-02 22:49:12 +00002997 if (buf == NULL)
2998 return;
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00002999 regmatch.regprog = NULL; /* so that we can goto theend */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003000
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 /* If 'infercase' is set, don't use 'smartcase' here */
3002 save_p_scs = p_scs;
3003 if (curbuf->b_p_inf)
3004 p_scs = FALSE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003005
3006 /* When invoked to match whole lines for CTRL-X CTRL-L adjust the pattern
3007 * to only match at the start of a line. Otherwise just match the
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003008 * pattern. Also need to double backslashes. */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003009 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
3010 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003011 char_u *pat_esc = vim_strsave_escaped(pat, (char_u *)"\\");
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003012 size_t len;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003013
3014 if (pat_esc == NULL)
Bram Moolenaar6519ac82007-05-06 13:45:52 +00003015 goto theend;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003016 len = STRLEN(pat_esc) + 10;
3017 ptr = alloc((unsigned)len);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003018 if (ptr == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003019 {
3020 vim_free(pat_esc);
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00003021 goto theend;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003022 }
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003023 vim_snprintf((char *)ptr, len, "^\\s*\\zs\\V%s", pat_esc);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003024 regmatch.regprog = vim_regcomp(ptr, RE_MAGIC);
3025 vim_free(pat_esc);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003026 vim_free(ptr);
3027 }
3028 else
Bram Moolenaar0b238792006-03-02 22:49:12 +00003029 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003030 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003031 if (regmatch.regprog == NULL)
3032 goto theend;
3033 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003034
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 /* ignore case depends on 'ignorecase', 'smartcase' and "pat" */
3036 regmatch.rm_ic = ignorecase(pat);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003037 while (*dict != NUL && !got_int && !compl_interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 {
3039 /* copy one dictionary file name into buf */
3040 if (flags == DICT_EXACT)
3041 {
3042 count = 1;
3043 files = &dict;
3044 }
3045 else
3046 {
3047 /* Expand wildcards in the dictionary name, but do not allow
3048 * backticks (for security, the 'dict' option may have been set in
3049 * a modeline). */
3050 copy_option_part(&dict, buf, LSIZE, ",");
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003051# ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003052 if (!thesaurus && STRCMP(buf, "spell") == 0)
3053 count = -1;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003054 else
3055# endif
3056 if (vim_strchr(buf, '`') != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 || expand_wildcards(1, &buf, &count, &files,
3058 EW_FILE|EW_SILENT) != OK)
3059 count = 0;
3060 }
3061
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003062# ifdef FEAT_SPELL
Bram Moolenaar0b238792006-03-02 22:49:12 +00003063 if (count == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 {
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003065 /* Complete from active spelling. Skip "\<" in the pattern, we
3066 * don't use it as a RE. */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003067 if (pat[0] == '\\' && pat[1] == '<')
3068 ptr = pat + 2;
3069 else
3070 ptr = pat;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003071 spell_dump_compl(ptr, regmatch.rm_ic, &dir, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 }
Bram Moolenaar0b238792006-03-02 22:49:12 +00003073 else
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003074# endif
Bram Moolenaard7fd0c42006-08-22 17:55:55 +00003075 if (count > 0) /* avoid warning for using "files" uninit */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003076 {
3077 ins_compl_files(count, files, thesaurus, flags,
3078 &regmatch, buf, &dir);
3079 if (flags != DICT_EXACT)
3080 FreeWild(count, files);
3081 }
3082 if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 break;
3084 }
Bram Moolenaar0b238792006-03-02 22:49:12 +00003085
3086theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 p_scs = save_p_scs;
3088 vim_free(regmatch.regprog);
3089 vim_free(buf);
3090}
3091
Bram Moolenaar0b238792006-03-02 22:49:12 +00003092 static void
3093ins_compl_files(count, files, thesaurus, flags, regmatch, buf, dir)
3094 int count;
3095 char_u **files;
3096 int thesaurus;
3097 int flags;
3098 regmatch_T *regmatch;
3099 char_u *buf;
3100 int *dir;
3101{
3102 char_u *ptr;
3103 int i;
3104 FILE *fp;
3105 int add_r;
3106
3107 for (i = 0; i < count && !got_int && !compl_interrupted; i++)
3108 {
3109 fp = mch_fopen((char *)files[i], "r"); /* open dictionary file */
3110 if (flags != DICT_EXACT)
3111 {
3112 vim_snprintf((char *)IObuff, IOSIZE,
3113 _("Scanning dictionary: %s"), (char *)files[i]);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003114 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar0b238792006-03-02 22:49:12 +00003115 }
3116
3117 if (fp != NULL)
3118 {
3119 /*
3120 * Read dictionary file line by line.
3121 * Check each line for a match.
3122 */
3123 while (!got_int && !compl_interrupted
3124 && !vim_fgets(buf, LSIZE, fp))
3125 {
3126 ptr = buf;
3127 while (vim_regexec(regmatch, buf, (colnr_T)(ptr - buf)))
3128 {
3129 ptr = regmatch->startp[0];
3130 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
3131 ptr = find_line_end(ptr);
3132 else
3133 ptr = find_word_end(ptr);
3134 add_r = ins_compl_add_infercase(regmatch->startp[0],
3135 (int)(ptr - regmatch->startp[0]),
Bram Moolenaare8c3a142006-08-29 14:30:35 +00003136 p_ic, files[i], *dir, 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003137 if (thesaurus)
3138 {
3139 char_u *wstart;
3140
3141 /*
3142 * Add the other matches on the line
3143 */
Bram Moolenaara2993e12007-08-12 14:38:46 +00003144 ptr = buf;
Bram Moolenaar0b238792006-03-02 22:49:12 +00003145 while (!got_int)
3146 {
3147 /* Find start of the next word. Skip white
3148 * space and punctuation. */
3149 ptr = find_word_start(ptr);
3150 if (*ptr == NUL || *ptr == NL)
3151 break;
3152 wstart = ptr;
3153
Bram Moolenaara2993e12007-08-12 14:38:46 +00003154 /* Find end of the word. */
Bram Moolenaar0b238792006-03-02 22:49:12 +00003155#ifdef FEAT_MBYTE
3156 if (has_mbyte)
3157 /* Japanese words may have characters in
3158 * different classes, only separate words
3159 * with single-byte non-word characters. */
3160 while (*ptr != NUL)
3161 {
3162 int l = (*mb_ptr2len)(ptr);
3163
3164 if (l < 2 && !vim_iswordc(*ptr))
3165 break;
3166 ptr += l;
3167 }
3168 else
3169#endif
3170 ptr = find_word_end(ptr);
Bram Moolenaara2993e12007-08-12 14:38:46 +00003171
3172 /* Add the word. Skip the regexp match. */
3173 if (wstart != regmatch->startp[0])
3174 add_r = ins_compl_add_infercase(wstart,
3175 (int)(ptr - wstart),
3176 p_ic, files[i], *dir, 0);
Bram Moolenaar0b238792006-03-02 22:49:12 +00003177 }
3178 }
3179 if (add_r == OK)
3180 /* if dir was BACKWARD then honor it just once */
3181 *dir = FORWARD;
3182 else if (add_r == FAIL)
3183 break;
3184 /* avoid expensive call to vim_regexec() when at end
3185 * of line */
3186 if (*ptr == '\n' || got_int)
3187 break;
3188 }
3189 line_breakcheck();
3190 ins_compl_check_keys(50);
3191 }
3192 fclose(fp);
3193 }
3194 }
3195}
3196
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197/*
3198 * Find the start of the next word.
3199 * Returns a pointer to the first char of the word. Also stops at a NUL.
3200 */
3201 char_u *
3202find_word_start(ptr)
3203 char_u *ptr;
3204{
3205#ifdef FEAT_MBYTE
3206 if (has_mbyte)
3207 while (*ptr != NUL && *ptr != '\n' && mb_get_class(ptr) <= 1)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003208 ptr += (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 else
3210#endif
3211 while (*ptr != NUL && *ptr != '\n' && !vim_iswordc(*ptr))
3212 ++ptr;
3213 return ptr;
3214}
3215
3216/*
3217 * Find the end of the word. Assumes it starts inside a word.
3218 * Returns a pointer to just after the word.
3219 */
3220 char_u *
3221find_word_end(ptr)
3222 char_u *ptr;
3223{
3224#ifdef FEAT_MBYTE
3225 int start_class;
3226
3227 if (has_mbyte)
3228 {
3229 start_class = mb_get_class(ptr);
3230 if (start_class > 1)
3231 while (*ptr != NUL)
3232 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003233 ptr += (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 if (mb_get_class(ptr) != start_class)
3235 break;
3236 }
3237 }
3238 else
3239#endif
3240 while (vim_iswordc(*ptr))
3241 ++ptr;
3242 return ptr;
3243}
3244
3245/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003246 * Find the end of the line, omitting CR and NL at the end.
3247 * Returns a pointer to just after the line.
3248 */
3249 static char_u *
3250find_line_end(ptr)
3251 char_u *ptr;
3252{
3253 char_u *s;
3254
3255 s = ptr + STRLEN(ptr);
3256 while (s > ptr && (s[-1] == CAR || s[-1] == NL))
3257 --s;
3258 return s;
3259}
3260
3261/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 * Free the list of completions
3263 */
3264 static void
3265ins_compl_free()
3266{
Bram Moolenaar572cb562005-08-05 21:35:02 +00003267 compl_T *match;
Bram Moolenaar39f05632006-03-19 22:15:26 +00003268 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003270 vim_free(compl_pattern);
3271 compl_pattern = NULL;
Bram Moolenaara6557602006-02-04 22:43:20 +00003272 vim_free(compl_leader);
3273 compl_leader = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003275 if (compl_first_match == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 return;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003277
3278 ins_compl_del_pum();
3279 pum_clear();
3280
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003281 compl_curr_match = compl_first_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 do
3283 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003284 match = compl_curr_match;
Bram Moolenaar572cb562005-08-05 21:35:02 +00003285 compl_curr_match = compl_curr_match->cp_next;
3286 vim_free(match->cp_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 /* several entries may use the same fname, free it just once. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00003288 if (match->cp_flags & FREE_FNAME)
3289 vim_free(match->cp_fname);
Bram Moolenaar39f05632006-03-19 22:15:26 +00003290 for (i = 0; i < CPT_COUNT; ++i)
3291 vim_free(match->cp_text[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 vim_free(match);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003293 } while (compl_curr_match != NULL && compl_curr_match != compl_first_match);
3294 compl_first_match = compl_curr_match = NULL;
Bram Moolenaar031e0dd2009-07-09 16:15:16 +00003295 compl_shown_match = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296}
3297
3298 static void
3299ins_compl_clear()
3300{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003301 compl_cont_status = 0;
3302 compl_started = FALSE;
3303 compl_matches = 0;
3304 vim_free(compl_pattern);
3305 compl_pattern = NULL;
Bram Moolenaara6557602006-02-04 22:43:20 +00003306 vim_free(compl_leader);
3307 compl_leader = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308 edit_submode_extra = NULL;
Bram Moolenaara94bc432006-03-10 21:42:59 +00003309 vim_free(compl_orig_text);
3310 compl_orig_text = NULL;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003311 compl_enter_selects = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312}
3313
3314/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003315 * Return TRUE when Insert completion is active.
3316 */
3317 int
3318ins_compl_active()
3319{
3320 return compl_started;
3321}
3322
3323/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003324 * Delete one character before the cursor and show the subset of the matches
3325 * that match the word that is now before the cursor.
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003326 * Returns the character to be used, NUL if the work is done and another char
3327 * to be got from the user.
Bram Moolenaara6557602006-02-04 22:43:20 +00003328 */
3329 static int
3330ins_compl_bs()
3331{
3332 char_u *line;
3333 char_u *p;
3334
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003335 line = ml_get_curline();
3336 p = line + curwin->w_cursor.col;
3337 mb_ptr_back(line, p);
3338
Bram Moolenaar711d5b52007-10-19 18:40:51 +00003339 /* Stop completion when the whole word was deleted. For Omni completion
3340 * allow the word to be deleted, we won't match everything. */
3341 if ((int)(p - line) - (int)compl_col < 0
3342 || ((int)(p - line) - (int)compl_col == 0
3343 && (ctrl_x_mode & CTRL_X_OMNI) == 0))
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003344 return K_BS;
3345
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003346 /* Deleted more than what was used to find matches or didn't finish
3347 * finding all matches: need to look for matches all over again. */
3348 if (curwin->w_cursor.col <= compl_col + compl_length
Bram Moolenaar82139082011-09-14 16:52:09 +02003349 || ins_compl_need_restart())
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003350 ins_compl_restart();
Bram Moolenaara6557602006-02-04 22:43:20 +00003351
Bram Moolenaara6557602006-02-04 22:43:20 +00003352 vim_free(compl_leader);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003353 compl_leader = vim_strnsave(line + compl_col, (int)(p - line) - compl_col);
Bram Moolenaara6557602006-02-04 22:43:20 +00003354 if (compl_leader != NULL)
3355 {
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003356 ins_compl_new_leader();
3357 return NUL;
3358 }
3359 return K_BS;
3360}
Bram Moolenaara6557602006-02-04 22:43:20 +00003361
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003362/*
Bram Moolenaar82139082011-09-14 16:52:09 +02003363 * Return TRUE when we need to find matches again, ins_compl_restart() is to
3364 * be called.
3365 */
3366 static int
3367ins_compl_need_restart()
3368{
3369 /* Return TRUE if we didn't complete finding matches or when the
3370 * 'completefunc' returned "always" in the "refresh" dictionary item. */
3371 return compl_was_interrupted
3372 || ((ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
3373 && compl_opt_refresh_always);
3374}
3375
3376/*
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003377 * Called after changing "compl_leader".
3378 * Show the popup menu with a different set of matches.
3379 * May also search for matches again if the previous search was interrupted.
3380 */
3381 static void
3382ins_compl_new_leader()
3383{
3384 ins_compl_del_pum();
3385 ins_compl_delete();
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003386 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003387 compl_used_match = FALSE;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003388
3389 if (compl_started)
3390 ins_compl_set_original_text(compl_leader);
3391 else
3392 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003393#ifdef FEAT_SPELL
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003394 spell_bad_len = 0; /* need to redetect bad word */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003395#endif
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003396 /*
3397 * Matches were cleared, need to search for them now. First display
3398 * the changed text before the cursor. Set "compl_restarting" to
3399 * avoid that the first match is inserted.
3400 */
3401 update_screen(0);
3402#ifdef FEAT_GUI
3403 if (gui.in_use)
3404 {
3405 /* Show the cursor after the match, not after the redrawn text. */
3406 setcursor();
3407 out_flush();
3408 gui_update_cursor(FALSE, FALSE);
Bram Moolenaara6557602006-02-04 22:43:20 +00003409 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003410#endif
3411 compl_restarting = TRUE;
3412 if (ins_complete(Ctrl_N) == FAIL)
3413 compl_cont_status = 0;
3414 compl_restarting = FALSE;
3415 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003416
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003417 compl_enter_selects = !compl_used_match;
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003418
3419 /* Show the popup menu with a different set of matches. */
3420 ins_compl_show_pum();
Bram Moolenaar7073cc82006-08-29 16:33:06 +00003421
3422 /* Don't let Enter select the original text when there is no popup menu. */
3423 if (compl_match_array == NULL)
3424 compl_enter_selects = FALSE;
Bram Moolenaara6557602006-02-04 22:43:20 +00003425}
3426
3427/*
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003428 * Return the length of the completion, from the completion start column to
3429 * the cursor column. Making sure it never goes below zero.
3430 */
3431 static int
3432ins_compl_len()
3433{
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003434 int off = (int)curwin->w_cursor.col - (int)compl_col;
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003435
3436 if (off < 0)
3437 return 0;
3438 return off;
3439}
3440
3441/*
Bram Moolenaara6557602006-02-04 22:43:20 +00003442 * Append one character to the match leader. May reduce the number of
3443 * matches.
3444 */
3445 static void
3446ins_compl_addleader(c)
3447 int c;
3448{
3449#ifdef FEAT_MBYTE
3450 int cc;
3451
3452 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
3453 {
3454 char_u buf[MB_MAXBYTES + 1];
3455
3456 (*mb_char2bytes)(c, buf);
3457 buf[cc] = NUL;
3458 ins_char_bytes(buf, cc);
3459 }
3460 else
3461#endif
3462 ins_char(c);
3463
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003464 /* If we didn't complete finding matches we must search again. */
Bram Moolenaar82139082011-09-14 16:52:09 +02003465 if (ins_compl_need_restart())
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003466 ins_compl_restart();
3467
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003468 /* When 'always' is set, don't reset compl_leader. While completing,
3469 * cursor don't point original position, changing compl_leader would
3470 * break redo. */
3471 if (!compl_opt_refresh_always)
3472 {
3473 vim_free(compl_leader);
3474 compl_leader = vim_strnsave(ml_get_curline() + compl_col,
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003475 (int)(curwin->w_cursor.col - compl_col));
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01003476 if (compl_leader != NULL)
3477 ins_compl_new_leader();
3478 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00003479}
3480
3481/*
3482 * Setup for finding completions again without leaving CTRL-X mode. Used when
3483 * BS or a key was typed while still searching for matches.
3484 */
3485 static void
3486ins_compl_restart()
3487{
3488 ins_compl_free();
3489 compl_started = FALSE;
3490 compl_matches = 0;
3491 compl_cont_status = 0;
3492 compl_cont_mode = 0;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003493}
3494
3495/*
3496 * Set the first match, the original text.
3497 */
3498 static void
3499ins_compl_set_original_text(str)
3500 char_u *str;
3501{
3502 char_u *p;
3503
3504 /* Replace the original text entry. */
3505 if (compl_first_match->cp_flags & ORIGINAL_TEXT) /* safety check */
3506 {
3507 p = vim_strsave(str);
3508 if (p != NULL)
3509 {
3510 vim_free(compl_first_match->cp_str);
3511 compl_first_match->cp_str = p;
3512 }
Bram Moolenaara6557602006-02-04 22:43:20 +00003513 }
3514}
3515
3516/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003517 * Append one character to the match leader. May reduce the number of
3518 * matches.
3519 */
3520 static void
3521ins_compl_addfrommatch()
3522{
3523 char_u *p;
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003524 int len = (int)curwin->w_cursor.col - (int)compl_col;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003525 int c;
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003526 compl_T *cp;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003527
3528 p = compl_shown_match->cp_str;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003529 if ((int)STRLEN(p) <= len) /* the match is too short */
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003530 {
3531 /* When still at the original match use the first entry that matches
3532 * the leader. */
3533 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
3534 {
3535 p = NULL;
3536 for (cp = compl_shown_match->cp_next; cp != NULL
3537 && cp != compl_first_match; cp = cp->cp_next)
3538 {
Bram Moolenaar132283f2006-10-03 13:22:23 +00003539 if (compl_leader == NULL
3540 || ins_compl_equal(cp, compl_leader,
Bram Moolenaar0440ca32006-05-13 13:24:33 +00003541 (int)STRLEN(compl_leader)))
3542 {
3543 p = cp->cp_str;
3544 break;
3545 }
3546 }
3547 if (p == NULL || (int)STRLEN(p) <= len)
3548 return;
3549 }
3550 else
3551 return;
3552 }
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003553 p += len;
Bram Moolenaare659c952011-05-19 17:25:41 +02003554 c = PTR2CHAR(p);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003555 ins_compl_addleader(c);
3556}
3557
3558/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 * Prepare for Insert mode completion, or stop it.
Bram Moolenaar572cb562005-08-05 21:35:02 +00003560 * Called just after typing a character in Insert mode.
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003561 * Returns TRUE when the character is not to be inserted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003563 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564ins_compl_prep(c)
3565 int c;
3566{
3567 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 int want_cindent;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003569 int retval = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570
3571 /* Forget any previous 'special' messages if this is actually
3572 * a ^X mode key - bar ^R, in which case we wait to see what it gives us.
3573 */
3574 if (c != Ctrl_R && vim_is_ctrl_x_key(c))
3575 edit_submode_extra = NULL;
3576
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00003577 /* Ignore end of Select mode mapping and mouse scroll buttons. */
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003578 if (c == K_SELECT || c == K_MOUSEDOWN || c == K_MOUSEUP
3579 || c == K_MOUSELEFT || c == K_MOUSERIGHT)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003580 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003582 /* Set "compl_get_longest" when finding the first matches. */
3583 if (ctrl_x_mode == CTRL_X_NOT_DEFINED_YET
3584 || (ctrl_x_mode == 0 && !compl_started))
3585 {
3586 compl_get_longest = (vim_strchr(p_cot, 'l') != NULL);
3587 compl_used_match = TRUE;
3588 }
3589
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 if (ctrl_x_mode == CTRL_X_NOT_DEFINED_YET)
3591 {
3592 /*
3593 * We have just typed CTRL-X and aren't quite sure which CTRL-X mode
3594 * it will be yet. Now we decide.
3595 */
3596 switch (c)
3597 {
3598 case Ctrl_E:
3599 case Ctrl_Y:
3600 ctrl_x_mode = CTRL_X_SCROLL;
3601 if (!(State & REPLACE_FLAG))
3602 edit_submode = (char_u *)_(" (insert) Scroll (^E/^Y)");
3603 else
3604 edit_submode = (char_u *)_(" (replace) Scroll (^E/^Y)");
3605 edit_submode_pre = NULL;
3606 showmode();
3607 break;
3608 case Ctrl_L:
3609 ctrl_x_mode = CTRL_X_WHOLE_LINE;
3610 break;
3611 case Ctrl_F:
3612 ctrl_x_mode = CTRL_X_FILES;
3613 break;
3614 case Ctrl_K:
3615 ctrl_x_mode = CTRL_X_DICTIONARY;
3616 break;
3617 case Ctrl_R:
3618 /* Simply allow ^R to happen without affecting ^X mode */
3619 break;
3620 case Ctrl_T:
3621 ctrl_x_mode = CTRL_X_THESAURUS;
3622 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003623#ifdef FEAT_COMPL_FUNC
3624 case Ctrl_U:
3625 ctrl_x_mode = CTRL_X_FUNCTION;
3626 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003627 case Ctrl_O:
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003628 ctrl_x_mode = CTRL_X_OMNI;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003629 break;
Bram Moolenaare344bea2005-09-01 20:46:49 +00003630#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00003631 case 's':
3632 case Ctrl_S:
3633 ctrl_x_mode = CTRL_X_SPELL;
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00003634#ifdef FEAT_SPELL
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003635 ++emsg_off; /* Avoid getting the E756 error twice. */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00003636 spell_back_to_badword();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003637 --emsg_off;
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00003638#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00003639 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 case Ctrl_RSB:
3641 ctrl_x_mode = CTRL_X_TAGS;
3642 break;
3643#ifdef FEAT_FIND_ID
3644 case Ctrl_I:
3645 case K_S_TAB:
3646 ctrl_x_mode = CTRL_X_PATH_PATTERNS;
3647 break;
3648 case Ctrl_D:
3649 ctrl_x_mode = CTRL_X_PATH_DEFINES;
3650 break;
3651#endif
3652 case Ctrl_V:
3653 case Ctrl_Q:
3654 ctrl_x_mode = CTRL_X_CMDLINE;
3655 break;
3656 case Ctrl_P:
3657 case Ctrl_N:
3658 /* ^X^P means LOCAL expansion if nothing interrupted (eg we
3659 * just started ^X mode, or there were enough ^X's to cancel
3660 * the previous mode, say ^X^F^X^X^P or ^P^X^X^X^P, see below)
3661 * do normal expansion when interrupting a different mode (say
3662 * ^X^F^X^P or ^P^X^X^P, see below)
3663 * nothing changes if interrupting mode 0, (eg, the flag
3664 * doesn't change when going to ADDING mode -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003665 if (!(compl_cont_status & CONT_INTRPT))
3666 compl_cont_status |= CONT_LOCAL;
3667 else if (compl_cont_mode != 0)
3668 compl_cont_status &= ~CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 /* FALLTHROUGH */
3670 default:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003671 /* If we have typed at least 2 ^X's... for modes != 0, we set
3672 * compl_cont_status = 0 (eg, as if we had just started ^X
3673 * mode).
3674 * For mode 0, we set "compl_cont_mode" to an impossible
3675 * value, in both cases ^X^X can be used to restart the same
3676 * mode (avoiding ADDING mode).
3677 * Undocumented feature: In a mode != 0 ^X^P and ^X^X^P start
3678 * 'complete' and local ^P expansions respectively.
3679 * In mode 0 an extra ^X is needed since ^X^P goes to ADDING
3680 * mode -- Acevedo */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 if (c == Ctrl_X)
3682 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003683 if (compl_cont_mode != 0)
3684 compl_cont_status = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003686 compl_cont_mode = CTRL_X_NOT_DEFINED_YET;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 }
3688 ctrl_x_mode = 0;
3689 edit_submode = NULL;
3690 showmode();
3691 break;
3692 }
3693 }
3694 else if (ctrl_x_mode != 0)
3695 {
3696 /* We're already in CTRL-X mode, do we stay in it? */
3697 if (!vim_is_ctrl_x_key(c))
3698 {
3699 if (ctrl_x_mode == CTRL_X_SCROLL)
3700 ctrl_x_mode = 0;
3701 else
3702 ctrl_x_mode = CTRL_X_FINISHED;
3703 edit_submode = NULL;
3704 }
3705 showmode();
3706 }
3707
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003708 if (compl_started || ctrl_x_mode == CTRL_X_FINISHED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 {
3710 /* Show error message from attempted keyword completion (probably
3711 * 'Pattern not found') until another key is hit, then go back to
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003712 * showing what mode we are in. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 showmode();
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003714 if ((ctrl_x_mode == 0 && c != Ctrl_N && c != Ctrl_P && c != Ctrl_R
3715 && !ins_compl_pum_key(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 || ctrl_x_mode == CTRL_X_FINISHED)
3717 {
3718 /* Get here when we have finished typing a sequence of ^N and
3719 * ^P or other completion characters in CTRL-X mode. Free up
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003720 * memory that was used, and make sure we can redo the insert. */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003721 if (compl_curr_match != NULL || compl_leader != NULL || c == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 {
3723 /*
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003724 * If any of the original typed text has been changed, eg when
3725 * ignorecase is set, we must add back-spaces to the redo
3726 * buffer. We add as few as necessary to delete just the part
3727 * of the original text that has changed.
3728 * When using the longest match, edited the match or used
3729 * CTRL-E then don't use the current match.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 */
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003731 if (compl_curr_match != NULL && compl_used_match && c != Ctrl_E)
3732 ptr = compl_curr_match->cp_str;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003733 else
Bram Moolenaar62951b12011-09-21 18:23:05 +02003734 ptr = NULL;
3735 ins_compl_fixRedoBufForLeader(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736 }
3737
3738#ifdef FEAT_CINDENT
3739 want_cindent = (can_cindent && cindent_on());
3740#endif
3741 /*
3742 * When completing whole lines: fix indent for 'cindent'.
3743 * Otherwise, break line if it's too long.
3744 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003745 if (compl_cont_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 {
3747#ifdef FEAT_CINDENT
3748 /* re-indent the current line */
3749 if (want_cindent)
3750 {
3751 do_c_expr_indent();
3752 want_cindent = FALSE; /* don't do it again */
3753 }
3754#endif
3755 }
3756 else
3757 {
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003758 int prev_col = curwin->w_cursor.col;
3759
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 /* put the cursor on the last char, for 'tw' formatting */
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003761 if (prev_col > 0)
3762 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 if (stop_arrow() == OK)
3764 insertchar(NUL, 0, -1);
Bram Moolenaar09a16b52007-02-20 02:31:20 +00003765 if (prev_col > 0
3766 && ml_get_curline()[curwin->w_cursor.col] != NUL)
3767 inc_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 }
3769
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003770 /* If the popup menu is displayed pressing CTRL-Y means accepting
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003771 * the selection without inserting anything. When
3772 * compl_enter_selects is set the Enter key does the same. */
3773 if ((c == Ctrl_Y || (compl_enter_selects
3774 && (c == CAR || c == K_KENTER || c == NL)))
3775 && pum_visible())
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003776 retval = TRUE;
3777
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003778 /* CTRL-E means completion is Ended, go back to the typed text. */
3779 if (c == Ctrl_E)
3780 {
3781 ins_compl_delete();
3782 if (compl_leader != NULL)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003783 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003784 else if (compl_first_match != NULL)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00003785 ins_bytes(compl_orig_text + ins_compl_len());
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00003786 retval = TRUE;
3787 }
3788
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003789 auto_format(FALSE, TRUE);
3790
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 ins_compl_free();
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003792 compl_started = FALSE;
3793 compl_matches = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 msg_clr_cmdline(); /* necessary for "noshowmode" */
3795 ctrl_x_mode = 0;
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003796 compl_enter_selects = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 if (edit_submode != NULL)
3798 {
3799 edit_submode = NULL;
3800 showmode();
3801 }
3802
3803#ifdef FEAT_CINDENT
3804 /*
3805 * Indent now if a key was typed that is in 'cinkeys'.
3806 */
3807 if (want_cindent && in_cinkeys(KEY_COMPLETE, ' ', inindent(0)))
3808 do_c_expr_indent();
3809#endif
3810 }
3811 }
3812
3813 /* reset continue_* if we left expansion-mode, if we stay they'll be
3814 * (re)set properly in ins_complete() */
3815 if (!vim_is_ctrl_x_key(c))
3816 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00003817 compl_cont_status = 0;
3818 compl_cont_mode = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003820
3821 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822}
3823
3824/*
Bram Moolenaar62951b12011-09-21 18:23:05 +02003825 * Fix the redo buffer for the completion leader replacing some of the typed
3826 * text. This inserts backspaces and appends the changed text.
3827 * "ptr" is the known leader text or NUL.
3828 */
3829 static void
3830ins_compl_fixRedoBufForLeader(ptr_arg)
3831 char_u *ptr_arg;
3832{
3833 int len;
3834 char_u *p;
3835 char_u *ptr = ptr_arg;
3836
3837 if (ptr == NULL)
3838 {
3839 if (compl_leader != NULL)
3840 ptr = compl_leader;
3841 else
3842 return; /* nothing to do */
3843 }
3844 if (compl_orig_text != NULL)
3845 {
3846 p = compl_orig_text;
3847 for (len = 0; p[len] != NUL && p[len] == ptr[len]; ++len)
3848 ;
3849#ifdef FEAT_MBYTE
3850 if (len > 0)
3851 len -= (*mb_head_off)(p, p + len);
3852#endif
3853 for (p += len; *p != NUL; mb_ptr_adv(p))
3854 AppendCharToRedobuff(K_BS);
3855 }
3856 else
3857 len = 0;
3858 if (ptr != NULL)
3859 AppendToRedobuffLit(ptr + len, -1);
3860}
3861
3862/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 * Loops through the list of windows, loaded-buffers or non-loaded-buffers
3864 * (depending on flag) starting from buf and looking for a non-scanned
3865 * buffer (other than curbuf). curbuf is special, if it is called with
3866 * buf=curbuf then it has to be the first call for a given flag/expansion.
3867 *
3868 * Returns the buffer to scan, if any, otherwise returns curbuf -- Acevedo
3869 */
3870 static buf_T *
3871ins_compl_next_buf(buf, flag)
3872 buf_T *buf;
3873 int flag;
3874{
3875#ifdef FEAT_WINDOWS
3876 static win_T *wp;
3877#endif
3878
3879 if (flag == 'w') /* just windows */
3880 {
3881#ifdef FEAT_WINDOWS
3882 if (buf == curbuf) /* first call for this flag/expansion */
3883 wp = curwin;
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +00003884 while ((wp = (wp->w_next != NULL ? wp->w_next : firstwin)) != curwin
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 && wp->w_buffer->b_scanned)
3886 ;
3887 buf = wp->w_buffer;
3888#else
3889 buf = curbuf;
3890#endif
3891 }
3892 else
3893 /* 'b' (just loaded buffers), 'u' (just non-loaded buffers) or 'U'
3894 * (unlisted buffers)
3895 * When completing whole lines skip unloaded buffers. */
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +00003896 while ((buf = (buf->b_next != NULL ? buf->b_next : firstbuf)) != curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 && ((flag == 'U'
3898 ? buf->b_p_bl
3899 : (!buf->b_p_bl
3900 || (buf->b_ml.ml_mfp == NULL) != (flag == 'u')))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003901 || buf->b_scanned))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 ;
3903 return buf;
3904}
3905
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003906#ifdef FEAT_COMPL_FUNC
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003907static void expand_by_function __ARGS((int type, char_u *base));
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003908
3909/*
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003910 * Execute user defined complete function 'completefunc' or 'omnifunc', and
Bram Moolenaare344bea2005-09-01 20:46:49 +00003911 * get matches in "matches".
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003912 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003913 static void
3914expand_by_function(type, base)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00003915 int type; /* CTRL_X_OMNI or CTRL_X_FUNCTION */
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003916 char_u *base;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003917{
Bram Moolenaar82139082011-09-14 16:52:09 +02003918 list_T *matchlist = NULL;
3919 dict_T *matchdict = NULL;
Bram Moolenaare344bea2005-09-01 20:46:49 +00003920 char_u *args[2];
Bram Moolenaare344bea2005-09-01 20:46:49 +00003921 char_u *funcname;
3922 pos_T pos;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003923 win_T *curwin_save;
3924 buf_T *curbuf_save;
Bram Moolenaar82139082011-09-14 16:52:09 +02003925 typval_T rettv;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003926
Bram Moolenaare344bea2005-09-01 20:46:49 +00003927 funcname = (type == CTRL_X_FUNCTION) ? curbuf->b_p_cfu : curbuf->b_p_ofu;
3928 if (*funcname == NUL)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003929 return;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003930
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00003931 /* Call 'completefunc' to obtain the list of matches. */
3932 args[0] = (char_u *)"0";
Bram Moolenaare344bea2005-09-01 20:46:49 +00003933 args[1] = base;
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00003934
Bram Moolenaare344bea2005-09-01 20:46:49 +00003935 pos = curwin->w_cursor;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003936 curwin_save = curwin;
3937 curbuf_save = curbuf;
Bram Moolenaar82139082011-09-14 16:52:09 +02003938
3939 /* Call a function, which returns a list or dict. */
3940 if (call_vim_function(funcname, 2, args, FALSE, &rettv) == OK)
3941 {
3942 switch (rettv.v_type)
3943 {
3944 case VAR_LIST:
3945 matchlist = rettv.vval.v_list;
3946 break;
3947 case VAR_DICT:
3948 matchdict = rettv.vval.v_dict;
3949 break;
3950 default:
3951 /* TODO: Give error message? */
3952 clear_tv(&rettv);
3953 break;
3954 }
3955 }
3956
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003957 if (curwin_save != curwin || curbuf_save != curbuf)
3958 {
3959 EMSG(_(e_complwin));
3960 goto theend;
3961 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00003962 curwin->w_cursor = pos; /* restore the cursor position */
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003963 check_cursor();
3964 if (!equalpos(curwin->w_cursor, pos))
3965 {
3966 EMSG(_(e_compldel));
3967 goto theend;
3968 }
Bram Moolenaar82139082011-09-14 16:52:09 +02003969
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003970 if (matchlist != NULL)
3971 ins_compl_add_list(matchlist);
Bram Moolenaar82139082011-09-14 16:52:09 +02003972 else if (matchdict != NULL)
3973 ins_compl_add_dict(matchdict);
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00003974
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003975theend:
Bram Moolenaar82139082011-09-14 16:52:09 +02003976 if (matchdict != NULL)
3977 dict_unref(matchdict);
Bram Moolenaar37dd0182010-11-10 16:54:20 +01003978 if (matchlist != NULL)
3979 list_unref(matchlist);
Bram Moolenaara94bc432006-03-10 21:42:59 +00003980}
3981#endif /* FEAT_COMPL_FUNC */
3982
Bram Moolenaar39f05632006-03-19 22:15:26 +00003983#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00003984/*
3985 * Add completions from a list.
Bram Moolenaara94bc432006-03-10 21:42:59 +00003986 */
3987 static void
3988ins_compl_add_list(list)
3989 list_T *list;
3990{
3991 listitem_T *li;
Bram Moolenaara94bc432006-03-10 21:42:59 +00003992 int dir = compl_direction;
3993
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003994 /* Go through the List with matches and add each of them. */
Bram Moolenaara94bc432006-03-10 21:42:59 +00003995 for (li = list->lv_first; li != NULL; li = li->li_next)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003996 {
Bram Moolenaar39f05632006-03-19 22:15:26 +00003997 if (ins_compl_add_tv(&li->li_tv, dir) == OK)
3998 /* if dir was BACKWARD then honor it just once */
3999 dir = FORWARD;
Bram Moolenaar280f1262006-01-30 00:14:18 +00004000 else if (did_emsg)
4001 break;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004002 }
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004003}
Bram Moolenaar39f05632006-03-19 22:15:26 +00004004
4005/*
Bram Moolenaar82139082011-09-14 16:52:09 +02004006 * Add completions from a dict.
4007 */
4008 static void
4009ins_compl_add_dict(dict)
4010 dict_T *dict;
4011{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004012 dictitem_T *di_refresh;
4013 dictitem_T *di_words;
Bram Moolenaar82139082011-09-14 16:52:09 +02004014
4015 /* Check for optional "refresh" item. */
4016 compl_opt_refresh_always = FALSE;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004017 di_refresh = dict_find(dict, (char_u *)"refresh", 7);
4018 if (di_refresh != NULL && di_refresh->di_tv.v_type == VAR_STRING)
Bram Moolenaar82139082011-09-14 16:52:09 +02004019 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004020 char_u *v = di_refresh->di_tv.vval.v_string;
Bram Moolenaar82139082011-09-14 16:52:09 +02004021
4022 if (v != NULL && STRCMP(v, (char_u *)"always") == 0)
4023 compl_opt_refresh_always = TRUE;
4024 }
4025
4026 /* Add completions from a "words" list. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004027 di_words = dict_find(dict, (char_u *)"words", 5);
4028 if (di_words != NULL && di_words->di_tv.v_type == VAR_LIST)
4029 ins_compl_add_list(di_words->di_tv.vval.v_list);
Bram Moolenaar82139082011-09-14 16:52:09 +02004030}
4031
4032/*
Bram Moolenaar39f05632006-03-19 22:15:26 +00004033 * Add a match to the list of matches from a typeval_T.
4034 * If the given string is already in the list of completions, then return
4035 * NOTDONE, otherwise add it to the list and return OK. If there is an error,
4036 * maybe because alloc() returns NULL, then FAIL is returned.
4037 */
4038 int
4039ins_compl_add_tv(tv, dir)
4040 typval_T *tv;
4041 int dir;
4042{
4043 char_u *word;
Bram Moolenaar91170f82006-05-05 21:15:17 +00004044 int icase = FALSE;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004045 int adup = FALSE;
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004046 int aempty = FALSE;
Bram Moolenaar39f05632006-03-19 22:15:26 +00004047 char_u *(cptext[CPT_COUNT]);
4048
4049 if (tv->v_type == VAR_DICT && tv->vval.v_dict != NULL)
4050 {
4051 word = get_dict_string(tv->vval.v_dict, (char_u *)"word", FALSE);
4052 cptext[CPT_ABBR] = get_dict_string(tv->vval.v_dict,
4053 (char_u *)"abbr", FALSE);
4054 cptext[CPT_MENU] = get_dict_string(tv->vval.v_dict,
4055 (char_u *)"menu", FALSE);
4056 cptext[CPT_KIND] = get_dict_string(tv->vval.v_dict,
4057 (char_u *)"kind", FALSE);
4058 cptext[CPT_INFO] = get_dict_string(tv->vval.v_dict,
4059 (char_u *)"info", FALSE);
4060 if (get_dict_string(tv->vval.v_dict, (char_u *)"icase", FALSE) != NULL)
4061 icase = get_dict_number(tv->vval.v_dict, (char_u *)"icase");
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004062 if (get_dict_string(tv->vval.v_dict, (char_u *)"dup", FALSE) != NULL)
Bram Moolenaar89d40322006-08-29 15:30:07 +00004063 adup = get_dict_number(tv->vval.v_dict, (char_u *)"dup");
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004064 if (get_dict_string(tv->vval.v_dict, (char_u *)"empty", FALSE) != NULL)
4065 aempty = get_dict_number(tv->vval.v_dict, (char_u *)"empty");
Bram Moolenaar39f05632006-03-19 22:15:26 +00004066 }
4067 else
4068 {
4069 word = get_tv_string_chk(tv);
4070 vim_memset(cptext, 0, sizeof(cptext));
4071 }
Bram Moolenaar2a8caa42010-11-10 17:11:33 +01004072 if (word == NULL || (!aempty && *word == NUL))
Bram Moolenaar39f05632006-03-19 22:15:26 +00004073 return FAIL;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004074 return ins_compl_add(word, -1, icase, NULL, cptext, dir, 0, adup);
Bram Moolenaar39f05632006-03-19 22:15:26 +00004075}
Bram Moolenaara94bc432006-03-10 21:42:59 +00004076#endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004077
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004078/*
4079 * Get the next expansion(s), using "compl_pattern".
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004080 * The search starts at position "ini" in curbuf and in the direction
4081 * compl_direction.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004082 * When "compl_started" is FALSE start at that position, otherwise continue
4083 * where we stopped searching before.
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004084 * This may return before finding all the matches.
4085 * Return the total number of matches or -1 if still unknown -- Acevedo
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 */
4087 static int
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004088ins_compl_get_exp(ini)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 pos_T *ini;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090{
4091 static pos_T first_match_pos;
4092 static pos_T last_match_pos;
4093 static char_u *e_cpt = (char_u *)""; /* curr. entry in 'complete' */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004094 static int found_all = FALSE; /* Found all matches of a
4095 certain type. */
4096 static buf_T *ins_buf = NULL; /* buffer being scanned */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097
Bram Moolenaar572cb562005-08-05 21:35:02 +00004098 pos_T *pos;
4099 char_u **matches;
4100 int save_p_scs;
4101 int save_p_ws;
4102 int save_p_ic;
4103 int i;
4104 int num_matches;
4105 int len;
4106 int found_new_match;
4107 int type = ctrl_x_mode;
4108 char_u *ptr;
4109 char_u *dict = NULL;
4110 int dict_f = 0;
4111 compl_T *old_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004113 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 {
4115 for (ins_buf = firstbuf; ins_buf != NULL; ins_buf = ins_buf->b_next)
4116 ins_buf->b_scanned = 0;
4117 found_all = FALSE;
4118 ins_buf = curbuf;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004119 e_cpt = (compl_cont_status & CONT_LOCAL)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004120 ? (char_u *)"." : curbuf->b_p_cpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 last_match_pos = first_match_pos = *ini;
4122 }
4123
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004124 old_match = compl_curr_match; /* remember the last current match */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004125 pos = (compl_direction == FORWARD) ? &last_match_pos : &first_match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 /* For ^N/^P loop over all the flags/windows/buffers in 'complete' */
4127 for (;;)
4128 {
4129 found_new_match = FAIL;
4130
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004131 /* For ^N/^P pick a new entry from e_cpt if compl_started is off,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 * or if found_all says this entry is done. For ^X^L only use the
4133 * entries from 'complete' that look in loaded buffers. */
4134 if ((ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004135 && (!compl_started || found_all))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 {
4137 found_all = FALSE;
4138 while (*e_cpt == ',' || *e_cpt == ' ')
4139 e_cpt++;
4140 if (*e_cpt == '.' && !curbuf->b_scanned)
4141 {
4142 ins_buf = curbuf;
4143 first_match_pos = *ini;
4144 /* So that ^N can match word immediately after cursor */
4145 if (ctrl_x_mode == 0)
4146 dec(&first_match_pos);
4147 last_match_pos = first_match_pos;
4148 type = 0;
4149 }
4150 else if (vim_strchr((char_u *)"buwU", *e_cpt) != NULL
4151 && (ins_buf = ins_compl_next_buf(ins_buf, *e_cpt)) != curbuf)
4152 {
4153 /* Scan a buffer, but not the current one. */
4154 if (ins_buf->b_ml.ml_mfp != NULL) /* loaded buffer */
4155 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004156 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 first_match_pos.col = last_match_pos.col = 0;
4158 first_match_pos.lnum = ins_buf->b_ml.ml_line_count + 1;
4159 last_match_pos.lnum = 0;
4160 type = 0;
4161 }
4162 else /* unloaded buffer, scan like dictionary */
4163 {
4164 found_all = TRUE;
4165 if (ins_buf->b_fname == NULL)
4166 continue;
4167 type = CTRL_X_DICTIONARY;
4168 dict = ins_buf->b_fname;
4169 dict_f = DICT_EXACT;
4170 }
Bram Moolenaar555b2802005-05-19 21:08:39 +00004171 vim_snprintf((char *)IObuff, IOSIZE, _("Scanning: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 ins_buf->b_fname == NULL
4173 ? buf_spname(ins_buf)
4174 : ins_buf->b_sfname == NULL
4175 ? (char *)ins_buf->b_fname
4176 : (char *)ins_buf->b_sfname);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004177 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 }
4179 else if (*e_cpt == NUL)
4180 break;
4181 else
4182 {
4183 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
4184 type = -1;
4185 else if (*e_cpt == 'k' || *e_cpt == 's')
4186 {
4187 if (*e_cpt == 'k')
4188 type = CTRL_X_DICTIONARY;
4189 else
4190 type = CTRL_X_THESAURUS;
4191 if (*++e_cpt != ',' && *e_cpt != NUL)
4192 {
4193 dict = e_cpt;
4194 dict_f = DICT_FIRST;
4195 }
4196 }
4197#ifdef FEAT_FIND_ID
4198 else if (*e_cpt == 'i')
4199 type = CTRL_X_PATH_PATTERNS;
4200 else if (*e_cpt == 'd')
4201 type = CTRL_X_PATH_DEFINES;
4202#endif
4203 else if (*e_cpt == ']' || *e_cpt == 't')
4204 {
4205 type = CTRL_X_TAGS;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004206 vim_snprintf((char *)IObuff, IOSIZE, _("Scanning tags."));
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004207 (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 }
4209 else
4210 type = -1;
4211
4212 /* in any case e_cpt is advanced to the next entry */
4213 (void)copy_option_part(&e_cpt, IObuff, IOSIZE, ",");
4214
4215 found_all = TRUE;
4216 if (type == -1)
4217 continue;
4218 }
4219 }
4220
4221 switch (type)
4222 {
4223 case -1:
4224 break;
4225#ifdef FEAT_FIND_ID
4226 case CTRL_X_PATH_PATTERNS:
4227 case CTRL_X_PATH_DEFINES:
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004228 find_pattern_in_path(compl_pattern, compl_direction,
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004229 (int)STRLEN(compl_pattern), FALSE, FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 (type == CTRL_X_PATH_DEFINES
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004231 && !(compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 ? FIND_DEFINE : FIND_ANY, 1L, ACTION_EXPAND,
4233 (linenr_T)1, (linenr_T)MAXLNUM);
4234 break;
4235#endif
4236
4237 case CTRL_X_DICTIONARY:
4238 case CTRL_X_THESAURUS:
4239 ins_compl_dictionaries(
Bram Moolenaar0b238792006-03-02 22:49:12 +00004240 dict != NULL ? dict
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 : (type == CTRL_X_THESAURUS
4242 ? (*curbuf->b_p_tsr == NUL
4243 ? p_tsr
4244 : curbuf->b_p_tsr)
4245 : (*curbuf->b_p_dict == NUL
4246 ? p_dict
4247 : curbuf->b_p_dict)),
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004248 compl_pattern,
Bram Moolenaar0b238792006-03-02 22:49:12 +00004249 dict != NULL ? dict_f
4250 : 0, type == CTRL_X_THESAURUS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 dict = NULL;
4252 break;
4253
4254 case CTRL_X_TAGS:
4255 /* set p_ic according to p_ic, p_scs and pat for find_tags(). */
4256 save_p_ic = p_ic;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004257 p_ic = ignorecase(compl_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01004259 /* Find up to TAG_MANY matches. Avoids that an enormous number
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004260 * of matches is found when compl_pattern is empty */
4261 if (find_tags(compl_pattern, &num_matches, &matches,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 TAG_REGEXP | TAG_NAMES | TAG_NOIC |
4263 TAG_INS_COMP | (ctrl_x_mode ? TAG_VERBOSE : 0),
4264 TAG_MANY, curbuf->b_ffname) == OK && num_matches > 0)
4265 {
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004266 ins_compl_add_matches(num_matches, matches, p_ic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 }
4268 p_ic = save_p_ic;
4269 break;
4270
4271 case CTRL_X_FILES:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004272 if (expand_wildcards(1, &compl_pattern, &num_matches, &matches,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 EW_FILE|EW_DIR|EW_ADDSLASH|EW_SILENT) == OK)
4274 {
4275
4276 /* May change home directory back to "~". */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004277 tilde_replace(compl_pattern, num_matches, matches);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004278 ins_compl_add_matches(num_matches, matches,
4279#ifdef CASE_INSENSITIVE_FILENAME
4280 TRUE
4281#else
4282 FALSE
4283#endif
4284 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 }
4286 break;
4287
4288 case CTRL_X_CMDLINE:
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004289 if (expand_cmdline(&compl_xp, compl_pattern,
4290 (int)STRLEN(compl_pattern),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 &num_matches, &matches) == EXPAND_OK)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004292 ins_compl_add_matches(num_matches, matches, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 break;
4294
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004295#ifdef FEAT_COMPL_FUNC
4296 case CTRL_X_FUNCTION:
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004297 case CTRL_X_OMNI:
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004298 expand_by_function(type, compl_pattern);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00004299 break;
4300#endif
4301
Bram Moolenaar488c6512005-08-11 20:09:58 +00004302 case CTRL_X_SPELL:
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00004303#ifdef FEAT_SPELL
Bram Moolenaar488c6512005-08-11 20:09:58 +00004304 num_matches = expand_spelling(first_match_pos.lnum,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004305 compl_pattern, &matches);
Bram Moolenaar488c6512005-08-11 20:09:58 +00004306 if (num_matches > 0)
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004307 ins_compl_add_matches(num_matches, matches, p_ic);
Bram Moolenaar488c6512005-08-11 20:09:58 +00004308#endif
4309 break;
4310
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 default: /* normal ^P/^N and ^X^L */
4312 /*
4313 * If 'infercase' is set, don't use 'smartcase' here
4314 */
4315 save_p_scs = p_scs;
4316 if (ins_buf->b_p_inf)
4317 p_scs = FALSE;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004318
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 /* buffers other than curbuf are scanned from the beginning or the
4320 * end but never from the middle, thus setting nowrapscan in this
4321 * buffers is a good idea, on the other hand, we always set
4322 * wrapscan for curbuf to avoid missing matches -- Acevedo,Webb */
4323 save_p_ws = p_ws;
4324 if (ins_buf != curbuf)
4325 p_ws = FALSE;
4326 else if (*e_cpt == '.')
4327 p_ws = TRUE;
4328 for (;;)
4329 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00004330 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004332 ++msg_silent; /* Don't want messages for wrapscan. */
4333
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004334 /* ctrl_x_mode == CTRL_X_WHOLE_LINE || word-wise search that
4335 * has added a word that was at the beginning of the line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 if ( ctrl_x_mode == CTRL_X_WHOLE_LINE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004337 || (compl_cont_status & CONT_SOL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 found_new_match = search_for_exact_line(ins_buf, pos,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004339 compl_direction, compl_pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 else
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004341 found_new_match = searchit(NULL, ins_buf, pos,
4342 compl_direction,
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004343 compl_pattern, 1L, SEARCH_KEEP + SEARCH_NFMSG,
Bram Moolenaar76929292008-01-06 19:07:36 +00004344 RE_LAST, (linenr_T)0, NULL);
Bram Moolenaardf40adf2006-10-14 12:32:39 +00004345 --msg_silent;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004346 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004348 /* set "compl_started" even on fail */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004349 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 first_match_pos = *pos;
4351 last_match_pos = *pos;
4352 }
4353 else if (first_match_pos.lnum == last_match_pos.lnum
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004354 && first_match_pos.col == last_match_pos.col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 found_new_match = FAIL;
4356 if (found_new_match == FAIL)
4357 {
4358 if (ins_buf == curbuf)
4359 found_all = TRUE;
4360 break;
4361 }
4362
4363 /* when ADDING, the text before the cursor matches, skip it */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004364 if ( (compl_cont_status & CONT_ADDING) && ins_buf == curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 && ini->lnum == pos->lnum
4366 && ini->col == pos->col)
4367 continue;
4368 ptr = ml_get_buf(ins_buf, pos->lnum, FALSE) + pos->col;
4369 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
4370 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004371 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 {
4373 if (pos->lnum >= ins_buf->b_ml.ml_line_count)
4374 continue;
4375 ptr = ml_get_buf(ins_buf, pos->lnum + 1, FALSE);
4376 if (!p_paste)
4377 ptr = skipwhite(ptr);
4378 }
4379 len = (int)STRLEN(ptr);
4380 }
4381 else
4382 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004383 char_u *tmp_ptr = ptr;
4384
4385 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004387 tmp_ptr += compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 /* Skip if already inside a word. */
4389 if (vim_iswordp(tmp_ptr))
4390 continue;
4391 /* Find start of next word. */
4392 tmp_ptr = find_word_start(tmp_ptr);
4393 }
4394 /* Find end of this word. */
4395 tmp_ptr = find_word_end(tmp_ptr);
4396 len = (int)(tmp_ptr - ptr);
4397
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004398 if ((compl_cont_status & CONT_ADDING)
4399 && len == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 {
4401 if (pos->lnum < ins_buf->b_ml.ml_line_count)
4402 {
4403 /* Try next line, if any. the new word will be
4404 * "join" as if the normal command "J" was used.
4405 * IOSIZE is always greater than
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004406 * compl_length, so the next STRNCPY always
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 * works -- Acevedo */
4408 STRNCPY(IObuff, ptr, len);
4409 ptr = ml_get_buf(ins_buf, pos->lnum + 1, FALSE);
4410 tmp_ptr = ptr = skipwhite(ptr);
4411 /* Find start of next word. */
4412 tmp_ptr = find_word_start(tmp_ptr);
4413 /* Find end of next word. */
4414 tmp_ptr = find_word_end(tmp_ptr);
4415 if (tmp_ptr > ptr)
4416 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004417 if (*ptr != ')' && IObuff[len - 1] != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004419 if (IObuff[len - 1] != ' ')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 IObuff[len++] = ' ';
4421 /* IObuf =~ "\k.* ", thus len >= 2 */
4422 if (p_js
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004423 && (IObuff[len - 2] == '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 || (vim_strchr(p_cpo, CPO_JOINSP)
4425 == NULL
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004426 && (IObuff[len - 2] == '?'
4427 || IObuff[len - 2] == '!'))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 IObuff[len++] = ' ';
4429 }
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01004430 /* copy as much as possible of the new word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 if (tmp_ptr - ptr >= IOSIZE - len)
4432 tmp_ptr = ptr + IOSIZE - len - 1;
4433 STRNCPY(IObuff + len, ptr, tmp_ptr - ptr);
4434 len += (int)(tmp_ptr - ptr);
Bram Moolenaar572cb562005-08-05 21:35:02 +00004435 flags |= CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 }
4437 IObuff[len] = NUL;
4438 ptr = IObuff;
4439 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004440 if (len == compl_length)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 continue;
4442 }
4443 }
Bram Moolenaare8c3a142006-08-29 14:30:35 +00004444 if (ins_compl_add_infercase(ptr, len, p_ic,
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004445 ins_buf == curbuf ? NULL : ins_buf->b_sfname,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004446 0, flags) != NOTDONE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 {
4448 found_new_match = OK;
4449 break;
4450 }
4451 }
4452 p_scs = save_p_scs;
4453 p_ws = save_p_ws;
4454 }
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004455
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004456 /* check if compl_curr_match has changed, (e.g. other type of
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00004457 * expansion added something) */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004458 if (type != 0 && compl_curr_match != old_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 found_new_match = OK;
4460
4461 /* break the loop for specialized modes (use 'complete' just for the
4462 * generic ctrl_x_mode == 0) or when we've found a new match */
4463 if ((ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004464 || found_new_match != FAIL)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004465 {
4466 if (got_int)
4467 break;
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004468 /* Fill the popup menu as soon as possible. */
Bram Moolenaar5948a572006-10-03 13:49:29 +00004469 if (type != -1)
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004470 ins_compl_check_keys(0);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004471
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004472 if ((ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE)
4473 || compl_interrupted)
4474 break;
4475 compl_started = TRUE;
4476 }
4477 else
4478 {
4479 /* Mark a buffer scanned when it has been scanned completely */
4480 if (type == 0 || type == CTRL_X_PATH_PATTERNS)
4481 ins_buf->b_scanned = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004483 compl_started = FALSE;
4484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004486 compl_started = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487
4488 if ((ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_WHOLE_LINE)
4489 && *e_cpt == NUL) /* Got to end of 'complete' */
4490 found_new_match = FAIL;
4491
4492 i = -1; /* total of matches, unknown */
4493 if (found_new_match == FAIL
4494 || (ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE))
4495 i = ins_compl_make_cyclic();
4496
4497 /* If several matches were added (FORWARD) or the search failed and has
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004498 * just been made cyclic then we have to move compl_curr_match to the next
4499 * or previous entry (if any) -- Acevedo */
Bram Moolenaara94bc432006-03-10 21:42:59 +00004500 compl_curr_match = compl_direction == FORWARD ? old_match->cp_next
4501 : old_match->cp_prev;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004502 if (compl_curr_match == NULL)
4503 compl_curr_match = old_match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 return i;
4505}
4506
4507/* Delete the old text being completed. */
4508 static void
4509ins_compl_delete()
4510{
4511 int i;
4512
4513 /*
4514 * In insert mode: Delete the typed part.
4515 * In replace mode: Put the old characters back, if any.
4516 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004517 i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 backspace_until_column(i);
4519 changed_cline_bef_curs();
4520}
4521
4522/* Insert the new text being completed. */
4523 static void
4524ins_compl_insert()
4525{
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00004526 ins_bytes(compl_shown_match->cp_str + ins_compl_len());
Bram Moolenaardf1bdc92006-02-23 21:32:16 +00004527 if (compl_shown_match->cp_flags & ORIGINAL_TEXT)
4528 compl_used_match = FALSE;
4529 else
4530 compl_used_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531}
4532
4533/*
4534 * Fill in the next completion in the current direction.
Bram Moolenaar572cb562005-08-05 21:35:02 +00004535 * If "allow_get_expansion" is TRUE, then we may call ins_compl_get_exp() to
4536 * get more completions. If it is FALSE, then we just do nothing when there
4537 * are no more completions in a given direction. The latter case is used when
4538 * we are still in the middle of finding completions, to allow browsing
4539 * through the ones found so far.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 * Return the total number of matches, or -1 if still unknown -- webb.
4541 *
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004542 * compl_curr_match is currently being used by ins_compl_get_exp(), so we use
4543 * compl_shown_match here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 *
4545 * Note that this function may be called recursively once only. First with
Bram Moolenaar572cb562005-08-05 21:35:02 +00004546 * "allow_get_expansion" TRUE, which calls ins_compl_get_exp(), which in turn
4547 * calls this function with "allow_get_expansion" FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 */
4549 static int
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004550ins_compl_next(allow_get_expansion, count, insert_match)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 int allow_get_expansion;
Bram Moolenaare3226be2005-12-18 22:10:00 +00004552 int count; /* repeat completion this many times; should
4553 be at least 1 */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004554 int insert_match; /* Insert the newly selected match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555{
4556 int num_matches = -1;
4557 int i;
Bram Moolenaare3226be2005-12-18 22:10:00 +00004558 int todo = count;
Bram Moolenaara6557602006-02-04 22:43:20 +00004559 compl_T *found_compl = NULL;
4560 int found_end = FALSE;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004561 int advance;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562
Bram Moolenaar6d6cec82012-01-20 14:32:27 +01004563 /* When user complete function return -1 for findstart which is next
4564 * time of 'always', compl_shown_match become NULL. */
4565 if (compl_shown_match == NULL)
4566 return -1;
4567
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004568 if (compl_leader != NULL
4569 && (compl_shown_match->cp_flags & ORIGINAL_TEXT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 {
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004571 /* Set "compl_shown_match" to the actually shown match, it may differ
4572 * when "compl_leader" is used to omit some of the matches. */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004573 while (!ins_compl_equal(compl_shown_match,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004574 compl_leader, (int)STRLEN(compl_leader))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004575 && compl_shown_match->cp_next != NULL
4576 && compl_shown_match->cp_next != compl_first_match)
4577 compl_shown_match = compl_shown_match->cp_next;
Bram Moolenaar0440ca32006-05-13 13:24:33 +00004578
4579 /* If we didn't find it searching forward, and compl_shows_dir is
4580 * backward, find the last match. */
4581 if (compl_shows_dir == BACKWARD
4582 && !ins_compl_equal(compl_shown_match,
4583 compl_leader, (int)STRLEN(compl_leader))
4584 && (compl_shown_match->cp_next == NULL
4585 || compl_shown_match->cp_next == compl_first_match))
4586 {
4587 while (!ins_compl_equal(compl_shown_match,
4588 compl_leader, (int)STRLEN(compl_leader))
4589 && compl_shown_match->cp_prev != NULL
4590 && compl_shown_match->cp_prev != compl_first_match)
4591 compl_shown_match = compl_shown_match->cp_prev;
4592 }
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004593 }
4594
4595 if (allow_get_expansion && insert_match
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004596 && (!(compl_get_longest || compl_restarting) || compl_used_match))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 /* Delete old text to be replaced */
4598 ins_compl_delete();
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004599
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004600 /* When finding the longest common text we stick at the original text,
4601 * don't let CTRL-N or CTRL-P move to the first match. */
4602 advance = count != 1 || !allow_get_expansion || !compl_get_longest;
4603
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004604 /* When restarting the search don't insert the first match either. */
4605 if (compl_restarting)
4606 {
4607 advance = FALSE;
4608 compl_restarting = FALSE;
4609 }
4610
Bram Moolenaare3226be2005-12-18 22:10:00 +00004611 /* Repeat this for when <PageUp> or <PageDown> is typed. But don't wrap
4612 * around. */
4613 while (--todo >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 {
Bram Moolenaare3226be2005-12-18 22:10:00 +00004615 if (compl_shows_dir == FORWARD && compl_shown_match->cp_next != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 {
Bram Moolenaare3226be2005-12-18 22:10:00 +00004617 compl_shown_match = compl_shown_match->cp_next;
Bram Moolenaara6557602006-02-04 22:43:20 +00004618 found_end = (compl_first_match != NULL
4619 && (compl_shown_match->cp_next == compl_first_match
4620 || compl_shown_match == compl_first_match));
Bram Moolenaare3226be2005-12-18 22:10:00 +00004621 }
4622 else if (compl_shows_dir == BACKWARD
4623 && compl_shown_match->cp_prev != NULL)
4624 {
Bram Moolenaara6557602006-02-04 22:43:20 +00004625 found_end = (compl_shown_match == compl_first_match);
Bram Moolenaare3226be2005-12-18 22:10:00 +00004626 compl_shown_match = compl_shown_match->cp_prev;
Bram Moolenaara6557602006-02-04 22:43:20 +00004627 found_end |= (compl_shown_match == compl_first_match);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 }
4629 else
Bram Moolenaare3226be2005-12-18 22:10:00 +00004630 {
Bram Moolenaara260a972006-06-23 19:36:29 +00004631 if (!allow_get_expansion)
4632 {
4633 if (advance)
4634 {
4635 if (compl_shows_dir == BACKWARD)
4636 compl_pending -= todo + 1;
4637 else
4638 compl_pending += todo + 1;
4639 }
4640 return -1;
4641 }
4642
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004643 if (advance)
4644 {
4645 if (compl_shows_dir == BACKWARD)
4646 --compl_pending;
4647 else
4648 ++compl_pending;
4649 }
Bram Moolenaara6557602006-02-04 22:43:20 +00004650
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00004651 /* Find matches. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004652 num_matches = ins_compl_get_exp(&compl_startpos);
Bram Moolenaara260a972006-06-23 19:36:29 +00004653
4654 /* handle any pending completions */
4655 while (compl_pending != 0 && compl_direction == compl_shows_dir
Bram Moolenaarc1e37902006-04-18 21:55:01 +00004656 && advance)
Bram Moolenaara260a972006-06-23 19:36:29 +00004657 {
4658 if (compl_pending > 0 && compl_shown_match->cp_next != NULL)
4659 {
4660 compl_shown_match = compl_shown_match->cp_next;
4661 --compl_pending;
4662 }
4663 if (compl_pending < 0 && compl_shown_match->cp_prev != NULL)
4664 {
4665 compl_shown_match = compl_shown_match->cp_prev;
4666 ++compl_pending;
4667 }
4668 else
4669 break;
4670 }
Bram Moolenaara6557602006-02-04 22:43:20 +00004671 found_end = FALSE;
4672 }
4673 if ((compl_shown_match->cp_flags & ORIGINAL_TEXT) == 0
4674 && compl_leader != NULL
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004675 && !ins_compl_equal(compl_shown_match,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004676 compl_leader, (int)STRLEN(compl_leader)))
Bram Moolenaara6557602006-02-04 22:43:20 +00004677 ++todo;
4678 else
4679 /* Remember a matching item. */
4680 found_compl = compl_shown_match;
4681
4682 /* Stop at the end of the list when we found a usable match. */
4683 if (found_end)
4684 {
4685 if (found_compl != NULL)
4686 {
4687 compl_shown_match = found_compl;
4688 break;
4689 }
4690 todo = 1; /* use first usable match after wrapping around */
Bram Moolenaare3226be2005-12-18 22:10:00 +00004691 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 }
4693
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004694 /* Insert the text of the new completion, or the compl_leader. */
4695 if (insert_match)
4696 {
4697 if (!compl_get_longest || compl_used_match)
4698 ins_compl_insert();
4699 else
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00004700 ins_bytes(compl_leader + ins_compl_len());
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004701 }
4702 else
4703 compl_used_match = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704
4705 if (!allow_get_expansion)
4706 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004707 /* may undisplay the popup menu first */
4708 ins_compl_upd_pum();
4709
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004710 /* redraw to show the user what was inserted */
4711 update_screen(0);
4712
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004713 /* display the updated popup menu */
4714 ins_compl_show_pum();
Bram Moolenaar14716812006-05-04 21:54:08 +00004715#ifdef FEAT_GUI
4716 if (gui.in_use)
4717 {
4718 /* Show the cursor after the match, not after the redrawn text. */
4719 setcursor();
4720 out_flush();
4721 gui_update_cursor(FALSE, FALSE);
4722 }
4723#endif
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004724
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 /* Delete old text to be replaced, since we're still searching and
4726 * don't want to match ourselves! */
4727 ins_compl_delete();
4728 }
4729
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004730 /* Enter will select a match when the match wasn't inserted and the popup
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00004731 * menu is visible. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004732 compl_enter_selects = !insert_match && compl_match_array != NULL;
4733
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 /*
4735 * Show the file name for the match (if any)
4736 * Truncate the file name to avoid a wait for return.
4737 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00004738 if (compl_shown_match->cp_fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 {
4740 STRCPY(IObuff, "match in file ");
Bram Moolenaar572cb562005-08-05 21:35:02 +00004741 i = (vim_strsize(compl_shown_match->cp_fname) + 16) - sc_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 if (i <= 0)
4743 i = 0;
4744 else
4745 STRCAT(IObuff, "<");
Bram Moolenaar572cb562005-08-05 21:35:02 +00004746 STRCAT(IObuff, compl_shown_match->cp_fname + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 msg(IObuff);
4748 redraw_cmdline = FALSE; /* don't overwrite! */
4749 }
4750
4751 return num_matches;
4752}
4753
4754/*
4755 * Call this while finding completions, to check whether the user has hit a key
4756 * that should change the currently displayed completion, or exit completion
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004757 * mode. Also, when compl_pending is not zero, show a completion as soon as
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 * possible. -- webb
Bram Moolenaar572cb562005-08-05 21:35:02 +00004759 * "frequency" specifies out of how many calls we actually check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 */
4761 void
Bram Moolenaar572cb562005-08-05 21:35:02 +00004762ins_compl_check_keys(frequency)
4763 int frequency;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764{
4765 static int count = 0;
4766
4767 int c;
4768
4769 /* Don't check when reading keys from a script. That would break the test
4770 * scripts */
4771 if (using_script())
4772 return;
4773
4774 /* Only do this at regular intervals */
Bram Moolenaar572cb562005-08-05 21:35:02 +00004775 if (++count < frequency)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 return;
4777 count = 0;
4778
Bram Moolenaara260a972006-06-23 19:36:29 +00004779 /* Check for a typed key. Do use mappings, otherwise vim_is_ctrl_x_key()
4780 * can't do its work correctly. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 c = vpeekc_any();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 if (c != NUL)
4783 {
4784 if (vim_is_ctrl_x_key(c) && c != Ctrl_X && c != Ctrl_R)
4785 {
4786 c = safe_vgetc(); /* Eat the character */
Bram Moolenaare3226be2005-12-18 22:10:00 +00004787 compl_shows_dir = ins_compl_key2dir(c);
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004788 (void)ins_compl_next(FALSE, ins_compl_key2count(c),
4789 c != K_UP && c != K_DOWN);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 }
Bram Moolenaara260a972006-06-23 19:36:29 +00004791 else
4792 {
4793 /* Need to get the character to have KeyTyped set. We'll put it
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004794 * back with vungetc() below. But skip K_IGNORE. */
Bram Moolenaara260a972006-06-23 19:36:29 +00004795 c = safe_vgetc();
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004796 if (c != K_IGNORE)
4797 {
4798 /* Don't interrupt completion when the character wasn't typed,
4799 * e.g., when doing @q to replay keys. */
4800 if (c != Ctrl_R && KeyTyped)
4801 compl_interrupted = TRUE;
Bram Moolenaara260a972006-06-23 19:36:29 +00004802
Bram Moolenaard4e20a72008-01-22 16:50:03 +00004803 vungetc(c);
4804 }
Bram Moolenaara260a972006-06-23 19:36:29 +00004805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004807 if (compl_pending != 0 && !got_int)
Bram Moolenaara260a972006-06-23 19:36:29 +00004808 {
4809 int todo = compl_pending > 0 ? compl_pending : -compl_pending;
4810
4811 compl_pending = 0;
4812 (void)ins_compl_next(FALSE, todo, TRUE);
4813 }
Bram Moolenaare3226be2005-12-18 22:10:00 +00004814}
4815
4816/*
4817 * Decide the direction of Insert mode complete from the key typed.
4818 * Returns BACKWARD or FORWARD.
4819 */
4820 static int
4821ins_compl_key2dir(c)
4822 int c;
4823{
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004824 if (c == Ctrl_P || c == Ctrl_L
4825 || (pum_visible() && (c == K_PAGEUP || c == K_KPAGEUP
4826 || c == K_S_UP || c == K_UP)))
Bram Moolenaare3226be2005-12-18 22:10:00 +00004827 return BACKWARD;
4828 return FORWARD;
4829}
4830
4831/*
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004832 * Return TRUE for keys that are used for completion only when the popup menu
4833 * is visible.
4834 */
4835 static int
4836ins_compl_pum_key(c)
4837 int c;
4838{
4839 return pum_visible() && (c == K_PAGEUP || c == K_KPAGEUP || c == K_S_UP
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004840 || c == K_PAGEDOWN || c == K_KPAGEDOWN || c == K_S_DOWN
4841 || c == K_UP || c == K_DOWN);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004842}
4843
4844/*
Bram Moolenaare3226be2005-12-18 22:10:00 +00004845 * Decide the number of completions to move forward.
4846 * Returns 1 for most keys, height of the popup menu for page-up/down keys.
4847 */
4848 static int
4849ins_compl_key2count(c)
4850 int c;
4851{
4852 int h;
4853
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004854 if (ins_compl_pum_key(c) && c != K_UP && c != K_DOWN)
Bram Moolenaare3226be2005-12-18 22:10:00 +00004855 {
4856 h = pum_get_height();
4857 if (h > 3)
4858 h -= 2; /* keep some context */
4859 return h;
4860 }
4861 return 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862}
4863
4864/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004865 * Return TRUE if completion with "c" should insert the match, FALSE if only
4866 * to change the currently selected completion.
4867 */
4868 static int
4869ins_compl_use_match(c)
4870 int c;
4871{
4872 switch (c)
4873 {
4874 case K_UP:
4875 case K_DOWN:
4876 case K_PAGEDOWN:
4877 case K_KPAGEDOWN:
4878 case K_S_DOWN:
4879 case K_PAGEUP:
4880 case K_KPAGEUP:
4881 case K_S_UP:
4882 return FALSE;
4883 }
4884 return TRUE;
4885}
4886
4887/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 * Do Insert mode completion.
4889 * Called when character "c" was typed, which has a meaning for completion.
4890 * Returns OK if completion was done, FAIL if something failed (out of mem).
4891 */
4892 static int
4893ins_complete(c)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004894 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895{
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004896 char_u *line;
4897 int startcol = 0; /* column where searched text starts */
4898 colnr_T curs_col; /* cursor column */
4899 int n;
Bram Moolenaarbe678f82010-03-10 14:15:54 +01004900 int save_w_wrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901
Bram Moolenaare3226be2005-12-18 22:10:00 +00004902 compl_direction = ins_compl_key2dir(c);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004903 if (!compl_started)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 {
4905 /* First time we hit ^N or ^P (in a row, I mean) */
4906
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 did_ai = FALSE;
4908#ifdef FEAT_SMARTINDENT
4909 did_si = FALSE;
4910 can_si = FALSE;
4911 can_si_back = FALSE;
4912#endif
4913 if (stop_arrow() == FAIL)
4914 return FAIL;
4915
4916 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004917 curs_col = curwin->w_cursor.col;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004918 compl_pending = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919
Bram Moolenaar711d5b52007-10-19 18:40:51 +00004920 /* If this same ctrl_x_mode has been interrupted use the text from
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004921 * "compl_startpos" to the cursor as a pattern to add a new word
4922 * instead of expand the one before the cursor, in word-wise if
Bram Moolenaar711d5b52007-10-19 18:40:51 +00004923 * "compl_startpos" is not in the same line as the cursor then fix it
4924 * (the line has been split because it was longer than 'tw'). if SOL
4925 * is set then skip the previous pattern, a word at the beginning of
4926 * the line has been inserted, we'll look for that -- Acevedo. */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00004927 if ((compl_cont_status & CONT_INTRPT) == CONT_INTRPT
4928 && compl_cont_mode == ctrl_x_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 {
4930 /*
4931 * it is a continued search
4932 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004933 compl_cont_status &= ~CONT_INTRPT; /* remove INTRPT */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 if (ctrl_x_mode == 0 || ctrl_x_mode == CTRL_X_PATH_PATTERNS
4935 || ctrl_x_mode == CTRL_X_PATH_DEFINES)
4936 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004937 if (compl_startpos.lnum != curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004939 /* line (probably) wrapped, set compl_startpos to the
4940 * first non_blank in the line, if it is not a wordchar
4941 * include it to get a better pattern, but then we don't
4942 * want the "\\<" prefix, check it bellow */
4943 compl_col = (colnr_T)(skipwhite(line) - line);
4944 compl_startpos.col = compl_col;
4945 compl_startpos.lnum = curwin->w_cursor.lnum;
4946 compl_cont_status &= ~CONT_SOL; /* clear SOL if present */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 }
4948 else
4949 {
4950 /* S_IPOS was set when we inserted a word that was at the
4951 * beginning of the line, which means that we'll go to SOL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004952 * mode but first we need to redefine compl_startpos */
4953 if (compl_cont_status & CONT_S_IPOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004955 compl_cont_status |= CONT_SOL;
4956 compl_startpos.col = (colnr_T)(skipwhite(
4957 line + compl_length
4958 + compl_startpos.col) - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004960 compl_col = compl_startpos.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004962 compl_length = curwin->w_cursor.col - (int)compl_col;
Bram Moolenaare344bea2005-09-01 20:46:49 +00004963 /* IObuff is used to add a "word from the next line" would we
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00004964 * have enough space? just being paranoid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965#define MIN_SPACE 75
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004966 if (compl_length > (IOSIZE - MIN_SPACE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004968 compl_cont_status &= ~CONT_SOL;
4969 compl_length = (IOSIZE - MIN_SPACE);
4970 compl_col = curwin->w_cursor.col - compl_length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004972 compl_cont_status |= CONT_ADDING | CONT_N_ADDS;
4973 if (compl_length < 1)
4974 compl_cont_status &= CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 }
4976 else if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004977 compl_cont_status = CONT_ADDING | CONT_N_ADDS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004979 compl_cont_status = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 }
4981 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004982 compl_cont_status &= CONT_LOCAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004984 if (!(compl_cont_status & CONT_ADDING)) /* normal expansion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004986 compl_cont_mode = ctrl_x_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 if (ctrl_x_mode != 0) /* Remove LOCAL if ctrl_x_mode != 0 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004988 compl_cont_status = 0;
4989 compl_cont_status |= CONT_N_ADDS;
4990 compl_startpos = curwin->w_cursor;
4991 startcol = (int)curs_col;
4992 compl_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 }
4994
4995 /* Work out completion pattern and original text -- webb */
4996 if (ctrl_x_mode == 0 || (ctrl_x_mode & CTRL_X_WANT_IDENT))
4997 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00004998 if ((compl_cont_status & CONT_SOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 || ctrl_x_mode == CTRL_X_PATH_DEFINES)
5000 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005001 if (!(compl_cont_status & CONT_ADDING))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005003 while (--startcol >= 0 && vim_isIDc(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005005 compl_col += ++startcol;
5006 compl_length = curs_col - startcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 }
5008 if (p_ic)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005009 compl_pattern = str_foldcase(line + compl_col,
5010 compl_length, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005012 compl_pattern = vim_strnsave(line + compl_col,
5013 compl_length);
5014 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 return FAIL;
5016 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005017 else if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 {
5019 char_u *prefix = (char_u *)"\\<";
5020
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005021 /* we need up to 2 extra chars for the prefix */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005022 compl_pattern = alloc(quote_meta(NULL, line + compl_col,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005023 compl_length) + 2);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005024 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005026 if (!vim_iswordp(line + compl_col)
5027 || (compl_col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 && (
5029#ifdef FEAT_MBYTE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005030 vim_iswordp(mb_prevptr(line, line + compl_col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005032 vim_iswordc(line[compl_col - 1])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033#endif
5034 )))
5035 prefix = (char_u *)"";
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005036 STRCPY((char *)compl_pattern, prefix);
5037 (void)quote_meta(compl_pattern + STRLEN(prefix),
5038 line + compl_col, compl_length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005040 else if (--startcol < 0 ||
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041#ifdef FEAT_MBYTE
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005042 !vim_iswordp(mb_prevptr(line, line + startcol + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043#else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005044 !vim_iswordc(line[startcol])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045#endif
5046 )
5047 {
5048 /* Match any word of at least two chars */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005049 compl_pattern = vim_strsave((char_u *)"\\<\\k\\k");
5050 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005052 compl_col += curs_col;
5053 compl_length = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 }
5055 else
5056 {
5057#ifdef FEAT_MBYTE
5058 /* Search the point of change class of multibyte character
5059 * or not a word single byte character backward. */
5060 if (has_mbyte)
5061 {
5062 int base_class;
5063 int head_off;
5064
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005065 startcol -= (*mb_head_off)(line, line + startcol);
5066 base_class = mb_get_class(line + startcol);
5067 while (--startcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005069 head_off = (*mb_head_off)(line, line + startcol);
5070 if (base_class != mb_get_class(line + startcol
5071 - head_off))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 break;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005073 startcol -= head_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 }
5075 }
5076 else
5077#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005078 while (--startcol >= 0 && vim_iswordc(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005080 compl_col += ++startcol;
5081 compl_length = (int)curs_col - startcol;
5082 if (compl_length == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 {
5084 /* Only match word with at least two chars -- webb
5085 * there's no need to call quote_meta,
5086 * alloc(7) is enough -- Acevedo
5087 */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005088 compl_pattern = alloc(7);
5089 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005091 STRCPY((char *)compl_pattern, "\\<");
5092 (void)quote_meta(compl_pattern + 2, line + compl_col, 1);
5093 STRCAT((char *)compl_pattern, "\\k");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 }
5095 else
5096 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005097 compl_pattern = alloc(quote_meta(NULL, line + compl_col,
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005098 compl_length) + 2);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005099 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005101 STRCPY((char *)compl_pattern, "\\<");
5102 (void)quote_meta(compl_pattern + 2, line + compl_col,
5103 compl_length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 }
5105 }
5106 }
5107 else if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
5108 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005109 compl_col = (colnr_T)(skipwhite(line) - line);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005110 compl_length = (int)curs_col - (int)compl_col;
5111 if (compl_length < 0) /* cursor in indent: empty pattern */
5112 compl_length = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 if (p_ic)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005114 compl_pattern = str_foldcase(line + compl_col, compl_length,
5115 NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005117 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5118 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 return FAIL;
5120 }
5121 else if (ctrl_x_mode == CTRL_X_FILES)
5122 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005123 while (--startcol >= 0 && vim_isfilec(line[startcol]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 ;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005125 compl_col += ++startcol;
5126 compl_length = (int)curs_col - startcol;
5127 compl_pattern = addstar(line + compl_col, compl_length,
5128 EXPAND_FILES);
5129 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 return FAIL;
5131 }
5132 else if (ctrl_x_mode == CTRL_X_CMDLINE)
5133 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005134 compl_pattern = vim_strnsave(line, curs_col);
5135 if (compl_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 return FAIL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005137 set_cmd_context(&compl_xp, compl_pattern,
5138 (int)STRLEN(compl_pattern), curs_col);
5139 if (compl_xp.xp_context == EXPAND_UNSUCCESSFUL
5140 || compl_xp.xp_context == EXPAND_NOTHING)
Bram Moolenaarf83c5c02006-08-16 19:24:22 +00005141 /* No completion possible, use an empty pattern to get a
5142 * "pattern not found" message. */
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005143 compl_col = curs_col;
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005144 else
Bram Moolenaarf83c5c02006-08-16 19:24:22 +00005145 compl_col = (int)(compl_xp.xp_pattern - compl_pattern);
5146 compl_length = curs_col - compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 }
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005148 else if (ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005149 {
Bram Moolenaare344bea2005-09-01 20:46:49 +00005150#ifdef FEAT_COMPL_FUNC
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005151 /*
Bram Moolenaare344bea2005-09-01 20:46:49 +00005152 * Call user defined function 'completefunc' with "a:findstart"
5153 * set to 1 to obtain the length of text to use for completion.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005154 */
Bram Moolenaare344bea2005-09-01 20:46:49 +00005155 char_u *args[2];
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005156 int col;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005157 char_u *funcname;
5158 pos_T pos;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005159 win_T *curwin_save;
5160 buf_T *curbuf_save;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005161
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005162 /* Call 'completefunc' or 'omnifunc' and get pattern length as a
Bram Moolenaare344bea2005-09-01 20:46:49 +00005163 * string */
5164 funcname = ctrl_x_mode == CTRL_X_FUNCTION
5165 ? curbuf->b_p_cfu : curbuf->b_p_ofu;
5166 if (*funcname == NUL)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005167 {
5168 EMSG2(_(e_notset), ctrl_x_mode == CTRL_X_FUNCTION
5169 ? "completefunc" : "omnifunc");
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005170 return FAIL;
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005171 }
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005172
5173 args[0] = (char_u *)"1";
Bram Moolenaare344bea2005-09-01 20:46:49 +00005174 args[1] = NULL;
5175 pos = curwin->w_cursor;
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005176 curwin_save = curwin;
5177 curbuf_save = curbuf;
Bram Moolenaare344bea2005-09-01 20:46:49 +00005178 col = call_func_retnr(funcname, 2, args, FALSE);
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005179 if (curwin_save != curwin || curbuf_save != curbuf)
5180 {
5181 EMSG(_(e_complwin));
5182 return FAIL;
5183 }
Bram Moolenaare344bea2005-09-01 20:46:49 +00005184 curwin->w_cursor = pos; /* restore the cursor position */
Bram Moolenaar37dd0182010-11-10 16:54:20 +01005185 check_cursor();
5186 if (!equalpos(curwin->w_cursor, pos))
5187 {
5188 EMSG(_(e_compldel));
5189 return FAIL;
5190 }
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005191
Bram Moolenaar6110a002012-01-26 18:58:38 +01005192 /* Return value -2 means the user complete function wants to
5193 * cancel the complete without an error. */
5194 if (col == -2)
5195 return FAIL;
5196
Bram Moolenaar82139082011-09-14 16:52:09 +02005197 /*
5198 * Reset extended parameters of completion, when start new
5199 * completion.
5200 */
5201 compl_opt_refresh_always = FALSE;
5202
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005203 if (col < 0)
Bram Moolenaarf75a9632005-09-13 21:20:47 +00005204 col = curs_col;
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005205 compl_col = col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005206 if (compl_col > curs_col)
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005207 compl_col = curs_col;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005208
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005209 /* Setup variables for completion. Need to obtain "line" again,
5210 * it may have become invalid. */
5211 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar5a8684e2005-07-30 22:43:24 +00005212 compl_length = curs_col - compl_col;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005213 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5214 if (compl_pattern == NULL)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005215#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005216 return FAIL;
5217 }
Bram Moolenaar488c6512005-08-11 20:09:58 +00005218 else if (ctrl_x_mode == CTRL_X_SPELL)
5219 {
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00005220#ifdef FEAT_SPELL
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00005221 if (spell_bad_len > 0)
5222 compl_col = curs_col - spell_bad_len;
5223 else
5224 compl_col = spell_word_start(startcol);
5225 if (compl_col >= (colnr_T)startcol)
Bram Moolenaarbe46a1e2006-06-22 15:13:21 +00005226 {
5227 compl_length = 0;
5228 compl_col = curs_col;
5229 }
5230 else
5231 {
5232 spell_expand_check_cap(compl_col);
5233 compl_length = (int)curs_col - compl_col;
5234 }
Bram Moolenaare2f98b92006-03-29 21:18:24 +00005235 /* Need to obtain "line" again, it may have become invalid. */
5236 line = ml_get(curwin->w_cursor.lnum);
Bram Moolenaar488c6512005-08-11 20:09:58 +00005237 compl_pattern = vim_strnsave(line + compl_col, compl_length);
5238 if (compl_pattern == NULL)
5239#endif
5240 return FAIL;
5241 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005242 else
5243 {
5244 EMSG2(_(e_intern2), "ins_complete()");
5245 return FAIL;
5246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005248 if (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 {
5250 edit_submode_pre = (char_u *)_(" Adding");
5251 if (ctrl_x_mode == CTRL_X_WHOLE_LINE)
5252 {
5253 /* Insert a new line, keep indentation but ignore 'comments' */
5254#ifdef FEAT_COMMENTS
5255 char_u *old = curbuf->b_p_com;
5256
5257 curbuf->b_p_com = (char_u *)"";
5258#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005259 compl_startpos.lnum = curwin->w_cursor.lnum;
5260 compl_startpos.col = compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 ins_eol('\r');
5262#ifdef FEAT_COMMENTS
5263 curbuf->b_p_com = old;
5264#endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005265 compl_length = 0;
5266 compl_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 }
5268 }
5269 else
5270 {
5271 edit_submode_pre = NULL;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005272 compl_startpos.col = compl_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 }
5274
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005275 if (compl_cont_status & CONT_LOCAL)
5276 edit_submode = (char_u *)_(ctrl_x_msgs[CTRL_X_LOCAL_MSG]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 else
5278 edit_submode = (char_u *)_(CTRL_X_MSG(ctrl_x_mode));
5279
Bram Moolenaar62951b12011-09-21 18:23:05 +02005280 /* If any of the original typed text has been changed we need to fix
5281 * the redo buffer. */
5282 ins_compl_fixRedoBufForLeader(NULL);
5283
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005284 /* Always add completion for the original text. */
5285 vim_free(compl_orig_text);
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005286 compl_orig_text = vim_strnsave(line + compl_col, compl_length);
5287 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
Bram Moolenaare8c3a142006-08-29 14:30:35 +00005288 -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005290 vim_free(compl_pattern);
5291 compl_pattern = NULL;
5292 vim_free(compl_orig_text);
5293 compl_orig_text = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 return FAIL;
5295 }
5296
5297 /* showmode might reset the internal line pointers, so it must
5298 * be called before line = ml_get(), or when this address is no
5299 * longer needed. -- Acevedo.
5300 */
5301 edit_submode_extra = (char_u *)_("-- Searching...");
5302 edit_submode_highl = HLF_COUNT;
5303 showmode();
5304 edit_submode_extra = NULL;
5305 out_flush();
5306 }
5307
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005308 compl_shown_match = compl_curr_match;
5309 compl_shows_dir = compl_direction;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310
5311 /*
Bram Moolenaarc7453f52006-02-10 23:20:28 +00005312 * Find next match (and following matches).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 */
Bram Moolenaarbe678f82010-03-10 14:15:54 +01005314 save_w_wrow = curwin->w_wrow;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005315 n = ins_compl_next(TRUE, ins_compl_key2count(c), ins_compl_use_match(c));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005317 /* may undisplay the popup menu */
5318 ins_compl_upd_pum();
5319
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005320 if (n > 1) /* all matches have been found */
5321 compl_matches = n;
5322 compl_curr_match = compl_shown_match;
5323 compl_direction = compl_shows_dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324
Bram Moolenaard68071d2006-05-02 22:08:30 +00005325 /* Eat the ESC that vgetc() returns after a CTRL-C to avoid leaving Insert
5326 * mode. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 if (got_int && !global_busy)
5328 {
5329 (void)vgetc();
5330 got_int = FALSE;
5331 }
5332
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005333 /* we found no match if the list has only the "compl_orig_text"-entry */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005334 if (compl_first_match == compl_first_match->cp_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 {
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005336 edit_submode_extra = (compl_cont_status & CONT_ADDING)
5337 && compl_length > 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 ? (char_u *)_(e_hitend) : (char_u *)_(e_patnotf);
5339 edit_submode_highl = HLF_E;
5340 /* remove N_ADDS flag, so next ^X<> won't try to go to ADDING mode,
5341 * because we couldn't expand anything at first place, but if we used
5342 * ^P, ^N, ^X^I or ^X^D we might want to add-expand a single-char-word
5343 * (such as M in M'exico) if not tried already. -- Acevedo */
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005344 if ( compl_length > 1
5345 || (compl_cont_status & CONT_ADDING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 || (ctrl_x_mode != 0
5347 && ctrl_x_mode != CTRL_X_PATH_PATTERNS
5348 && ctrl_x_mode != CTRL_X_PATH_DEFINES))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005349 compl_cont_status &= ~CONT_N_ADDS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 }
5351
Bram Moolenaar572cb562005-08-05 21:35:02 +00005352 if (compl_curr_match->cp_flags & CONT_S_IPOS)
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005353 compl_cont_status |= CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 else
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005355 compl_cont_status &= ~CONT_S_IPOS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356
5357 if (edit_submode_extra == NULL)
5358 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005359 if (compl_curr_match->cp_flags & ORIGINAL_TEXT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 {
5361 edit_submode_extra = (char_u *)_("Back at original");
5362 edit_submode_highl = HLF_W;
5363 }
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005364 else if (compl_cont_status & CONT_S_IPOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 {
5366 edit_submode_extra = (char_u *)_("Word from other line");
5367 edit_submode_highl = HLF_COUNT;
5368 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00005369 else if (compl_curr_match->cp_next == compl_curr_match->cp_prev)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 {
5371 edit_submode_extra = (char_u *)_("The only match");
5372 edit_submode_highl = HLF_COUNT;
5373 }
5374 else
5375 {
5376 /* Update completion sequence number when needed. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005377 if (compl_curr_match->cp_number == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005379 int number = 0;
5380 compl_T *match;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005382 if (compl_direction == FORWARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 {
5384 /* search backwards for the first valid (!= -1) number.
5385 * This should normally succeed already at the first loop
5386 * cycle, so it's fast! */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005387 for (match = compl_curr_match->cp_prev; match != NULL
5388 && match != compl_first_match;
5389 match = match->cp_prev)
5390 if (match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005392 number = match->cp_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 break;
5394 }
5395 if (match != NULL)
5396 /* go up and assign all numbers which are not assigned
5397 * yet */
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005398 for (match = match->cp_next;
5399 match != NULL && match->cp_number == -1;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005400 match = match->cp_next)
5401 match->cp_number = ++number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402 }
5403 else /* BACKWARD */
5404 {
5405 /* search forwards (upwards) for the first valid (!= -1)
5406 * number. This should normally succeed already at the
5407 * first loop cycle, so it's fast! */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005408 for (match = compl_curr_match->cp_next; match != NULL
5409 && match != compl_first_match;
5410 match = match->cp_next)
5411 if (match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 {
Bram Moolenaar572cb562005-08-05 21:35:02 +00005413 number = match->cp_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 break;
5415 }
5416 if (match != NULL)
5417 /* go down and assign all numbers which are not
5418 * assigned yet */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005419 for (match = match->cp_prev; match
5420 && match->cp_number == -1;
5421 match = match->cp_prev)
5422 match->cp_number = ++number;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 }
5424 }
5425
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005426 /* The match should always have a sequence number now, this is
5427 * just a safety check. */
Bram Moolenaar572cb562005-08-05 21:35:02 +00005428 if (compl_curr_match->cp_number != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 {
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005430 /* Space for 10 text chars. + 2x10-digit no.s = 31.
5431 * Translations may need more than twice that. */
5432 static char_u match_ref[81];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433
Bram Moolenaar4be06f92005-07-29 22:36:03 +00005434 if (compl_matches > 0)
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005435 vim_snprintf((char *)match_ref, sizeof(match_ref),
5436 _("match %d of %d"),
Bram Moolenaar572cb562005-08-05 21:35:02 +00005437 compl_curr_match->cp_number, compl_matches);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 else
Bram Moolenaar0739a1e2007-02-04 01:37:39 +00005439 vim_snprintf((char *)match_ref, sizeof(match_ref),
5440 _("match %d"),
5441 compl_curr_match->cp_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 edit_submode_extra = match_ref;
5443 edit_submode_highl = HLF_R;
Bram Moolenaar76b9b362012-02-04 23:35:00 +01005444 if (dollar_vcol >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 curs_columns(FALSE);
5446 }
5447 }
5448 }
5449
5450 /* Show a message about what (completion) mode we're in. */
5451 showmode();
5452 if (edit_submode_extra != NULL)
5453 {
5454 if (!p_smd)
5455 msg_attr(edit_submode_extra,
5456 edit_submode_highl < HLF_COUNT
5457 ? hl_attr(edit_submode_highl) : 0);
5458 }
5459 else
5460 msg_clr_cmdline(); /* necessary for "noshowmode" */
5461
Bram Moolenaard68071d2006-05-02 22:08:30 +00005462 /* Show the popup menu, unless we got interrupted. */
5463 if (!compl_interrupted)
5464 {
5465 /* RedrawingDisabled may be set when invoked through complete(). */
5466 n = RedrawingDisabled;
5467 RedrawingDisabled = 0;
Bram Moolenaarbe678f82010-03-10 14:15:54 +01005468
5469 /* If the cursor moved we need to remove the pum first. */
5470 setcursor();
5471 if (save_w_wrow != curwin->w_wrow)
5472 ins_compl_del_pum();
5473
Bram Moolenaard68071d2006-05-02 22:08:30 +00005474 ins_compl_show_pum();
5475 setcursor();
5476 RedrawingDisabled = n;
5477 }
Bram Moolenaar1423b9d2006-05-07 15:16:06 +00005478 compl_was_interrupted = compl_interrupted;
Bram Moolenaard68071d2006-05-02 22:08:30 +00005479 compl_interrupted = FALSE;
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00005480
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 return OK;
5482}
5483
5484/*
5485 * Looks in the first "len" chars. of "src" for search-metachars.
5486 * If dest is not NULL the chars. are copied there quoting (with
5487 * a backslash) the metachars, and dest would be NUL terminated.
5488 * Returns the length (needed) of dest
5489 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005490 static unsigned
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491quote_meta(dest, src, len)
5492 char_u *dest;
5493 char_u *src;
5494 int len;
5495{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005496 unsigned m = (unsigned)len + 1; /* one extra for the NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005498 for ( ; --len >= 0; src++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 {
5500 switch (*src)
5501 {
5502 case '.':
5503 case '*':
5504 case '[':
5505 if (ctrl_x_mode == CTRL_X_DICTIONARY
5506 || ctrl_x_mode == CTRL_X_THESAURUS)
5507 break;
5508 case '~':
5509 if (!p_magic) /* quote these only if magic is set */
5510 break;
5511 case '\\':
5512 if (ctrl_x_mode == CTRL_X_DICTIONARY
5513 || ctrl_x_mode == CTRL_X_THESAURUS)
5514 break;
5515 case '^': /* currently it's not needed. */
5516 case '$':
5517 m++;
5518 if (dest != NULL)
5519 *dest++ = '\\';
5520 break;
5521 }
5522 if (dest != NULL)
5523 *dest++ = *src;
Bram Moolenaar572cb562005-08-05 21:35:02 +00005524# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 /* Copy remaining bytes of a multibyte character. */
5526 if (has_mbyte)
5527 {
5528 int i, mb_len;
5529
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005530 mb_len = (*mb_ptr2len)(src) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 if (mb_len > 0 && len >= mb_len)
5532 for (i = 0; i < mb_len; ++i)
5533 {
5534 --len;
5535 ++src;
5536 if (dest != NULL)
5537 *dest++ = *src;
5538 }
5539 }
Bram Moolenaar572cb562005-08-05 21:35:02 +00005540# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 }
5542 if (dest != NULL)
5543 *dest = NUL;
5544
5545 return m;
5546}
5547#endif /* FEAT_INS_EXPAND */
5548
5549/*
5550 * Next character is interpreted literally.
5551 * A one, two or three digit decimal number is interpreted as its byte value.
5552 * If one or two digits are entered, the next character is given to vungetc().
5553 * For Unicode a character > 255 may be returned.
5554 */
5555 int
5556get_literal()
5557{
5558 int cc;
5559 int nc;
5560 int i;
5561 int hex = FALSE;
5562 int octal = FALSE;
5563#ifdef FEAT_MBYTE
5564 int unicode = 0;
5565#endif
5566
5567 if (got_int)
5568 return Ctrl_C;
5569
5570#ifdef FEAT_GUI
5571 /*
5572 * In GUI there is no point inserting the internal code for a special key.
5573 * It is more useful to insert the string "<KEY>" instead. This would
5574 * probably be useful in a text window too, but it would not be
5575 * vi-compatible (maybe there should be an option for it?) -- webb
5576 */
5577 if (gui.in_use)
5578 ++allow_keys;
5579#endif
5580#ifdef USE_ON_FLY_SCROLL
5581 dont_scroll = TRUE; /* disallow scrolling here */
5582#endif
5583 ++no_mapping; /* don't map the next key hits */
5584 cc = 0;
5585 i = 0;
5586 for (;;)
5587 {
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005588 nc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589#ifdef FEAT_CMDL_INFO
5590 if (!(State & CMDLINE)
5591# ifdef FEAT_MBYTE
5592 && MB_BYTE2LEN_CHECK(nc) == 1
5593# endif
5594 )
5595 add_to_showcmd(nc);
5596#endif
5597 if (nc == 'x' || nc == 'X')
5598 hex = TRUE;
5599 else if (nc == 'o' || nc == 'O')
5600 octal = TRUE;
5601#ifdef FEAT_MBYTE
5602 else if (nc == 'u' || nc == 'U')
5603 unicode = nc;
5604#endif
5605 else
5606 {
5607 if (hex
5608#ifdef FEAT_MBYTE
5609 || unicode != 0
5610#endif
5611 )
5612 {
5613 if (!vim_isxdigit(nc))
5614 break;
5615 cc = cc * 16 + hex2nr(nc);
5616 }
5617 else if (octal)
5618 {
5619 if (nc < '0' || nc > '7')
5620 break;
5621 cc = cc * 8 + nc - '0';
5622 }
5623 else
5624 {
5625 if (!VIM_ISDIGIT(nc))
5626 break;
5627 cc = cc * 10 + nc - '0';
5628 }
5629
5630 ++i;
5631 }
5632
5633 if (cc > 255
5634#ifdef FEAT_MBYTE
5635 && unicode == 0
5636#endif
5637 )
5638 cc = 255; /* limit range to 0-255 */
5639 nc = 0;
5640
5641 if (hex) /* hex: up to two chars */
5642 {
5643 if (i >= 2)
5644 break;
5645 }
5646#ifdef FEAT_MBYTE
5647 else if (unicode) /* Unicode: up to four or eight chars */
5648 {
5649 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
5650 break;
5651 }
5652#endif
5653 else if (i >= 3) /* decimal or octal: up to three chars */
5654 break;
5655 }
5656 if (i == 0) /* no number entered */
5657 {
5658 if (nc == K_ZERO) /* NUL is stored as NL */
5659 {
5660 cc = '\n';
5661 nc = 0;
5662 }
5663 else
5664 {
5665 cc = nc;
5666 nc = 0;
5667 }
5668 }
5669
5670 if (cc == 0) /* NUL is stored as NL */
5671 cc = '\n';
Bram Moolenaar217ad922005-03-20 22:37:15 +00005672#ifdef FEAT_MBYTE
5673 if (enc_dbcs && (cc & 0xff) == 0)
5674 cc = '?'; /* don't accept an illegal DBCS char, the NUL in the
5675 second byte will cause trouble! */
5676#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677
5678 --no_mapping;
5679#ifdef FEAT_GUI
5680 if (gui.in_use)
5681 --allow_keys;
5682#endif
5683 if (nc)
5684 vungetc(nc);
5685 got_int = FALSE; /* CTRL-C typed after CTRL-V is not an interrupt */
5686 return cc;
5687}
5688
5689/*
5690 * Insert character, taking care of special keys and mod_mask
5691 */
5692 static void
5693insert_special(c, allow_modmask, ctrlv)
5694 int c;
5695 int allow_modmask;
5696 int ctrlv; /* c was typed after CTRL-V */
5697{
5698 char_u *p;
5699 int len;
5700
5701 /*
5702 * Special function key, translate into "<Key>". Up to the last '>' is
5703 * inserted with ins_str(), so as not to replace characters in replace
5704 * mode.
5705 * Only use mod_mask for special keys, to avoid things like <S-Space>,
5706 * unless 'allow_modmask' is TRUE.
5707 */
5708#ifdef MACOS
5709 /* Command-key never produces a normal key */
5710 if (mod_mask & MOD_MASK_CMD)
5711 allow_modmask = TRUE;
5712#endif
5713 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
5714 {
5715 p = get_special_key_name(c, mod_mask);
5716 len = (int)STRLEN(p);
5717 c = p[len - 1];
5718 if (len > 2)
5719 {
5720 if (stop_arrow() == FAIL)
5721 return;
5722 p[len - 1] = NUL;
5723 ins_str(p);
Bram Moolenaarebefac62005-12-28 22:39:57 +00005724 AppendToRedobuffLit(p, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 ctrlv = FALSE;
5726 }
5727 }
5728 if (stop_arrow() == OK)
5729 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
5730}
5731
5732/*
5733 * Special characters in this context are those that need processing other
5734 * than the simple insertion that can be performed here. This includes ESC
5735 * which terminates the insert, and CR/NL which need special processing to
5736 * open up a new line. This routine tries to optimize insertions performed by
5737 * the "redo", "undo" or "put" commands, so it needs to know when it should
5738 * stop and defer processing to the "normal" mechanism.
5739 * '0' and '^' are special, because they can be followed by CTRL-D.
5740 */
5741#ifdef EBCDIC
5742# define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^')
5743#else
5744# define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
5745#endif
5746
5747#ifdef FEAT_MBYTE
5748# define WHITECHAR(cc) (vim_iswhite(cc) && (!enc_utf8 || !utf_iscomposing(utf_ptr2char(ml_get_cursor() + 1))))
5749#else
5750# define WHITECHAR(cc) vim_iswhite(cc)
5751#endif
5752
5753 void
5754insertchar(c, flags, second_indent)
5755 int c; /* character to insert or NUL */
5756 int flags; /* INSCHAR_FORMAT, etc. */
5757 int second_indent; /* indent for second line if >= 0 */
5758{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 int textwidth;
5760#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 int fo_ins_blank;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764
5765 textwidth = comp_textwidth(flags & INSCHAR_FORMAT);
5766 fo_ins_blank = has_format_option(FO_INS_BLANK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767
5768 /*
5769 * Try to break the line in two or more pieces when:
5770 * - Always do this if we have been called to do formatting only.
5771 * - Always do this when 'formatoptions' has the 'a' flag and the line
5772 * ends in white space.
5773 * - Otherwise:
5774 * - Don't do this if inserting a blank
5775 * - Don't do this if an existing character is being replaced, unless
5776 * we're in VREPLACE mode.
5777 * - Do this if the cursor is not on the line where insert started
5778 * or - 'formatoptions' doesn't have 'l' or the line was not too long
5779 * before the insert.
5780 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
5781 * before 'textwidth'
5782 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005783 if (textwidth > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 && ((flags & INSCHAR_FORMAT)
5785 || (!vim_iswhite(c)
5786 && !((State & REPLACE_FLAG)
5787#ifdef FEAT_VREPLACE
5788 && !(State & VREPLACE_FLAG)
5789#endif
5790 && *ml_get_cursor() != NUL)
5791 && (curwin->w_cursor.lnum != Insstart.lnum
5792 || ((!has_format_option(FO_INS_LONG)
5793 || Insstart_textlen <= (colnr_T)textwidth)
5794 && (!fo_ins_blank
5795 || Insstart_blank_vcol <= (colnr_T)textwidth
5796 ))))))
5797 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005798 /* Format with 'formatexpr' when it's set. Use internal formatting
5799 * when 'formatexpr' isn't set or it returns non-zero. */
5800#if defined(FEAT_EVAL)
Bram Moolenaarf3442e72006-10-10 13:49:10 +00005801 int do_internal = TRUE;
5802
Bram Moolenaar81a82092008-03-12 16:27:00 +00005803 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0)
Bram Moolenaarf3442e72006-10-10 13:49:10 +00005804 {
5805 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
5806 /* It may be required to save for undo again, e.g. when setline()
5807 * was called. */
5808 ins_need_undo = TRUE;
5809 }
5810 if (do_internal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00005812 internal_format(textwidth, second_indent, flags, c == NUL, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005814
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 if (c == NUL) /* only formatting was wanted */
5816 return;
5817
5818#ifdef FEAT_COMMENTS
5819 /* Check whether this character should end a comment. */
5820 if (did_ai && (int)c == end_comment_pending)
5821 {
5822 char_u *line;
5823 char_u lead_end[COM_MAX_LEN]; /* end-comment string */
5824 int middle_len, end_len;
5825 int i;
5826
5827 /*
5828 * Need to remove existing (middle) comment leader and insert end
5829 * comment leader. First, check what comment leader we can find.
5830 */
5831 i = get_leader_len(line = ml_get_curline(), &p, FALSE);
5832 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) /* Just checking */
5833 {
5834 /* Skip middle-comment string */
5835 while (*p && p[-1] != ':') /* find end of middle flags */
5836 ++p;
5837 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
5838 /* Don't count trailing white space for middle_len */
5839 while (middle_len > 0 && vim_iswhite(lead_end[middle_len - 1]))
5840 --middle_len;
5841
5842 /* Find the end-comment string */
5843 while (*p && p[-1] != ':') /* find end of end flags */
5844 ++p;
5845 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
5846
5847 /* Skip white space before the cursor */
5848 i = curwin->w_cursor.col;
5849 while (--i >= 0 && vim_iswhite(line[i]))
5850 ;
5851 i++;
5852
5853 /* Skip to before the middle leader */
5854 i -= middle_len;
5855
5856 /* Check some expected things before we go on */
5857 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
5858 {
5859 /* Backspace over all the stuff we want to replace */
5860 backspace_until_column(i);
5861
5862 /*
5863 * Insert the end-comment string, except for the last
5864 * character, which will get inserted as normal later.
5865 */
5866 ins_bytes_len(lead_end, end_len - 1);
5867 }
5868 }
5869 }
5870 end_comment_pending = NUL;
5871#endif
5872
5873 did_ai = FALSE;
5874#ifdef FEAT_SMARTINDENT
5875 did_si = FALSE;
5876 can_si = FALSE;
5877 can_si_back = FALSE;
5878#endif
5879
5880 /*
5881 * If there's any pending input, grab up to INPUT_BUFLEN at once.
5882 * This speeds up normal text input considerably.
5883 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
5884 * need to re-indent at a ':', or any other character (but not what
5885 * 'paste' is set)..
5886 */
5887#ifdef USE_ON_FLY_SCROLL
5888 dont_scroll = FALSE; /* allow scrolling here */
5889#endif
5890
5891 if ( !ISSPECIAL(c)
5892#ifdef FEAT_MBYTE
5893 && (!has_mbyte || (*mb_char2len)(c) == 1)
5894#endif
5895 && vpeekc() != NUL
5896 && !(State & REPLACE_FLAG)
5897#ifdef FEAT_CINDENT
5898 && !cindent_on()
5899#endif
5900#ifdef FEAT_RIGHTLEFT
5901 && !p_ri
5902#endif
5903 )
5904 {
5905#define INPUT_BUFLEN 100
5906 char_u buf[INPUT_BUFLEN + 1];
5907 int i;
5908 colnr_T virtcol = 0;
5909
5910 buf[0] = c;
5911 i = 1;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005912 if (textwidth > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 virtcol = get_nolist_virtcol();
5914 /*
5915 * Stop the string when:
5916 * - no more chars available
5917 * - finding a special character (command key)
5918 * - buffer is full
5919 * - running into the 'textwidth' boundary
5920 * - need to check for abbreviation: A non-word char after a word-char
5921 */
5922 while ( (c = vpeekc()) != NUL
5923 && !ISSPECIAL(c)
5924#ifdef FEAT_MBYTE
5925 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
5926#endif
5927 && i < INPUT_BUFLEN
5928 && (textwidth == 0
5929 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
5930 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
5931 {
5932#ifdef FEAT_RIGHTLEFT
5933 c = vgetc();
5934 if (p_hkmap && KeyTyped)
5935 c = hkmap(c); /* Hebrew mode mapping */
5936# ifdef FEAT_FKMAP
5937 if (p_fkmap && KeyTyped)
5938 c = fkmap(c); /* Farsi mode mapping */
5939# endif
5940 buf[i++] = c;
5941#else
5942 buf[i++] = vgetc();
5943#endif
5944 }
5945
5946#ifdef FEAT_DIGRAPHS
5947 do_digraph(-1); /* clear digraphs */
5948 do_digraph(buf[i-1]); /* may be the start of a digraph */
5949#endif
5950 buf[i] = NUL;
5951 ins_str(buf);
5952 if (flags & INSCHAR_CTRLV)
5953 {
5954 redo_literal(*buf);
5955 i = 1;
5956 }
5957 else
5958 i = 0;
5959 if (buf[i] != NUL)
Bram Moolenaarebefac62005-12-28 22:39:57 +00005960 AppendToRedobuffLit(buf + i, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 }
5962 else
5963 {
5964#ifdef FEAT_MBYTE
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005965 int cc;
5966
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
5968 {
5969 char_u buf[MB_MAXBYTES + 1];
5970
5971 (*mb_char2bytes)(c, buf);
5972 buf[cc] = NUL;
5973 ins_char_bytes(buf, cc);
5974 AppendCharToRedobuff(c);
5975 }
5976 else
5977#endif
5978 {
5979 ins_char(c);
5980 if (flags & INSCHAR_CTRLV)
5981 redo_literal(c);
5982 else
5983 AppendCharToRedobuff(c);
5984 }
5985 }
5986}
5987
5988/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005989 * Format text at the current insert position.
5990 */
5991 static void
Bram Moolenaar97b98102009-11-17 16:41:01 +00005992internal_format(textwidth, second_indent, flags, format_only, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005993 int textwidth;
5994 int second_indent;
5995 int flags;
5996 int format_only;
Bram Moolenaar97b98102009-11-17 16:41:01 +00005997 int c; /* character to be inserted (can be NUL) */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005998{
5999 int cc;
6000 int save_char = NUL;
6001 int haveto_redraw = FALSE;
6002 int fo_ins_blank = has_format_option(FO_INS_BLANK);
6003#ifdef FEAT_MBYTE
6004 int fo_multibyte = has_format_option(FO_MBYTE_BREAK);
6005#endif
6006 int fo_white_par = has_format_option(FO_WHITE_PAR);
6007 int first_line = TRUE;
6008#ifdef FEAT_COMMENTS
6009 colnr_T leader_len;
6010 int no_leader = FALSE;
6011 int do_comments = (flags & INSCHAR_DO_COM);
6012#endif
6013
6014 /*
6015 * When 'ai' is off we don't want a space under the cursor to be
6016 * deleted. Replace it with an 'x' temporarily.
6017 */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006018 if (!curbuf->b_p_ai
6019#ifdef FEAT_VREPLACE
6020 && !(State & VREPLACE_FLAG)
6021#endif
6022 )
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006023 {
6024 cc = gchar_cursor();
6025 if (vim_iswhite(cc))
6026 {
6027 save_char = cc;
6028 pchar_cursor('x');
6029 }
6030 }
6031
6032 /*
6033 * Repeat breaking lines, until the current line is not too long.
6034 */
6035 while (!got_int)
6036 {
6037 int startcol; /* Cursor column at entry */
6038 int wantcol; /* column at textwidth border */
6039 int foundcol; /* column for start of spaces */
6040 int end_foundcol = 0; /* column for start of word */
6041 colnr_T len;
6042 colnr_T virtcol;
6043#ifdef FEAT_VREPLACE
6044 int orig_col = 0;
6045 char_u *saved_text = NULL;
6046#endif
6047 colnr_T col;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006048 colnr_T end_col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006049
Bram Moolenaar97b98102009-11-17 16:41:01 +00006050 virtcol = get_nolist_virtcol()
6051 + char2cells(c != NUL ? c : gchar_cursor());
6052 if (virtcol <= (colnr_T)textwidth)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006053 break;
6054
6055#ifdef FEAT_COMMENTS
6056 if (no_leader)
6057 do_comments = FALSE;
6058 else if (!(flags & INSCHAR_FORMAT)
6059 && has_format_option(FO_WRAP_COMS))
6060 do_comments = TRUE;
6061
6062 /* Don't break until after the comment leader */
6063 if (do_comments)
6064 leader_len = get_leader_len(ml_get_curline(), NULL, FALSE);
6065 else
6066 leader_len = 0;
6067
6068 /* If the line doesn't start with a comment leader, then don't
6069 * start one in a following broken line. Avoids that a %word
6070 * moved to the start of the next line causes all following lines
6071 * to start with %. */
6072 if (leader_len == 0)
6073 no_leader = TRUE;
6074#endif
6075 if (!(flags & INSCHAR_FORMAT)
6076#ifdef FEAT_COMMENTS
6077 && leader_len == 0
6078#endif
6079 && !has_format_option(FO_WRAP))
6080
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006081 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006082 if ((startcol = curwin->w_cursor.col) == 0)
6083 break;
6084
6085 /* find column of textwidth border */
6086 coladvance((colnr_T)textwidth);
6087 wantcol = curwin->w_cursor.col;
6088
Bram Moolenaar97b98102009-11-17 16:41:01 +00006089 curwin->w_cursor.col = startcol;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006090 foundcol = 0;
6091
6092 /*
6093 * Find position to break at.
6094 * Stop at first entered white when 'formatoptions' has 'v'
6095 */
6096 while ((!fo_ins_blank && !has_format_option(FO_INS_VI))
Bram Moolenaara27ad5a2011-10-26 17:04:29 +02006097 || (flags & INSCHAR_FORMAT)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006098 || curwin->w_cursor.lnum != Insstart.lnum
6099 || curwin->w_cursor.col >= Insstart.col)
6100 {
Bram Moolenaar97b98102009-11-17 16:41:01 +00006101 if (curwin->w_cursor.col == startcol && c != NUL)
6102 cc = c;
6103 else
6104 cc = gchar_cursor();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006105 if (WHITECHAR(cc))
6106 {
6107 /* remember position of blank just before text */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006108 end_col = curwin->w_cursor.col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006109
6110 /* find start of sequence of blanks */
6111 while (curwin->w_cursor.col > 0 && WHITECHAR(cc))
6112 {
6113 dec_cursor();
6114 cc = gchar_cursor();
6115 }
6116 if (curwin->w_cursor.col == 0 && WHITECHAR(cc))
6117 break; /* only spaces in front of text */
6118#ifdef FEAT_COMMENTS
6119 /* Don't break until after the comment leader */
6120 if (curwin->w_cursor.col < leader_len)
6121 break;
6122#endif
6123 if (has_format_option(FO_ONE_LETTER))
6124 {
6125 /* do not break after one-letter words */
6126 if (curwin->w_cursor.col == 0)
6127 break; /* one-letter word at begin */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006128#ifdef FEAT_COMMENTS
6129 /* do not break "#a b" when 'tw' is 2 */
6130 if (curwin->w_cursor.col <= leader_len)
6131 break;
6132#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006133 col = curwin->w_cursor.col;
6134 dec_cursor();
6135 cc = gchar_cursor();
6136
6137 if (WHITECHAR(cc))
6138 continue; /* one-letter, continue */
6139 curwin->w_cursor.col = col;
6140 }
Bram Moolenaar97b98102009-11-17 16:41:01 +00006141
6142 inc_cursor();
6143
6144 end_foundcol = end_col + 1;
6145 foundcol = curwin->w_cursor.col;
6146 if (curwin->w_cursor.col <= (colnr_T)wantcol)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006147 break;
6148 }
6149#ifdef FEAT_MBYTE
Bram Moolenaar97b98102009-11-17 16:41:01 +00006150 else if (cc >= 0x100 && fo_multibyte)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006151 {
6152 /* Break after or before a multi-byte character. */
Bram Moolenaar97b98102009-11-17 16:41:01 +00006153 if (curwin->w_cursor.col != startcol)
6154 {
6155#ifdef FEAT_COMMENTS
6156 /* Don't break until after the comment leader */
6157 if (curwin->w_cursor.col < leader_len)
6158 break;
6159#endif
6160 col = curwin->w_cursor.col;
6161 inc_cursor();
6162 /* Don't change end_foundcol if already set. */
6163 if (foundcol != curwin->w_cursor.col)
6164 {
6165 foundcol = curwin->w_cursor.col;
6166 end_foundcol = foundcol;
6167 if (curwin->w_cursor.col <= (colnr_T)wantcol)
6168 break;
6169 }
6170 curwin->w_cursor.col = col;
6171 }
6172
6173 if (curwin->w_cursor.col == 0)
6174 break;
6175
6176 col = curwin->w_cursor.col;
6177
6178 dec_cursor();
6179 cc = gchar_cursor();
6180
6181 if (WHITECHAR(cc))
6182 continue; /* break with space */
6183#ifdef FEAT_COMMENTS
6184 /* Don't break until after the comment leader */
6185 if (curwin->w_cursor.col < leader_len)
6186 break;
6187#endif
6188
6189 curwin->w_cursor.col = col;
6190
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006191 foundcol = curwin->w_cursor.col;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006192 end_foundcol = foundcol;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006193 if (curwin->w_cursor.col <= (colnr_T)wantcol)
6194 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006195 }
6196#endif
6197 if (curwin->w_cursor.col == 0)
6198 break;
6199 dec_cursor();
6200 }
6201
6202 if (foundcol == 0) /* no spaces, cannot break line */
6203 {
6204 curwin->w_cursor.col = startcol;
6205 break;
6206 }
6207
6208 /* Going to break the line, remove any "$" now. */
6209 undisplay_dollar();
6210
6211 /*
6212 * Offset between cursor position and line break is used by replace
6213 * stack functions. VREPLACE does not use this, and backspaces
6214 * over the text instead.
6215 */
6216#ifdef FEAT_VREPLACE
6217 if (State & VREPLACE_FLAG)
6218 orig_col = startcol; /* Will start backspacing from here */
6219 else
6220#endif
Bram Moolenaar97b98102009-11-17 16:41:01 +00006221 replace_offset = startcol - end_foundcol;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006222
6223 /*
6224 * adjust startcol for spaces that will be deleted and
6225 * characters that will remain on top line
6226 */
6227 curwin->w_cursor.col = foundcol;
Bram Moolenaar97b98102009-11-17 16:41:01 +00006228 while ((cc = gchar_cursor(), WHITECHAR(cc))
6229 && (!fo_white_par || curwin->w_cursor.col < startcol))
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006230 inc_cursor();
6231 startcol -= curwin->w_cursor.col;
6232 if (startcol < 0)
6233 startcol = 0;
6234
6235#ifdef FEAT_VREPLACE
6236 if (State & VREPLACE_FLAG)
6237 {
6238 /*
6239 * In VREPLACE mode, we will backspace over the text to be
6240 * wrapped, so save a copy now to put on the next line.
6241 */
6242 saved_text = vim_strsave(ml_get_cursor());
6243 curwin->w_cursor.col = orig_col;
6244 if (saved_text == NULL)
6245 break; /* Can't do it, out of memory */
6246 saved_text[startcol] = NUL;
6247
6248 /* Backspace over characters that will move to the next line */
6249 if (!fo_white_par)
6250 backspace_until_column(foundcol);
6251 }
6252 else
6253#endif
6254 {
6255 /* put cursor after pos. to break line */
6256 if (!fo_white_par)
6257 curwin->w_cursor.col = foundcol;
6258 }
6259
6260 /*
6261 * Split the line just before the margin.
6262 * Only insert/delete lines, but don't really redraw the window.
6263 */
6264 open_line(FORWARD, OPENLINE_DELSPACES + OPENLINE_MARKFIX
6265 + (fo_white_par ? OPENLINE_KEEPTRAIL : 0)
6266#ifdef FEAT_COMMENTS
6267 + (do_comments ? OPENLINE_DO_COM : 0)
6268#endif
6269 , old_indent);
6270 old_indent = 0;
6271
6272 replace_offset = 0;
6273 if (first_line)
6274 {
6275 if (second_indent < 0 && has_format_option(FO_Q_NUMBER))
6276 second_indent = get_number_indent(curwin->w_cursor.lnum -1);
6277 if (second_indent >= 0)
6278 {
6279#ifdef FEAT_VREPLACE
6280 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +00006281 change_indent(INDENT_SET, second_indent, FALSE, NUL, TRUE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006282 else
6283#endif
6284 (void)set_indent(second_indent, SIN_CHANGED);
6285 }
6286 first_line = FALSE;
6287 }
6288
6289#ifdef FEAT_VREPLACE
6290 if (State & VREPLACE_FLAG)
6291 {
6292 /*
6293 * In VREPLACE mode we have backspaced over the text to be
6294 * moved, now we re-insert it into the new line.
6295 */
6296 ins_bytes(saved_text);
6297 vim_free(saved_text);
6298 }
6299 else
6300#endif
6301 {
6302 /*
6303 * Check if cursor is not past the NUL off the line, cindent
6304 * may have added or removed indent.
6305 */
6306 curwin->w_cursor.col += startcol;
6307 len = (colnr_T)STRLEN(ml_get_curline());
6308 if (curwin->w_cursor.col > len)
6309 curwin->w_cursor.col = len;
6310 }
6311
6312 haveto_redraw = TRUE;
6313#ifdef FEAT_CINDENT
6314 can_cindent = TRUE;
6315#endif
6316 /* moved the cursor, don't autoindent or cindent now */
6317 did_ai = FALSE;
6318#ifdef FEAT_SMARTINDENT
6319 did_si = FALSE;
6320 can_si = FALSE;
6321 can_si_back = FALSE;
6322#endif
6323 line_breakcheck();
6324 }
6325
6326 if (save_char != NUL) /* put back space after cursor */
6327 pchar_cursor(save_char);
6328
6329 if (!format_only && haveto_redraw)
6330 {
6331 update_topline();
6332 redraw_curbuf_later(VALID);
6333 }
6334}
6335
6336/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 * Called after inserting or deleting text: When 'formatoptions' includes the
6338 * 'a' flag format from the current line until the end of the paragraph.
6339 * Keep the cursor at the same position relative to the text.
6340 * The caller must have saved the cursor line for undo, following ones will be
6341 * saved here.
6342 */
6343 void
6344auto_format(trailblank, prev_line)
6345 int trailblank; /* when TRUE also format with trailing blank */
6346 int prev_line; /* may start in previous line */
6347{
6348 pos_T pos;
6349 colnr_T len;
6350 char_u *old;
6351 char_u *new, *pnew;
6352 int wasatend;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006353 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354
6355 if (!has_format_option(FO_AUTO))
6356 return;
6357
6358 pos = curwin->w_cursor;
6359 old = ml_get_curline();
6360
6361 /* may remove added space */
6362 check_auto_format(FALSE);
6363
6364 /* Don't format in Insert mode when the cursor is on a trailing blank, the
6365 * user might insert normal text next. Also skip formatting when "1" is
6366 * in 'formatoptions' and there is a single character before the cursor.
6367 * Otherwise the line would be broken and when typing another non-white
6368 * next they are not joined back together. */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006369 wasatend = (pos.col == (colnr_T)STRLEN(old));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 if (*old != NUL && !trailblank && wasatend)
6371 {
6372 dec_cursor();
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006373 cc = gchar_cursor();
6374 if (!WHITECHAR(cc) && curwin->w_cursor.col > 0
6375 && has_format_option(FO_ONE_LETTER))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 dec_cursor();
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006377 cc = gchar_cursor();
6378 if (WHITECHAR(cc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 {
6380 curwin->w_cursor = pos;
6381 return;
6382 }
6383 curwin->w_cursor = pos;
6384 }
6385
6386#ifdef FEAT_COMMENTS
6387 /* With the 'c' flag in 'formatoptions' and 't' missing: only format
6388 * comments. */
6389 if (has_format_option(FO_WRAP_COMS) && !has_format_option(FO_WRAP)
6390 && get_leader_len(old, NULL, FALSE) == 0)
6391 return;
6392#endif
6393
6394 /*
6395 * May start formatting in a previous line, so that after "x" a word is
6396 * moved to the previous line if it fits there now. Only when this is not
6397 * the start of a paragraph.
6398 */
6399 if (prev_line && !paragraph_start(curwin->w_cursor.lnum))
6400 {
6401 --curwin->w_cursor.lnum;
6402 if (u_save_cursor() == FAIL)
6403 return;
6404 }
6405
6406 /*
6407 * Do the formatting and restore the cursor position. "saved_cursor" will
6408 * be adjusted for the text formatting.
6409 */
6410 saved_cursor = pos;
Bram Moolenaar81a82092008-03-12 16:27:00 +00006411 format_lines((linenr_T)-1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412 curwin->w_cursor = saved_cursor;
6413 saved_cursor.lnum = 0;
6414
6415 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6416 {
6417 /* "cannot happen" */
6418 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6419 coladvance((colnr_T)MAXCOL);
6420 }
6421 else
6422 check_cursor_col();
6423
6424 /* Insert mode: If the cursor is now after the end of the line while it
6425 * previously wasn't, the line was broken. Because of the rule above we
6426 * need to add a space when 'w' is in 'formatoptions' to keep a paragraph
6427 * formatted. */
6428 if (!wasatend && has_format_option(FO_WHITE_PAR))
6429 {
6430 new = ml_get_curline();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006431 len = (colnr_T)STRLEN(new);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 if (curwin->w_cursor.col == len)
6433 {
6434 pnew = vim_strnsave(new, len + 2);
6435 pnew[len] = ' ';
6436 pnew[len + 1] = NUL;
6437 ml_replace(curwin->w_cursor.lnum, pnew, FALSE);
6438 /* remove the space later */
6439 did_add_space = TRUE;
6440 }
6441 else
6442 /* may remove added space */
6443 check_auto_format(FALSE);
6444 }
6445
6446 check_cursor();
6447}
6448
6449/*
6450 * When an extra space was added to continue a paragraph for auto-formatting,
6451 * delete it now. The space must be under the cursor, just after the insert
6452 * position.
6453 */
6454 static void
6455check_auto_format(end_insert)
6456 int end_insert; /* TRUE when ending Insert mode */
6457{
6458 int c = ' ';
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006459 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460
6461 if (did_add_space)
6462 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006463 cc = gchar_cursor();
6464 if (!WHITECHAR(cc))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465 /* Somehow the space was removed already. */
6466 did_add_space = FALSE;
6467 else
6468 {
6469 if (!end_insert)
6470 {
6471 inc_cursor();
6472 c = gchar_cursor();
6473 dec_cursor();
6474 }
6475 if (c != NUL)
6476 {
6477 /* The space is no longer at the end of the line, delete it. */
6478 del_char(FALSE);
6479 did_add_space = FALSE;
6480 }
6481 }
6482 }
6483}
6484
6485/*
6486 * Find out textwidth to be used for formatting:
6487 * if 'textwidth' option is set, use it
6488 * else if 'wrapmargin' option is set, use W_WIDTH(curwin) - 'wrapmargin'
6489 * if invalid value, use 0.
6490 * Set default to window width (maximum 79) for "gq" operator.
6491 */
6492 int
6493comp_textwidth(ff)
Bram Moolenaar91170f82006-05-05 21:15:17 +00006494 int ff; /* force formatting (for "gq" command) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495{
6496 int textwidth;
6497
6498 textwidth = curbuf->b_p_tw;
6499 if (textwidth == 0 && curbuf->b_p_wm)
6500 {
6501 /* The width is the window width minus 'wrapmargin' minus all the
6502 * things that add to the margin. */
6503 textwidth = W_WIDTH(curwin) - curbuf->b_p_wm;
6504#ifdef FEAT_CMDWIN
6505 if (cmdwin_type != 0)
6506 textwidth -= 1;
6507#endif
6508#ifdef FEAT_FOLDING
6509 textwidth -= curwin->w_p_fdc;
6510#endif
6511#ifdef FEAT_SIGNS
6512 if (curwin->w_buffer->b_signlist != NULL
6513# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02006514 || netbeans_active()
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515# endif
6516 )
6517 textwidth -= 1;
6518#endif
Bram Moolenaar64486672010-05-16 15:46:46 +02006519 if (curwin->w_p_nu || curwin->w_p_rnu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520 textwidth -= 8;
6521 }
6522 if (textwidth < 0)
6523 textwidth = 0;
6524 if (ff && textwidth == 0)
6525 {
6526 textwidth = W_WIDTH(curwin) - 1;
6527 if (textwidth > 79)
6528 textwidth = 79;
6529 }
6530 return textwidth;
6531}
6532
6533/*
6534 * Put a character in the redo buffer, for when just after a CTRL-V.
6535 */
6536 static void
6537redo_literal(c)
6538 int c;
6539{
6540 char_u buf[10];
6541
6542 /* Only digits need special treatment. Translate them into a string of
6543 * three digits. */
6544 if (VIM_ISDIGIT(c))
6545 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006546 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006547 AppendToRedobuff(buf);
6548 }
6549 else
6550 AppendCharToRedobuff(c);
6551}
6552
6553/*
6554 * start_arrow() is called when an arrow key is used in insert mode.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006555 * For undo/redo it resembles hitting the <ESC> key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 */
6557 static void
6558start_arrow(end_insert_pos)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006559 pos_T *end_insert_pos; /* can be NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560{
6561 if (!arrow_used) /* something has been inserted */
6562 {
6563 AppendToRedobuff(ESC_STR);
6564 stop_insert(end_insert_pos, FALSE);
6565 arrow_used = TRUE; /* this means we stopped the current insert */
6566 }
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006567#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00006568 check_spell_redraw();
6569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570}
6571
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00006572#ifdef FEAT_SPELL
Bram Moolenaar217ad922005-03-20 22:37:15 +00006573/*
6574 * If we skipped highlighting word at cursor, do it now.
6575 * It may be skipped again, thus reset spell_redraw_lnum first.
6576 */
6577 static void
6578check_spell_redraw()
6579{
6580 if (spell_redraw_lnum != 0)
6581 {
6582 linenr_T lnum = spell_redraw_lnum;
6583
6584 spell_redraw_lnum = 0;
6585 redrawWinline(lnum, FALSE);
6586 }
6587}
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006588
6589/*
6590 * Called when starting CTRL_X_SPELL mode: Move backwards to a previous badly
6591 * spelled word, if there is one.
6592 */
6593 static void
6594spell_back_to_badword()
6595{
6596 pos_T tpos = curwin->w_cursor;
6597
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00006598 spell_bad_len = spell_move_to(curwin, BACKWARD, TRUE, TRUE, NULL);
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00006599 if (curwin->w_cursor.col != tpos.col)
6600 start_arrow(&tpos);
6601}
Bram Moolenaar217ad922005-03-20 22:37:15 +00006602#endif
6603
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604/*
6605 * stop_arrow() is called before a change is made in insert mode.
6606 * If an arrow key has been used, start a new insertion.
6607 * Returns FAIL if undo is impossible, shouldn't insert then.
6608 */
6609 int
6610stop_arrow()
6611{
6612 if (arrow_used)
6613 {
6614 if (u_save_cursor() == OK)
6615 {
6616 arrow_used = FALSE;
6617 ins_need_undo = FALSE;
6618 }
6619 Insstart = curwin->w_cursor; /* new insertion starts here */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006620 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline());
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 ai_col = 0;
6622#ifdef FEAT_VREPLACE
6623 if (State & VREPLACE_FLAG)
6624 {
6625 orig_line_count = curbuf->b_ml.ml_line_count;
6626 vr_lines_changed = 1;
6627 }
6628#endif
6629 ResetRedobuff();
6630 AppendToRedobuff((char_u *)"1i"); /* pretend we start an insertion */
Bram Moolenaara9b1e742005-12-19 22:14:58 +00006631 new_insert_skip = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 }
6633 else if (ins_need_undo)
6634 {
6635 if (u_save_cursor() == OK)
6636 ins_need_undo = FALSE;
6637 }
6638
6639#ifdef FEAT_FOLDING
6640 /* Always open fold at the cursor line when inserting something. */
6641 foldOpenCursor();
6642#endif
6643
6644 return (arrow_used || ins_need_undo ? FAIL : OK);
6645}
6646
6647/*
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006648 * Do a few things to stop inserting.
6649 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
6650 * to another window/buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 */
6652 static void
6653stop_insert(end_insert_pos, esc)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006654 pos_T *end_insert_pos;
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006655 int esc; /* called by ins_esc() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656{
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006657 int cc;
6658 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006659
6660 stop_redo_ins();
6661 replace_flush(); /* abandon replace stack */
6662
6663 /*
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006664 * Save the inserted text for later redo with ^@ and CTRL-A.
6665 * Don't do it when "restart_edit" was set and nothing was inserted,
6666 * otherwise CTRL-O w and then <Left> will clear "last_insert".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006668 ptr = get_inserted();
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00006669 if (did_restart_edit == 0 || (ptr != NULL
6670 && (int)STRLEN(ptr) > new_insert_skip))
Bram Moolenaar83c465c2005-12-16 21:53:56 +00006671 {
6672 vim_free(last_insert);
6673 last_insert = ptr;
6674 last_insert_skip = new_insert_skip;
6675 }
6676 else
6677 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006679 if (!arrow_used && end_insert_pos != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006680 {
6681 /* Auto-format now. It may seem strange to do this when stopping an
6682 * insertion (or moving the cursor), but it's required when appending
6683 * a line and having it end in a space. But only do it when something
6684 * was actually inserted, otherwise undo won't work. */
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006685 if (!ins_need_undo && has_format_option(FO_AUTO))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006687 pos_T tpos = curwin->w_cursor;
6688
Bram Moolenaar071d4272004-06-13 20:20:40 +00006689 /* When the cursor is at the end of the line after a space the
6690 * formatting will move it to the following word. Avoid that by
6691 * moving the cursor onto the space. */
6692 cc = 'x';
6693 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
6694 {
6695 dec_cursor();
6696 cc = gchar_cursor();
6697 if (!vim_iswhite(cc))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006698 curwin->w_cursor = tpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 }
6700
6701 auto_format(TRUE, FALSE);
6702
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006703 if (vim_iswhite(cc))
6704 {
6705 if (gchar_cursor() != NUL)
6706 inc_cursor();
6707#ifdef FEAT_VIRTUALEDIT
6708 /* If the cursor is still at the same character, also keep
6709 * the "coladd". */
6710 if (gchar_cursor() == NUL
6711 && curwin->w_cursor.lnum == tpos.lnum
6712 && curwin->w_cursor.col == tpos.col)
6713 curwin->w_cursor.coladd = tpos.coladd;
6714#endif
6715 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 }
6717
6718 /* If a space was inserted for auto-formatting, remove it now. */
6719 check_auto_format(TRUE);
6720
6721 /* If we just did an auto-indent, remove the white space from the end
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006722 * of the line, and put the cursor back.
Bram Moolenaar4be50682009-05-26 09:02:10 +00006723 * Do this when ESC was used or moving the cursor up/down.
6724 * Check for the old position still being valid, just in case the text
6725 * got changed unexpectedly. */
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006726 if (did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
Bram Moolenaar4be50682009-05-26 09:02:10 +00006727 && curwin->w_cursor.lnum != end_insert_pos->lnum))
6728 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006730 pos_T tpos = curwin->w_cursor;
6731
6732 curwin->w_cursor = *end_insert_pos;
Bram Moolenaar4be50682009-05-26 09:02:10 +00006733 check_cursor_col(); /* make sure it is not past the line */
Bram Moolenaar39f05632006-03-19 22:15:26 +00006734 for (;;)
6735 {
6736 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
6737 --curwin->w_cursor.col;
6738 cc = gchar_cursor();
6739 if (!vim_iswhite(cc))
6740 break;
Bram Moolenaar4be50682009-05-26 09:02:10 +00006741 if (del_char(TRUE) == FAIL)
6742 break; /* should not happen */
Bram Moolenaar39f05632006-03-19 22:15:26 +00006743 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006744 if (curwin->w_cursor.lnum != tpos.lnum)
6745 curwin->w_cursor = tpos;
6746 else if (cc != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006747 ++curwin->w_cursor.col; /* put cursor back on the NUL */
6748
6749#ifdef FEAT_VISUAL
6750 /* <C-S-Right> may have started Visual mode, adjust the position for
6751 * deleted characters. */
6752 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum)
6753 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006754 int len = (int)STRLEN(ml_get_curline());
6755
6756 if (VIsual.col > len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006758 VIsual.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006759# ifdef FEAT_VIRTUALEDIT
6760 VIsual.coladd = 0;
6761# endif
6762 }
6763 }
6764#endif
6765 }
6766 }
6767 did_ai = FALSE;
6768#ifdef FEAT_SMARTINDENT
6769 did_si = FALSE;
6770 can_si = FALSE;
6771 can_si_back = FALSE;
6772#endif
6773
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006774 /* Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
6775 * now in a different buffer. */
6776 if (end_insert_pos != NULL)
6777 {
6778 curbuf->b_op_start = Insstart;
6779 curbuf->b_op_end = *end_insert_pos;
6780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781}
6782
6783/*
6784 * Set the last inserted text to a single character.
6785 * Used for the replace command.
6786 */
6787 void
6788set_last_insert(c)
6789 int c;
6790{
6791 char_u *s;
6792
6793 vim_free(last_insert);
6794#ifdef FEAT_MBYTE
6795 last_insert = alloc(MB_MAXBYTES * 3 + 5);
6796#else
6797 last_insert = alloc(6);
6798#endif
6799 if (last_insert != NULL)
6800 {
6801 s = last_insert;
6802 /* Use the CTRL-V only when entering a special char */
6803 if (c < ' ' || c == DEL)
6804 *s++ = Ctrl_V;
6805 s = add_char2buf(c, s);
6806 *s++ = ESC;
6807 *s++ = NUL;
6808 last_insert_skip = 0;
6809 }
6810}
6811
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006812#if defined(EXITFREE) || defined(PROTO)
6813 void
6814free_last_insert()
6815{
6816 vim_free(last_insert);
6817 last_insert = NULL;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00006818# ifdef FEAT_INS_EXPAND
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00006819 vim_free(compl_orig_text);
6820 compl_orig_text = NULL;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00006821# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006822}
6823#endif
6824
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825/*
6826 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
6827 * and CSI. Handle multi-byte characters.
6828 * Returns a pointer to after the added bytes.
6829 */
6830 char_u *
6831add_char2buf(c, s)
6832 int c;
6833 char_u *s;
6834{
6835#ifdef FEAT_MBYTE
6836 char_u temp[MB_MAXBYTES];
6837 int i;
6838 int len;
6839
6840 len = (*mb_char2bytes)(c, temp);
6841 for (i = 0; i < len; ++i)
6842 {
6843 c = temp[i];
6844#endif
6845 /* Need to escape K_SPECIAL and CSI like in the typeahead buffer. */
6846 if (c == K_SPECIAL)
6847 {
6848 *s++ = K_SPECIAL;
6849 *s++ = KS_SPECIAL;
6850 *s++ = KE_FILLER;
6851 }
6852#ifdef FEAT_GUI
6853 else if (c == CSI)
6854 {
6855 *s++ = CSI;
6856 *s++ = KS_EXTRA;
6857 *s++ = (int)KE_CSI;
6858 }
6859#endif
6860 else
6861 *s++ = c;
6862#ifdef FEAT_MBYTE
6863 }
6864#endif
6865 return s;
6866}
6867
6868/*
6869 * move cursor to start of line
6870 * if flags & BL_WHITE move to first non-white
6871 * if flags & BL_SOL move to first non-white if startofline is set,
6872 * otherwise keep "curswant" column
6873 * if flags & BL_FIX don't leave the cursor on a NUL.
6874 */
6875 void
6876beginline(flags)
6877 int flags;
6878{
6879 if ((flags & BL_SOL) && !p_sol)
6880 coladvance(curwin->w_curswant);
6881 else
6882 {
6883 curwin->w_cursor.col = 0;
6884#ifdef FEAT_VIRTUALEDIT
6885 curwin->w_cursor.coladd = 0;
6886#endif
6887
6888 if (flags & (BL_WHITE | BL_SOL))
6889 {
6890 char_u *ptr;
6891
6892 for (ptr = ml_get_curline(); vim_iswhite(*ptr)
6893 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
6894 ++curwin->w_cursor.col;
6895 }
6896 curwin->w_set_curswant = TRUE;
6897 }
6898}
6899
6900/*
6901 * oneright oneleft cursor_down cursor_up
6902 *
6903 * Move one char {right,left,down,up}.
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00006904 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 * Return OK when successful, FAIL when we hit a line of file boundary.
6906 */
6907
6908 int
6909oneright()
6910{
6911 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913
6914#ifdef FEAT_VIRTUALEDIT
6915 if (virtual_active())
6916 {
6917 pos_T prevpos = curwin->w_cursor;
6918
6919 /* Adjust for multi-wide char (excluding TAB) */
6920 ptr = ml_get_cursor();
6921 coladvance(getviscol() + ((*ptr != TAB && vim_isprintc(
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00006922# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923 (*mb_ptr2char)(ptr)
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00006924# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 *ptr
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00006926# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927 ))
6928 ? ptr2cells(ptr) : 1));
6929 curwin->w_set_curswant = TRUE;
6930 /* Return OK if the cursor moved, FAIL otherwise (at window edge). */
6931 return (prevpos.col != curwin->w_cursor.col
6932 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
6933 }
6934#endif
6935
6936 ptr = ml_get_cursor();
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00006937 if (*ptr == NUL)
6938 return FAIL; /* already at the very end */
6939
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940#ifdef FEAT_MBYTE
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00006941 if (has_mbyte)
6942 l = (*mb_ptr2len)(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943 else
6944#endif
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00006945 l = 1;
6946
6947 /* move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
6948 * contains "onemore". */
6949 if (ptr[l] == NUL
6950#ifdef FEAT_VIRTUALEDIT
6951 && (ve_flags & VE_ONEMORE) == 0
6952#endif
6953 )
6954 return FAIL;
6955 curwin->w_cursor.col += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006956
6957 curwin->w_set_curswant = TRUE;
6958 return OK;
6959}
6960
6961 int
6962oneleft()
6963{
6964#ifdef FEAT_VIRTUALEDIT
6965 if (virtual_active())
6966 {
6967 int width;
6968 int v = getviscol();
6969
6970 if (v == 0)
6971 return FAIL;
6972
6973# ifdef FEAT_LINEBREAK
6974 /* We might get stuck on 'showbreak', skip over it. */
6975 width = 1;
6976 for (;;)
6977 {
6978 coladvance(v - width);
6979 /* getviscol() is slow, skip it when 'showbreak' is empty and
6980 * there are no multi-byte characters */
6981 if ((*p_sbr == NUL
6982# ifdef FEAT_MBYTE
6983 && !has_mbyte
6984# endif
6985 ) || getviscol() < v)
6986 break;
6987 ++width;
6988 }
6989# else
6990 coladvance(v - 1);
6991# endif
6992
6993 if (curwin->w_cursor.coladd == 1)
6994 {
6995 char_u *ptr;
6996
6997 /* Adjust for multi-wide char (not a TAB) */
6998 ptr = ml_get_cursor();
6999 if (*ptr != TAB && vim_isprintc(
7000# ifdef FEAT_MBYTE
7001 (*mb_ptr2char)(ptr)
7002# else
7003 *ptr
7004# endif
7005 ) && ptr2cells(ptr) > 1)
7006 curwin->w_cursor.coladd = 0;
7007 }
7008
7009 curwin->w_set_curswant = TRUE;
7010 return OK;
7011 }
7012#endif
7013
7014 if (curwin->w_cursor.col == 0)
7015 return FAIL;
7016
7017 curwin->w_set_curswant = TRUE;
7018 --curwin->w_cursor.col;
7019
7020#ifdef FEAT_MBYTE
7021 /* if the character on the left of the current cursor is a multi-byte
7022 * character, move to its first byte */
7023 if (has_mbyte)
7024 mb_adjust_cursor();
7025#endif
7026 return OK;
7027}
7028
7029 int
7030cursor_up(n, upd_topline)
7031 long n;
7032 int upd_topline; /* When TRUE: update topline */
7033{
7034 linenr_T lnum;
7035
7036 if (n > 0)
7037 {
7038 lnum = curwin->w_cursor.lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007039 /* This fails if the cursor is already in the first line or the count
7040 * is larger than the line number and '-' is in 'cpoptions' */
7041 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042 return FAIL;
7043 if (n >= lnum)
7044 lnum = 1;
7045 else
7046#ifdef FEAT_FOLDING
7047 if (hasAnyFolding(curwin))
7048 {
7049 /*
7050 * Count each sequence of folded lines as one logical line.
7051 */
7052 /* go to the the start of the current fold */
7053 (void)hasFolding(lnum, &lnum, NULL);
7054
7055 while (n--)
7056 {
7057 /* move up one line */
7058 --lnum;
7059 if (lnum <= 1)
7060 break;
7061 /* If we entered a fold, move to the beginning, unless in
7062 * Insert mode or when 'foldopen' contains "all": it will open
7063 * in a moment. */
7064 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL)))
7065 (void)hasFolding(lnum, &lnum, NULL);
7066 }
7067 if (lnum < 1)
7068 lnum = 1;
7069 }
7070 else
7071#endif
7072 lnum -= n;
7073 curwin->w_cursor.lnum = lnum;
7074 }
7075
7076 /* try to advance to the column we want to be at */
7077 coladvance(curwin->w_curswant);
7078
7079 if (upd_topline)
7080 update_topline(); /* make sure curwin->w_topline is valid */
7081
7082 return OK;
7083}
7084
7085/*
7086 * Cursor down a number of logical lines.
7087 */
7088 int
7089cursor_down(n, upd_topline)
7090 long n;
7091 int upd_topline; /* When TRUE: update topline */
7092{
7093 linenr_T lnum;
7094
7095 if (n > 0)
7096 {
7097 lnum = curwin->w_cursor.lnum;
7098#ifdef FEAT_FOLDING
7099 /* Move to last line of fold, will fail if it's the end-of-file. */
7100 (void)hasFolding(lnum, NULL, &lnum);
7101#endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00007102 /* This fails if the cursor is already in the last line or would move
7103 * beyound the last line and '-' is in 'cpoptions' */
7104 if (lnum >= curbuf->b_ml.ml_line_count
7105 || (lnum + n > curbuf->b_ml.ml_line_count
7106 && vim_strchr(p_cpo, CPO_MINUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107 return FAIL;
7108 if (lnum + n >= curbuf->b_ml.ml_line_count)
7109 lnum = curbuf->b_ml.ml_line_count;
7110 else
7111#ifdef FEAT_FOLDING
7112 if (hasAnyFolding(curwin))
7113 {
7114 linenr_T last;
7115
7116 /* count each sequence of folded lines as one logical line */
7117 while (n--)
7118 {
7119 if (hasFolding(lnum, NULL, &last))
7120 lnum = last + 1;
7121 else
7122 ++lnum;
7123 if (lnum >= curbuf->b_ml.ml_line_count)
7124 break;
7125 }
7126 if (lnum > curbuf->b_ml.ml_line_count)
7127 lnum = curbuf->b_ml.ml_line_count;
7128 }
7129 else
7130#endif
7131 lnum += n;
7132 curwin->w_cursor.lnum = lnum;
7133 }
7134
7135 /* try to advance to the column we want to be at */
7136 coladvance(curwin->w_curswant);
7137
7138 if (upd_topline)
7139 update_topline(); /* make sure curwin->w_topline is valid */
7140
7141 return OK;
7142}
7143
7144/*
7145 * Stuff the last inserted text in the read buffer.
7146 * Last_insert actually is a copy of the redo buffer, so we
7147 * first have to remove the command.
7148 */
7149 int
7150stuff_inserted(c, count, no_esc)
7151 int c; /* Command character to be inserted */
7152 long count; /* Repeat this many times */
7153 int no_esc; /* Don't add an ESC at the end */
7154{
7155 char_u *esc_ptr;
7156 char_u *ptr;
7157 char_u *last_ptr;
7158 char_u last = NUL;
7159
7160 ptr = get_last_insert();
7161 if (ptr == NULL)
7162 {
7163 EMSG(_(e_noinstext));
7164 return FAIL;
7165 }
7166
7167 /* may want to stuff the command character, to start Insert mode */
7168 if (c != NUL)
7169 stuffcharReadbuff(c);
7170 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL)
7171 *esc_ptr = NUL; /* remove the ESC */
7172
7173 /* when the last char is either "0" or "^" it will be quoted if no ESC
7174 * comes after it OR if it will inserted more than once and "ptr"
7175 * starts with ^D. -- Acevedo
7176 */
7177 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
7178 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
7179 && (no_esc || (*ptr == Ctrl_D && count > 1)))
7180 {
7181 last = *last_ptr;
7182 *last_ptr = NUL;
7183 }
7184
7185 do
7186 {
7187 stuffReadbuff(ptr);
7188 /* a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^" */
7189 if (last)
7190 stuffReadbuff((char_u *)(last == '0'
7191 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0")
7192 : IF_EB("\026^", CTRL_V_STR "^")));
7193 }
7194 while (--count > 0);
7195
7196 if (last)
7197 *last_ptr = last;
7198
7199 if (esc_ptr != NULL)
7200 *esc_ptr = ESC; /* put the ESC back */
7201
7202 /* may want to stuff a trailing ESC, to get out of Insert mode */
7203 if (!no_esc)
7204 stuffcharReadbuff(ESC);
7205
7206 return OK;
7207}
7208
7209 char_u *
7210get_last_insert()
7211{
7212 if (last_insert == NULL)
7213 return NULL;
7214 return last_insert + last_insert_skip;
7215}
7216
7217/*
7218 * Get last inserted string, and remove trailing <Esc>.
7219 * Returns pointer to allocated memory (must be freed) or NULL.
7220 */
7221 char_u *
7222get_last_insert_save()
7223{
7224 char_u *s;
7225 int len;
7226
7227 if (last_insert == NULL)
7228 return NULL;
7229 s = vim_strsave(last_insert + last_insert_skip);
7230 if (s != NULL)
7231 {
7232 len = (int)STRLEN(s);
7233 if (len > 0 && s[len - 1] == ESC) /* remove trailing ESC */
7234 s[len - 1] = NUL;
7235 }
7236 return s;
7237}
7238
7239/*
7240 * Check the word in front of the cursor for an abbreviation.
7241 * Called when the non-id character "c" has been entered.
7242 * When an abbreviation is recognized it is removed from the text and
7243 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
7244 */
7245 static int
7246echeck_abbr(c)
7247 int c;
7248{
7249 /* Don't check for abbreviation in paste mode, when disabled and just
7250 * after moving around with cursor keys. */
7251 if (p_paste || no_abbr || arrow_used)
7252 return FALSE;
7253
7254 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
7255 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
7256}
7257
7258/*
7259 * replace-stack functions
7260 *
7261 * When replacing characters, the replaced characters are remembered for each
7262 * new character. This is used to re-insert the old text when backspacing.
7263 *
7264 * There is a NUL headed list of characters for each character that is
7265 * currently in the file after the insertion point. When BS is used, one NUL
7266 * headed list is put back for the deleted character.
7267 *
7268 * For a newline, there are two NUL headed lists. One contains the characters
7269 * that the NL replaced. The extra one stores the characters after the cursor
7270 * that were deleted (always white space).
7271 *
7272 * Replace_offset is normally 0, in which case replace_push will add a new
7273 * character at the end of the stack. If replace_offset is not 0, that many
7274 * characters will be left on the stack above the newly inserted character.
7275 */
7276
Bram Moolenaar6c0b44b2005-06-01 21:56:33 +00007277static char_u *replace_stack = NULL;
7278static long replace_stack_nr = 0; /* next entry in replace stack */
7279static long replace_stack_len = 0; /* max. number of entries */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280
7281 void
7282replace_push(c)
7283 int c; /* character that is replaced (NUL is none) */
7284{
7285 char_u *p;
7286
7287 if (replace_stack_nr < replace_offset) /* nothing to do */
7288 return;
7289 if (replace_stack_len <= replace_stack_nr)
7290 {
7291 replace_stack_len += 50;
7292 p = lalloc(sizeof(char_u) * replace_stack_len, TRUE);
7293 if (p == NULL) /* out of memory */
7294 {
7295 replace_stack_len -= 50;
7296 return;
7297 }
7298 if (replace_stack != NULL)
7299 {
7300 mch_memmove(p, replace_stack,
7301 (size_t)(replace_stack_nr * sizeof(char_u)));
7302 vim_free(replace_stack);
7303 }
7304 replace_stack = p;
7305 }
7306 p = replace_stack + replace_stack_nr - replace_offset;
7307 if (replace_offset)
7308 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
7309 *p = c;
7310 ++replace_stack_nr;
7311}
7312
Bram Moolenaar2c994e82008-01-02 16:49:36 +00007313#if defined(FEAT_MBYTE) || defined(PROTO)
7314/*
7315 * Push a character onto the replace stack. Handles a multi-byte character in
7316 * reverse byte order, so that the first byte is popped off first.
7317 * Return the number of bytes done (includes composing characters).
7318 */
7319 int
7320replace_push_mb(p)
7321 char_u *p;
7322{
7323 int l = (*mb_ptr2len)(p);
7324 int j;
7325
7326 for (j = l - 1; j >= 0; --j)
7327 replace_push(p[j]);
7328 return l;
7329}
7330#endif
7331
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332/*
7333 * Pop one item from the replace stack.
7334 * return -1 if stack empty
7335 * return replaced character or NUL otherwise
7336 */
7337 static int
7338replace_pop()
7339{
7340 if (replace_stack_nr == 0)
7341 return -1;
7342 return (int)replace_stack[--replace_stack_nr];
7343}
7344
7345/*
7346 * Join the top two items on the replace stack. This removes to "off"'th NUL
7347 * encountered.
7348 */
7349 static void
7350replace_join(off)
7351 int off; /* offset for which NUL to remove */
7352{
7353 int i;
7354
7355 for (i = replace_stack_nr; --i >= 0; )
7356 if (replace_stack[i] == NUL && off-- <= 0)
7357 {
7358 --replace_stack_nr;
7359 mch_memmove(replace_stack + i, replace_stack + i + 1,
7360 (size_t)(replace_stack_nr - i));
7361 return;
7362 }
7363}
7364
7365/*
7366 * Pop bytes from the replace stack until a NUL is found, and insert them
7367 * before the cursor. Can only be used in REPLACE or VREPLACE mode.
7368 */
7369 static void
7370replace_pop_ins()
7371{
7372 int cc;
7373 int oldState = State;
7374
7375 State = NORMAL; /* don't want REPLACE here */
7376 while ((cc = replace_pop()) > 0)
7377 {
7378#ifdef FEAT_MBYTE
7379 mb_replace_pop_ins(cc);
7380#else
7381 ins_char(cc);
7382#endif
7383 dec_cursor();
7384 }
7385 State = oldState;
7386}
7387
7388#ifdef FEAT_MBYTE
7389/*
7390 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
7391 * indicates a multi-byte char, pop the other bytes too.
7392 */
7393 static void
7394mb_replace_pop_ins(cc)
7395 int cc;
7396{
7397 int n;
7398 char_u buf[MB_MAXBYTES];
7399 int i;
7400 int c;
7401
7402 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
7403 {
7404 buf[0] = cc;
7405 for (i = 1; i < n; ++i)
7406 buf[i] = replace_pop();
7407 ins_bytes_len(buf, n);
7408 }
7409 else
7410 ins_char(cc);
7411
7412 if (enc_utf8)
7413 /* Handle composing chars. */
7414 for (;;)
7415 {
7416 c = replace_pop();
7417 if (c == -1) /* stack empty */
7418 break;
7419 if ((n = MB_BYTE2LEN(c)) == 1)
7420 {
7421 /* Not a multi-byte char, put it back. */
7422 replace_push(c);
7423 break;
7424 }
7425 else
7426 {
7427 buf[0] = c;
7428 for (i = 1; i < n; ++i)
7429 buf[i] = replace_pop();
7430 if (utf_iscomposing(utf_ptr2char(buf)))
7431 ins_bytes_len(buf, n);
7432 else
7433 {
7434 /* Not a composing char, put it back. */
7435 for (i = n - 1; i >= 0; --i)
7436 replace_push(buf[i]);
7437 break;
7438 }
7439 }
7440 }
7441}
7442#endif
7443
7444/*
7445 * make the replace stack empty
7446 * (called when exiting replace mode)
7447 */
7448 static void
7449replace_flush()
7450{
7451 vim_free(replace_stack);
7452 replace_stack = NULL;
7453 replace_stack_len = 0;
7454 replace_stack_nr = 0;
7455}
7456
7457/*
7458 * Handle doing a BS for one character.
7459 * cc < 0: replace stack empty, just move cursor
7460 * cc == 0: character was inserted, delete it
7461 * cc > 0: character was replaced, put cc (first byte of original char) back
7462 * and check for more characters to be put back
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007463 * When "limit_col" is >= 0, don't delete before this column. Matters when
7464 * using composing characters, use del_char_after_col() instead of del_char().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007465 */
7466 static void
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007467replace_do_bs(limit_col)
7468 int limit_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469{
7470 int cc;
7471#ifdef FEAT_VREPLACE
7472 int orig_len = 0;
7473 int ins_len;
7474 int orig_vcols = 0;
7475 colnr_T start_vcol;
7476 char_u *p;
7477 int i;
7478 int vcol;
7479#endif
7480
7481 cc = replace_pop();
7482 if (cc > 0)
7483 {
7484#ifdef FEAT_VREPLACE
7485 if (State & VREPLACE_FLAG)
7486 {
7487 /* Get the number of screen cells used by the character we are
7488 * going to delete. */
7489 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
7490 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
7491 }
7492#endif
7493#ifdef FEAT_MBYTE
7494 if (has_mbyte)
7495 {
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007496 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497# ifdef FEAT_VREPLACE
7498 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007499 orig_len = (int)STRLEN(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00007500# endif
7501 replace_push(cc);
7502 }
7503 else
7504#endif
7505 {
7506 pchar_cursor(cc);
7507#ifdef FEAT_VREPLACE
7508 if (State & VREPLACE_FLAG)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007509 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510#endif
7511 }
7512 replace_pop_ins();
7513
7514#ifdef FEAT_VREPLACE
7515 if (State & VREPLACE_FLAG)
7516 {
7517 /* Get the number of screen cells used by the inserted characters */
7518 p = ml_get_cursor();
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007519 ins_len = (int)STRLEN(p) - orig_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520 vcol = start_vcol;
7521 for (i = 0; i < ins_len; ++i)
7522 {
7523 vcol += chartabsize(p + i, vcol);
7524#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007525 i += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007526#endif
7527 }
7528 vcol -= start_vcol;
7529
7530 /* Delete spaces that were inserted after the cursor to keep the
7531 * text aligned. */
7532 curwin->w_cursor.col += ins_len;
7533 while (vcol > orig_vcols && gchar_cursor() == ' ')
7534 {
7535 del_char(FALSE);
7536 ++orig_vcols;
7537 }
7538 curwin->w_cursor.col -= ins_len;
7539 }
7540#endif
7541
7542 /* mark the buffer as changed and prepare for displaying */
7543 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
7544 }
7545 else if (cc == 0)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00007546 (void)del_char_after_col(limit_col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547}
7548
7549#ifdef FEAT_CINDENT
7550/*
7551 * Return TRUE if C-indenting is on.
7552 */
7553 static int
7554cindent_on()
7555{
7556 return (!p_paste && (curbuf->b_p_cin
7557# ifdef FEAT_EVAL
7558 || *curbuf->b_p_inde != NUL
7559# endif
7560 ));
7561}
7562#endif
7563
7564#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
7565/*
7566 * Re-indent the current line, based on the current contents of it and the
7567 * surrounding lines. Fixing the cursor position seems really easy -- I'm very
7568 * confused what all the part that handles Control-T is doing that I'm not.
7569 * "get_the_indent" should be get_c_indent, get_expr_indent or get_lisp_indent.
7570 */
7571
7572 void
7573fixthisline(get_the_indent)
7574 int (*get_the_indent) __ARGS((void));
7575{
Bram Moolenaar21b17e72008-01-16 19:03:13 +00007576 change_indent(INDENT_SET, get_the_indent(), FALSE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007577 if (linewhite(curwin->w_cursor.lnum))
7578 did_ai = TRUE; /* delete the indent if the line stays empty */
7579}
7580
7581 void
7582fix_indent()
7583{
7584 if (p_paste)
7585 return;
7586# ifdef FEAT_LISP
7587 if (curbuf->b_p_lisp && curbuf->b_p_ai)
7588 fixthisline(get_lisp_indent);
7589# endif
7590# if defined(FEAT_LISP) && defined(FEAT_CINDENT)
7591 else
7592# endif
7593# ifdef FEAT_CINDENT
7594 if (cindent_on())
7595 do_c_expr_indent();
7596# endif
7597}
7598
7599#endif
7600
7601#ifdef FEAT_CINDENT
7602/*
7603 * return TRUE if 'cinkeys' contains the key "keytyped",
7604 * when == '*': Only if key is preceded with '*' (indent before insert)
7605 * when == '!': Only if key is prededed with '!' (don't insert)
7606 * when == ' ': Only if key is not preceded with '*'(indent afterwards)
7607 *
7608 * "keytyped" can have a few special values:
7609 * KEY_OPEN_FORW
7610 * KEY_OPEN_BACK
7611 * KEY_COMPLETE just finished completion.
7612 *
7613 * If line_is_empty is TRUE accept keys with '0' before them.
7614 */
7615 int
7616in_cinkeys(keytyped, when, line_is_empty)
7617 int keytyped;
7618 int when;
7619 int line_is_empty;
7620{
7621 char_u *look;
7622 int try_match;
7623 int try_match_word;
7624 char_u *p;
7625 char_u *line;
7626 int icase;
7627 int i;
7628
Bram Moolenaar30848942009-12-24 14:46:12 +00007629 if (keytyped == NUL)
7630 /* Can happen with CTRL-Y and CTRL-E on a short line. */
7631 return FALSE;
7632
Bram Moolenaar071d4272004-06-13 20:20:40 +00007633#ifdef FEAT_EVAL
7634 if (*curbuf->b_p_inde != NUL)
7635 look = curbuf->b_p_indk; /* 'indentexpr' set: use 'indentkeys' */
7636 else
7637#endif
7638 look = curbuf->b_p_cink; /* 'indentexpr' empty: use 'cinkeys' */
7639 while (*look)
7640 {
7641 /*
7642 * Find out if we want to try a match with this key, depending on
7643 * 'when' and a '*' or '!' before the key.
7644 */
7645 switch (when)
7646 {
7647 case '*': try_match = (*look == '*'); break;
7648 case '!': try_match = (*look == '!'); break;
7649 default: try_match = (*look != '*'); break;
7650 }
7651 if (*look == '*' || *look == '!')
7652 ++look;
7653
7654 /*
7655 * If there is a '0', only accept a match if the line is empty.
7656 * But may still match when typing last char of a word.
7657 */
7658 if (*look == '0')
7659 {
7660 try_match_word = try_match;
7661 if (!line_is_empty)
7662 try_match = FALSE;
7663 ++look;
7664 }
7665 else
7666 try_match_word = FALSE;
7667
7668 /*
7669 * does it look like a control character?
7670 */
7671 if (*look == '^'
7672#ifdef EBCDIC
7673 && (Ctrl_chr(look[1]) != 0)
7674#else
7675 && look[1] >= '?' && look[1] <= '_'
7676#endif
7677 )
7678 {
7679 if (try_match && keytyped == Ctrl_chr(look[1]))
7680 return TRUE;
7681 look += 2;
7682 }
7683 /*
7684 * 'o' means "o" command, open forward.
7685 * 'O' means "O" command, open backward.
7686 */
7687 else if (*look == 'o')
7688 {
7689 if (try_match && keytyped == KEY_OPEN_FORW)
7690 return TRUE;
7691 ++look;
7692 }
7693 else if (*look == 'O')
7694 {
7695 if (try_match && keytyped == KEY_OPEN_BACK)
7696 return TRUE;
7697 ++look;
7698 }
7699
7700 /*
7701 * 'e' means to check for "else" at start of line and just before the
7702 * cursor.
7703 */
7704 else if (*look == 'e')
7705 {
7706 if (try_match && keytyped == 'e' && curwin->w_cursor.col >= 4)
7707 {
7708 p = ml_get_curline();
7709 if (skipwhite(p) == p + curwin->w_cursor.col - 4 &&
7710 STRNCMP(p + curwin->w_cursor.col - 4, "else", 4) == 0)
7711 return TRUE;
7712 }
7713 ++look;
7714 }
7715
7716 /*
7717 * ':' only causes an indent if it is at the end of a label or case
7718 * statement, or when it was before typing the ':' (to fix
7719 * class::method for C++).
7720 */
7721 else if (*look == ':')
7722 {
7723 if (try_match && keytyped == ':')
7724 {
7725 p = ml_get_curline();
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007726 if (cin_iscase(p, FALSE) || cin_isscopedecl(p)
7727 || cin_islabel(30))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007728 return TRUE;
Bram Moolenaar30118152007-06-28 10:49:22 +00007729 /* Need to get the line again after cin_islabel(). */
7730 p = ml_get_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007731 if (curwin->w_cursor.col > 2
7732 && p[curwin->w_cursor.col - 1] == ':'
7733 && p[curwin->w_cursor.col - 2] == ':')
7734 {
7735 p[curwin->w_cursor.col - 1] = ' ';
Bram Moolenaar3acfc302010-07-11 17:23:02 +02007736 i = (cin_iscase(p, FALSE) || cin_isscopedecl(p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007737 || cin_islabel(30));
7738 p = ml_get_curline();
7739 p[curwin->w_cursor.col - 1] = ':';
7740 if (i)
7741 return TRUE;
7742 }
7743 }
7744 ++look;
7745 }
7746
7747
7748 /*
7749 * Is it a key in <>, maybe?
7750 */
7751 else if (*look == '<')
7752 {
7753 if (try_match)
7754 {
7755 /*
7756 * make up some named keys <o>, <O>, <e>, <0>, <>>, <<>, <*>,
7757 * <:> and <!> so that people can re-indent on o, O, e, 0, <,
7758 * >, *, : and ! keys if they really really want to.
7759 */
7760 if (vim_strchr((char_u *)"<>!*oOe0:", look[1]) != NULL
7761 && keytyped == look[1])
7762 return TRUE;
7763
7764 if (keytyped == get_special_key_code(look + 1))
7765 return TRUE;
7766 }
7767 while (*look && *look != '>')
7768 look++;
7769 while (*look == '>')
7770 look++;
7771 }
7772
7773 /*
7774 * Is it a word: "=word"?
7775 */
7776 else if (*look == '=' && look[1] != ',' && look[1] != NUL)
7777 {
7778 ++look;
7779 if (*look == '~')
7780 {
7781 icase = TRUE;
7782 ++look;
7783 }
7784 else
7785 icase = FALSE;
7786 p = vim_strchr(look, ',');
7787 if (p == NULL)
7788 p = look + STRLEN(look);
7789 if ((try_match || try_match_word)
7790 && curwin->w_cursor.col >= (colnr_T)(p - look))
7791 {
7792 int match = FALSE;
7793
7794#ifdef FEAT_INS_EXPAND
7795 if (keytyped == KEY_COMPLETE)
7796 {
7797 char_u *s;
7798
7799 /* Just completed a word, check if it starts with "look".
7800 * search back for the start of a word. */
7801 line = ml_get_curline();
7802# ifdef FEAT_MBYTE
7803 if (has_mbyte)
7804 {
7805 char_u *n;
7806
7807 for (s = line + curwin->w_cursor.col; s > line; s = n)
7808 {
7809 n = mb_prevptr(line, s);
7810 if (!vim_iswordp(n))
7811 break;
7812 }
7813 }
7814 else
7815# endif
7816 for (s = line + curwin->w_cursor.col; s > line; --s)
7817 if (!vim_iswordc(s[-1]))
7818 break;
7819 if (s + (p - look) <= line + curwin->w_cursor.col
7820 && (icase
7821 ? MB_STRNICMP(s, look, p - look)
7822 : STRNCMP(s, look, p - look)) == 0)
7823 match = TRUE;
7824 }
7825 else
7826#endif
7827 /* TODO: multi-byte */
7828 if (keytyped == (int)p[-1] || (icase && keytyped < 256
7829 && TOLOWER_LOC(keytyped) == TOLOWER_LOC((int)p[-1])))
7830 {
7831 line = ml_get_cursor();
7832 if ((curwin->w_cursor.col == (colnr_T)(p - look)
7833 || !vim_iswordc(line[-(p - look) - 1]))
7834 && (icase
7835 ? MB_STRNICMP(line - (p - look), look, p - look)
7836 : STRNCMP(line - (p - look), look, p - look))
7837 == 0)
7838 match = TRUE;
7839 }
7840 if (match && try_match_word && !try_match)
7841 {
7842 /* "0=word": Check if there are only blanks before the
7843 * word. */
7844 line = ml_get_curline();
7845 if ((int)(skipwhite(line) - line) !=
7846 (int)(curwin->w_cursor.col - (p - look)))
7847 match = FALSE;
7848 }
7849 if (match)
7850 return TRUE;
7851 }
7852 look = p;
7853 }
7854
7855 /*
7856 * ok, it's a boring generic character.
7857 */
7858 else
7859 {
7860 if (try_match && *look == keytyped)
7861 return TRUE;
7862 ++look;
7863 }
7864
7865 /*
7866 * Skip over ", ".
7867 */
7868 look = skip_to_option_part(look);
7869 }
7870 return FALSE;
7871}
7872#endif /* FEAT_CINDENT */
7873
7874#if defined(FEAT_RIGHTLEFT) || defined(PROTO)
7875/*
7876 * Map Hebrew keyboard when in hkmap mode.
7877 */
7878 int
7879hkmap(c)
7880 int c;
7881{
7882 if (p_hkmapp) /* phonetic mapping, by Ilya Dogolazky */
7883 {
7884 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
7885 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
7886 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
7887 static char_u map[26] =
7888 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
7889 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
7890 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
7891 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
7892 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
7893 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
7894 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
7895 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
7896 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
7897
7898 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
7899 return (int)(map[CharOrd(c)] - 1 + p_aleph);
7900 /* '-1'='sofit' */
7901 else if (c == 'x')
7902 return 'X';
7903 else if (c == 'q')
7904 return '\''; /* {geresh}={'} */
7905 else if (c == 246)
7906 return ' '; /* \"o --> ' ' for a german keyboard */
7907 else if (c == 228)
7908 return ' '; /* \"a --> ' ' -- / -- */
7909 else if (c == 252)
7910 return ' '; /* \"u --> ' ' -- / -- */
7911#ifdef EBCDIC
7912 else if (islower(c))
7913#else
7914 /* NOTE: islower() does not do the right thing for us on Linux so we
7915 * do this the same was as 5.7 and previous, so it works correctly on
7916 * all systems. Specifically, the e.g. Delete and Arrow keys are
7917 * munged and won't work if e.g. searching for Hebrew text.
7918 */
7919 else if (c >= 'a' && c <= 'z')
7920#endif
7921 return (int)(map[CharOrdLow(c)] + p_aleph);
7922 else
7923 return c;
7924 }
7925 else
7926 {
7927 switch (c)
7928 {
7929 case '`': return ';';
7930 case '/': return '.';
7931 case '\'': return ',';
7932 case 'q': return '/';
7933 case 'w': return '\'';
7934
7935 /* Hebrew letters - set offset from 'a' */
7936 case ',': c = '{'; break;
7937 case '.': c = 'v'; break;
7938 case ';': c = 't'; break;
7939 default: {
7940 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
7941
7942#ifdef EBCDIC
7943 /* see note about islower() above */
7944 if (!islower(c))
7945#else
7946 if (c < 'a' || c > 'z')
7947#endif
7948 return c;
7949 c = str[CharOrdLow(c)];
7950 break;
7951 }
7952 }
7953
7954 return (int)(CharOrdLow(c) + p_aleph);
7955 }
7956}
7957#endif
7958
7959 static void
7960ins_reg()
7961{
7962 int need_redraw = FALSE;
7963 int regname;
7964 int literally = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007965#ifdef FEAT_VISUAL
7966 int vis_active = VIsual_active;
7967#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007968
7969 /*
7970 * If we are going to wait for a character, show a '"'.
7971 */
7972 pc_status = PC_STATUS_UNSET;
7973 if (redrawing() && !char_avail())
7974 {
7975 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007976 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007977
7978 edit_putchar('"', TRUE);
7979#ifdef FEAT_CMDL_INFO
7980 add_to_showcmd_c(Ctrl_R);
7981#endif
7982 }
7983
7984#ifdef USE_ON_FLY_SCROLL
7985 dont_scroll = TRUE; /* disallow scrolling here */
7986#endif
7987
7988 /*
7989 * Don't map the register name. This also prevents the mode message to be
7990 * deleted when ESC is hit.
7991 */
7992 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00007993 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007994 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007995 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
7996 {
7997 /* Get a third key for literal register insertion */
7998 literally = regname;
7999#ifdef FEAT_CMDL_INFO
8000 add_to_showcmd_c(literally);
8001#endif
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008002 regname = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008003 LANGMAP_ADJUST(regname, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008004 }
8005 --no_mapping;
8006
8007#ifdef FEAT_EVAL
8008 /*
8009 * Don't call u_sync() while getting the expression,
8010 * evaluating it or giving an error message for it!
8011 */
8012 ++no_u_sync;
8013 if (regname == '=')
8014 {
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008015# ifdef USE_IM_CONTROL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008016 int im_on = im_get_status();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008017# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008018 regname = get_expr_register();
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008019# ifdef USE_IM_CONTROL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008020 /* Restore the Input Method. */
8021 if (im_on)
8022 im_set_active(TRUE);
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008023# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008024 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00008025 if (regname == NUL || !valid_yank_reg(regname, FALSE))
8026 {
8027 vim_beep();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008028 need_redraw = TRUE; /* remove the '"' */
Bram Moolenaar677ee682005-01-27 14:41:15 +00008029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008030 else
8031 {
8032#endif
8033 if (literally == Ctrl_O || literally == Ctrl_P)
8034 {
8035 /* Append the command to the redo buffer. */
8036 AppendCharToRedobuff(Ctrl_R);
8037 AppendCharToRedobuff(literally);
8038 AppendCharToRedobuff(regname);
8039
8040 do_put(regname, BACKWARD, 1L,
8041 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
8042 }
8043 else if (insert_reg(regname, literally) == FAIL)
8044 {
8045 vim_beep();
8046 need_redraw = TRUE; /* remove the '"' */
8047 }
Bram Moolenaar8f999f12005-01-25 22:12:55 +00008048 else if (stop_insert_mode)
8049 /* When the '=' register was used and a function was invoked that
8050 * did ":stopinsert" then stuff_empty() returns FALSE but we won't
8051 * insert anything, need to remove the '"' */
8052 need_redraw = TRUE;
8053
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054#ifdef FEAT_EVAL
8055 }
8056 --no_u_sync;
8057#endif
8058#ifdef FEAT_CMDL_INFO
8059 clear_showcmd();
8060#endif
8061
8062 /* If the inserted register is empty, we need to remove the '"' */
8063 if (need_redraw || stuff_empty())
8064 edit_unputchar();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008065
8066#ifdef FEAT_VISUAL
8067 /* Disallow starting Visual mode here, would get a weird mode. */
8068 if (!vis_active && VIsual_active)
8069 end_visual_mode();
8070#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008071}
8072
8073/*
8074 * CTRL-G commands in Insert mode.
8075 */
8076 static void
8077ins_ctrl_g()
8078{
8079 int c;
8080
8081#ifdef FEAT_INS_EXPAND
8082 /* Right after CTRL-X the cursor will be after the ruler. */
8083 setcursor();
8084#endif
8085
8086 /*
8087 * Don't map the second key. This also prevents the mode message to be
8088 * deleted when ESC is hit.
8089 */
8090 ++no_mapping;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00008091 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008092 --no_mapping;
8093 switch (c)
8094 {
8095 /* CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col */
8096 case K_UP:
8097 case Ctrl_K:
8098 case 'k': ins_up(TRUE);
8099 break;
8100
8101 /* CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col */
8102 case K_DOWN:
8103 case Ctrl_J:
8104 case 'j': ins_down(TRUE);
8105 break;
8106
8107 /* CTRL-G u: start new undoable edit */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008108 case 'u': u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008109 ins_need_undo = TRUE;
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00008110
8111 /* Need to reset Insstart, esp. because a BS that joins
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +00008112 * a line to the previous one must save for undo. */
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00008113 Insstart = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008114 break;
8115
8116 /* Unknown CTRL-G command, reserved for future expansion. */
8117 default: vim_beep();
8118 }
8119}
8120
8121/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008122 * CTRL-^ in Insert mode.
8123 */
8124 static void
8125ins_ctrl_hat()
8126{
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00008127 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008128 {
8129 /* ":lmap" mappings exists, Toggle use of ":lmap" mappings. */
8130 if (State & LANGMAP)
8131 {
8132 curbuf->b_p_iminsert = B_IMODE_NONE;
8133 State &= ~LANGMAP;
8134 }
8135 else
8136 {
8137 curbuf->b_p_iminsert = B_IMODE_LMAP;
8138 State |= LANGMAP;
8139#ifdef USE_IM_CONTROL
8140 im_set_active(FALSE);
8141#endif
8142 }
8143 }
8144#ifdef USE_IM_CONTROL
8145 else
8146 {
8147 /* There are no ":lmap" mappings, toggle IM */
8148 if (im_get_status())
8149 {
8150 curbuf->b_p_iminsert = B_IMODE_NONE;
8151 im_set_active(FALSE);
8152 }
8153 else
8154 {
8155 curbuf->b_p_iminsert = B_IMODE_IM;
8156 State &= ~LANGMAP;
8157 im_set_active(TRUE);
8158 }
8159 }
8160#endif
8161 set_iminsert_global();
8162 showmode();
8163#ifdef FEAT_GUI
8164 /* may show different cursor shape or color */
8165 if (gui.in_use)
8166 gui_update_cursor(TRUE, FALSE);
8167#endif
8168#if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
8169 /* Show/unshow value of 'keymap' in status lines. */
8170 status_redraw_curbuf();
8171#endif
8172}
8173
8174/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008175 * Handle ESC in insert mode.
8176 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
8177 * insert.
8178 */
8179 static int
Bram Moolenaar488c6512005-08-11 20:09:58 +00008180ins_esc(count, cmdchar, nomove)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008181 long *count;
8182 int cmdchar;
Bram Moolenaar488c6512005-08-11 20:09:58 +00008183 int nomove; /* don't move cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008184{
8185 int temp;
8186 static int disabled_redraw = FALSE;
8187
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00008188#ifdef FEAT_SPELL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008189 check_spell_redraw();
8190#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008191#if defined(FEAT_HANGULIN)
8192# if defined(ESC_CHG_TO_ENG_MODE)
8193 hangul_input_state_set(0);
8194# endif
8195 if (composing_hangul)
8196 {
8197 push_raw_key(composing_hangul_buffer, 2);
8198 composing_hangul = 0;
8199 }
8200#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008201
8202 temp = curwin->w_cursor.col;
8203 if (disabled_redraw)
8204 {
8205 --RedrawingDisabled;
8206 disabled_redraw = FALSE;
8207 }
8208 if (!arrow_used)
8209 {
8210 /*
8211 * Don't append the ESC for "r<CR>" and "grx".
Bram Moolenaar12805862005-01-05 22:16:17 +00008212 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
8213 * when "count" is non-zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008214 */
8215 if (cmdchar != 'r' && cmdchar != 'v')
Bram Moolenaar12805862005-01-05 22:16:17 +00008216 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008217
8218 /*
8219 * Repeating insert may take a long time. Check for
8220 * interrupt now and then.
8221 */
8222 if (*count > 0)
8223 {
8224 line_breakcheck();
8225 if (got_int)
8226 *count = 0;
8227 }
8228
8229 if (--*count > 0) /* repeat what was typed */
8230 {
Bram Moolenaar4399ef42005-02-12 14:29:27 +00008231 /* Vi repeats the insert without replacing characters. */
8232 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
8233 State &= ~REPLACE_FLAG;
8234
Bram Moolenaar071d4272004-06-13 20:20:40 +00008235 (void)start_redo_ins();
8236 if (cmdchar == 'r' || cmdchar == 'v')
8237 stuffReadbuff(ESC_STR); /* no ESC in redo buffer */
8238 ++RedrawingDisabled;
8239 disabled_redraw = TRUE;
8240 return FALSE; /* repeat the insert */
8241 }
8242 stop_insert(&curwin->w_cursor, TRUE);
8243 undisplay_dollar();
8244 }
8245
8246 /* When an autoindent was removed, curswant stays after the
8247 * indent */
8248 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
8249 curwin->w_set_curswant = TRUE;
8250
8251 /* Remember the last Insert position in the '^ mark. */
8252 if (!cmdmod.keepjumps)
8253 curbuf->b_last_insert = curwin->w_cursor;
8254
8255 /*
8256 * The cursor should end up on the last inserted character.
Bram Moolenaar488c6512005-08-11 20:09:58 +00008257 * Don't do it for CTRL-O, unless past the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008258 */
Bram Moolenaar488c6512005-08-11 20:09:58 +00008259 if (!nomove
8260 && (curwin->w_cursor.col != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00008261#ifdef FEAT_VIRTUALEDIT
8262 || curwin->w_cursor.coladd > 0
8263#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00008264 )
8265 && (restart_edit == NUL
8266 || (gchar_cursor() == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008267#ifdef FEAT_VISUAL
Bram Moolenaar488c6512005-08-11 20:09:58 +00008268 && !VIsual_active
Bram Moolenaar071d4272004-06-13 20:20:40 +00008269#endif
Bram Moolenaar488c6512005-08-11 20:09:58 +00008270 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008271#ifdef FEAT_RIGHTLEFT
8272 && !revins_on
8273#endif
8274 )
8275 {
8276#ifdef FEAT_VIRTUALEDIT
8277 if (curwin->w_cursor.coladd > 0 || ve_flags == VE_ALL)
8278 {
8279 oneleft();
8280 if (restart_edit != NUL)
8281 ++curwin->w_cursor.coladd;
8282 }
8283 else
8284#endif
8285 {
8286 --curwin->w_cursor.col;
8287#ifdef FEAT_MBYTE
8288 /* Correct cursor for multi-byte character. */
8289 if (has_mbyte)
8290 mb_adjust_cursor();
8291#endif
8292 }
8293 }
8294
8295#ifdef USE_IM_CONTROL
8296 /* Disable IM to allow typing English directly for Normal mode commands.
8297 * When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
8298 * well). */
8299 if (!(State & LANGMAP))
8300 im_save_status(&curbuf->b_p_iminsert);
8301 im_set_active(FALSE);
8302#endif
8303
8304 State = NORMAL;
8305 /* need to position cursor again (e.g. when on a TAB ) */
8306 changed_cline_bef_curs();
8307
8308#ifdef FEAT_MOUSE
8309 setmouse();
8310#endif
8311#ifdef CURSOR_SHAPE
8312 ui_cursor_shape(); /* may show different cursor shape */
8313#endif
8314
8315 /*
8316 * When recording or for CTRL-O, need to display the new mode.
8317 * Otherwise remove the mode message.
8318 */
8319 if (Recording || restart_edit != NUL)
8320 showmode();
8321 else if (p_smd)
8322 MSG("");
8323
8324 return TRUE; /* exit Insert mode */
8325}
8326
8327#ifdef FEAT_RIGHTLEFT
8328/*
8329 * Toggle language: hkmap and revins_on.
8330 * Move to end of reverse inserted text.
8331 */
8332 static void
8333ins_ctrl_()
8334{
8335 if (revins_on && revins_chars && revins_scol >= 0)
8336 {
8337 while (gchar_cursor() != NUL && revins_chars--)
8338 ++curwin->w_cursor.col;
8339 }
8340 p_ri = !p_ri;
8341 revins_on = (State == INSERT && p_ri);
8342 if (revins_on)
8343 {
8344 revins_scol = curwin->w_cursor.col;
8345 revins_legal++;
8346 revins_chars = 0;
8347 undisplay_dollar();
8348 }
8349 else
8350 revins_scol = -1;
8351#ifdef FEAT_FKMAP
8352 if (p_altkeymap)
8353 {
8354 /*
8355 * to be consistent also for redo command, using '.'
8356 * set arrow_used to true and stop it - causing to redo
8357 * characters entered in one mode (normal/reverse insert).
8358 */
8359 arrow_used = TRUE;
8360 (void)stop_arrow();
8361 p_fkmap = curwin->w_p_rl ^ p_ri;
8362 if (p_fkmap && p_ri)
8363 State = INSERT;
8364 }
8365 else
8366#endif
8367 p_hkmap = curwin->w_p_rl ^ p_ri; /* be consistent! */
8368 showmode();
8369}
8370#endif
8371
8372#ifdef FEAT_VISUAL
8373/*
8374 * If 'keymodel' contains "startsel", may start selection.
8375 * Returns TRUE when a CTRL-O and other keys stuffed.
8376 */
8377 static int
8378ins_start_select(c)
8379 int c;
8380{
8381 if (km_startsel)
8382 switch (c)
8383 {
8384 case K_KHOME:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008385 case K_KEND:
Bram Moolenaar071d4272004-06-13 20:20:40 +00008386 case K_PAGEUP:
8387 case K_KPAGEUP:
8388 case K_PAGEDOWN:
8389 case K_KPAGEDOWN:
8390# ifdef MACOS
8391 case K_LEFT:
8392 case K_RIGHT:
8393 case K_UP:
8394 case K_DOWN:
8395 case K_END:
8396 case K_HOME:
8397# endif
8398 if (!(mod_mask & MOD_MASK_SHIFT))
8399 break;
8400 /* FALLTHROUGH */
8401 case K_S_LEFT:
8402 case K_S_RIGHT:
8403 case K_S_UP:
8404 case K_S_DOWN:
8405 case K_S_END:
8406 case K_S_HOME:
8407 /* Start selection right away, the cursor can move with
8408 * CTRL-O when beyond the end of the line. */
8409 start_selection();
8410
8411 /* Execute the key in (insert) Select mode. */
8412 stuffcharReadbuff(Ctrl_O);
8413 if (mod_mask)
8414 {
8415 char_u buf[4];
8416
8417 buf[0] = K_SPECIAL;
8418 buf[1] = KS_MODIFIER;
8419 buf[2] = mod_mask;
8420 buf[3] = NUL;
8421 stuffReadbuff(buf);
8422 }
8423 stuffcharReadbuff(c);
8424 return TRUE;
8425 }
8426 return FALSE;
8427}
8428#endif
8429
8430/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008431 * <Insert> key in Insert mode: toggle insert/remplace mode.
8432 */
8433 static void
8434ins_insert(replaceState)
8435 int replaceState;
8436{
8437#ifdef FEAT_FKMAP
8438 if (p_fkmap && p_ri)
8439 {
8440 beep_flush();
8441 EMSG(farsi_text_3); /* encoded in Farsi */
8442 return;
8443 }
8444#endif
8445
8446#ifdef FEAT_AUTOCMD
Bram Moolenaar1e015462005-09-25 22:16:38 +00008447# ifdef FEAT_EVAL
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008448 set_vim_var_string(VV_INSERTMODE,
8449 (char_u *)((State & REPLACE_FLAG) ? "i" :
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008450# ifdef FEAT_VREPLACE
8451 replaceState == VREPLACE ? "v" :
8452# endif
8453 "r"), 1);
Bram Moolenaar1e015462005-09-25 22:16:38 +00008454# endif
Bram Moolenaar4be06f92005-07-29 22:36:03 +00008455 apply_autocmds(EVENT_INSERTCHANGE, NULL, NULL, FALSE, curbuf);
8456#endif
8457 if (State & REPLACE_FLAG)
8458 State = INSERT | (State & LANGMAP);
8459 else
8460 State = replaceState | (State & LANGMAP);
8461 AppendCharToRedobuff(K_INS);
8462 showmode();
8463#ifdef CURSOR_SHAPE
8464 ui_cursor_shape(); /* may show different cursor shape */
8465#endif
8466}
8467
8468/*
8469 * Pressed CTRL-O in Insert mode.
8470 */
8471 static void
8472ins_ctrl_o()
8473{
8474#ifdef FEAT_VREPLACE
8475 if (State & VREPLACE_FLAG)
8476 restart_edit = 'V';
8477 else
8478#endif
8479 if (State & REPLACE_FLAG)
8480 restart_edit = 'R';
8481 else
8482 restart_edit = 'I';
8483#ifdef FEAT_VIRTUALEDIT
8484 if (virtual_active())
8485 ins_at_eol = FALSE; /* cursor always keeps its column */
8486 else
8487#endif
8488 ins_at_eol = (gchar_cursor() == NUL);
8489}
8490
8491/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008492 * If the cursor is on an indent, ^T/^D insert/delete one
8493 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
Bram Moolenaar5b3e4602009-02-04 10:20:58 +00008494 * Always round the indent to 'shiftwidth', this is compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00008495 * with vi. But vi only supports ^T and ^D after an
8496 * autoindent, we support it everywhere.
8497 */
8498 static void
8499ins_shift(c, lastc)
8500 int c;
8501 int lastc;
8502{
8503 if (stop_arrow() == FAIL)
8504 return;
8505 AppendCharToRedobuff(c);
8506
8507 /*
8508 * 0^D and ^^D: remove all indent.
8509 */
Bram Moolenaar0cbac5b2007-07-29 13:03:35 +00008510 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
8511 && curwin->w_cursor.col > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008512 {
8513 --curwin->w_cursor.col;
8514 (void)del_char(FALSE); /* delete the '^' or '0' */
8515 /* In Replace mode, restore the characters that '^' or '0' replaced. */
8516 if (State & REPLACE_FLAG)
8517 replace_pop_ins();
8518 if (lastc == '^')
8519 old_indent = get_indent(); /* remember curr. indent */
Bram Moolenaar21b17e72008-01-16 19:03:13 +00008520 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008521 }
8522 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +00008523 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008524
8525 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
8526 did_ai = FALSE;
8527#ifdef FEAT_SMARTINDENT
8528 did_si = FALSE;
8529 can_si = FALSE;
8530 can_si_back = FALSE;
8531#endif
8532#ifdef FEAT_CINDENT
8533 can_cindent = FALSE; /* no cindenting after ^D or ^T */
8534#endif
8535}
8536
8537 static void
8538ins_del()
8539{
8540 int temp;
8541
8542 if (stop_arrow() == FAIL)
8543 return;
8544 if (gchar_cursor() == NUL) /* delete newline */
8545 {
8546 temp = curwin->w_cursor.col;
8547 if (!can_bs(BS_EOL) /* only if "eol" included */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02008548 || do_join(2, FALSE, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008549 vim_beep();
8550 else
8551 curwin->w_cursor.col = temp;
8552 }
8553 else if (del_char(FALSE) == FAIL) /* delete char under cursor */
8554 vim_beep();
8555 did_ai = FALSE;
8556#ifdef FEAT_SMARTINDENT
8557 did_si = FALSE;
8558 can_si = FALSE;
8559 can_si_back = FALSE;
8560#endif
8561 AppendCharToRedobuff(K_DEL);
8562}
8563
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008564static void ins_bs_one __ARGS((colnr_T *vcolp));
8565
8566/*
8567 * Delete one character for ins_bs().
8568 */
8569 static void
8570ins_bs_one(vcolp)
8571 colnr_T *vcolp;
8572{
8573 dec_cursor();
8574 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
8575 if (State & REPLACE_FLAG)
8576 {
8577 /* Don't delete characters before the insert point when in
8578 * Replace mode */
8579 if (curwin->w_cursor.lnum != Insstart.lnum
8580 || curwin->w_cursor.col >= Insstart.col)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00008581 replace_do_bs(-1);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008582 }
8583 else
8584 (void)del_char(FALSE);
8585}
8586
Bram Moolenaar071d4272004-06-13 20:20:40 +00008587/*
8588 * Handle Backspace, delete-word and delete-line in Insert mode.
8589 * Return TRUE when backspace was actually used.
8590 */
8591 static int
8592ins_bs(c, mode, inserted_space_p)
8593 int c;
8594 int mode;
8595 int *inserted_space_p;
8596{
8597 linenr_T lnum;
8598 int cc;
8599 int temp = 0; /* init for GCC */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008600 colnr_T save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008601 colnr_T mincol;
8602 int did_backspace = FALSE;
8603 int in_indent;
8604 int oldState;
8605#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008606 int cpc[MAX_MCO]; /* composing characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008607#endif
8608
8609 /*
8610 * can't delete anything in an empty file
8611 * can't backup past first character in buffer
8612 * can't backup past starting point unless 'backspace' > 1
8613 * can backup to a previous line if 'backspace' == 0
8614 */
8615 if ( bufempty()
8616 || (
8617#ifdef FEAT_RIGHTLEFT
8618 !revins_on &&
8619#endif
8620 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
8621 || (!can_bs(BS_START)
8622 && (arrow_used
8623 || (curwin->w_cursor.lnum == Insstart.lnum
8624 && curwin->w_cursor.col <= Insstart.col)))
8625 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
8626 && curwin->w_cursor.col <= ai_col)
8627 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
8628 {
8629 vim_beep();
8630 return FALSE;
8631 }
8632
8633 if (stop_arrow() == FAIL)
8634 return FALSE;
8635 in_indent = inindent(0);
8636#ifdef FEAT_CINDENT
8637 if (in_indent)
8638 can_cindent = FALSE;
8639#endif
8640#ifdef FEAT_COMMENTS
8641 end_comment_pending = NUL; /* After BS, don't auto-end comment */
8642#endif
8643#ifdef FEAT_RIGHTLEFT
8644 if (revins_on) /* put cursor after last inserted char */
8645 inc_cursor();
8646#endif
8647
8648#ifdef FEAT_VIRTUALEDIT
8649 /* Virtualedit:
8650 * BACKSPACE_CHAR eats a virtual space
8651 * BACKSPACE_WORD eats all coladd
8652 * BACKSPACE_LINE eats all coladd and keeps going
8653 */
8654 if (curwin->w_cursor.coladd > 0)
8655 {
8656 if (mode == BACKSPACE_CHAR)
8657 {
8658 --curwin->w_cursor.coladd;
8659 return TRUE;
8660 }
8661 if (mode == BACKSPACE_WORD)
8662 {
8663 curwin->w_cursor.coladd = 0;
8664 return TRUE;
8665 }
8666 curwin->w_cursor.coladd = 0;
8667 }
8668#endif
8669
8670 /*
8671 * delete newline!
8672 */
8673 if (curwin->w_cursor.col == 0)
8674 {
8675 lnum = Insstart.lnum;
8676 if (curwin->w_cursor.lnum == Insstart.lnum
8677#ifdef FEAT_RIGHTLEFT
8678 || revins_on
8679#endif
8680 )
8681 {
8682 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
8683 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
8684 return FALSE;
8685 --Insstart.lnum;
8686 Insstart.col = MAXCOL;
8687 }
8688 /*
8689 * In replace mode:
8690 * cc < 0: NL was inserted, delete it
8691 * cc >= 0: NL was replaced, put original characters back
8692 */
8693 cc = -1;
8694 if (State & REPLACE_FLAG)
8695 cc = replace_pop(); /* returns -1 if NL was inserted */
8696 /*
8697 * In replace mode, in the line we started replacing, we only move the
8698 * cursor.
8699 */
8700 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
8701 {
8702 dec_cursor();
8703 }
8704 else
8705 {
8706#ifdef FEAT_VREPLACE
8707 if (!(State & VREPLACE_FLAG)
8708 || curwin->w_cursor.lnum > orig_line_count)
8709#endif
8710 {
8711 temp = gchar_cursor(); /* remember current char */
8712 --curwin->w_cursor.lnum;
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00008713
8714 /* When "aw" is in 'formatoptions' we must delete the space at
8715 * the end of the line, otherwise the line will be broken
8716 * again when auto-formatting. */
8717 if (has_format_option(FO_AUTO)
8718 && has_format_option(FO_WHITE_PAR))
8719 {
8720 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
8721 TRUE);
8722 int len;
8723
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008724 len = (int)STRLEN(ptr);
Bram Moolenaarc930a3c2005-05-20 21:27:20 +00008725 if (len > 0 && ptr[len - 1] == ' ')
8726 ptr[len - 1] = NUL;
8727 }
8728
Bram Moolenaar893eaab2010-07-10 17:51:46 +02008729 (void)do_join(2, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008730 if (temp == NUL && gchar_cursor() != NUL)
8731 inc_cursor();
8732 }
8733#ifdef FEAT_VREPLACE
8734 else
8735 dec_cursor();
8736#endif
8737
8738 /*
8739 * In REPLACE mode we have to put back the text that was replaced
8740 * by the NL. On the replace stack is first a NUL-terminated
8741 * sequence of characters that were deleted and then the
8742 * characters that NL replaced.
8743 */
8744 if (State & REPLACE_FLAG)
8745 {
8746 /*
8747 * Do the next ins_char() in NORMAL state, to
8748 * prevent ins_char() from replacing characters and
8749 * avoiding showmatch().
8750 */
8751 oldState = State;
8752 State = NORMAL;
8753 /*
8754 * restore characters (blanks) deleted after cursor
8755 */
8756 while (cc > 0)
8757 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008758 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008759#ifdef FEAT_MBYTE
8760 mb_replace_pop_ins(cc);
8761#else
8762 ins_char(cc);
8763#endif
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008764 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008765 cc = replace_pop();
8766 }
8767 /* restore the characters that NL replaced */
8768 replace_pop_ins();
8769 State = oldState;
8770 }
8771 }
8772 did_ai = FALSE;
8773 }
8774 else
8775 {
8776 /*
8777 * Delete character(s) before the cursor.
8778 */
8779#ifdef FEAT_RIGHTLEFT
8780 if (revins_on) /* put cursor on last inserted char */
8781 dec_cursor();
8782#endif
8783 mincol = 0;
8784 /* keep indent */
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00008785 if (mode == BACKSPACE_LINE
8786 && (curbuf->b_p_ai
8787#ifdef FEAT_CINDENT
Bram Moolenaar97b98102009-11-17 16:41:01 +00008788 || cindent_on()
Bram Moolenaar9248e6e2007-03-08 12:10:13 +00008789#endif
8790 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00008791#ifdef FEAT_RIGHTLEFT
8792 && !revins_on
8793#endif
8794 )
8795 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008796 save_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008797 beginline(BL_WHITE);
Bram Moolenaar76675562009-11-11 12:22:32 +00008798 if (curwin->w_cursor.col < save_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008799 mincol = curwin->w_cursor.col;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00008800 curwin->w_cursor.col = save_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008801 }
8802
8803 /*
8804 * Handle deleting one 'shiftwidth' or 'softtabstop'.
8805 */
8806 if ( mode == BACKSPACE_CHAR
8807 && ((p_sta && in_indent)
Bram Moolenaar280f1262006-01-30 00:14:18 +00008808 || (curbuf->b_p_sts != 0
Bram Moolenaar7b88a0e2008-01-09 09:14:13 +00008809 && curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00008810 && (*(ml_get_cursor() - 1) == TAB
8811 || (*(ml_get_cursor() - 1) == ' '
8812 && (!*inserted_space_p
8813 || arrow_used))))))
8814 {
8815 int ts;
8816 colnr_T vcol;
8817 colnr_T want_vcol;
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008818 colnr_T start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008819
8820 *inserted_space_p = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00008821 if (p_sta && in_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008822 ts = curbuf->b_p_sw;
8823 else
8824 ts = curbuf->b_p_sts;
8825 /* Compute the virtual column where we want to be. Since
8826 * 'showbreak' may get in the way, need to get the last column of
8827 * the previous character. */
8828 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008829 start_vcol = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008830 dec_cursor();
8831 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
8832 inc_cursor();
8833 want_vcol = (want_vcol / ts) * ts;
8834
8835 /* delete characters until we are at or before want_vcol */
8836 while (vcol > want_vcol
8837 && (cc = *(ml_get_cursor() - 1), vim_iswhite(cc)))
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008838 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008839
8840 /* insert extra spaces until we are at want_vcol */
8841 while (vcol < want_vcol)
8842 {
8843 /* Remember the first char we inserted */
8844 if (curwin->w_cursor.lnum == Insstart.lnum
8845 && curwin->w_cursor.col < Insstart.col)
8846 Insstart.col = curwin->w_cursor.col;
8847
8848#ifdef FEAT_VREPLACE
8849 if (State & VREPLACE_FLAG)
8850 ins_char(' ');
8851 else
8852#endif
8853 {
8854 ins_str((char_u *)" ");
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008855 if ((State & REPLACE_FLAG))
8856 replace_push(NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008857 }
8858 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
8859 }
Bram Moolenaarf5dcf7c2007-12-09 19:26:44 +00008860
8861 /* If we are now back where we started delete one character. Can
8862 * happen when using 'sts' and 'linebreak'. */
8863 if (vcol >= start_vcol)
8864 ins_bs_one(&vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008865 }
8866
8867 /*
8868 * Delete upto starting point, start of line or previous word.
8869 */
8870 else do
8871 {
8872#ifdef FEAT_RIGHTLEFT
8873 if (!revins_on) /* put cursor on char to be deleted */
8874#endif
8875 dec_cursor();
8876
8877 /* start of word? */
8878 if (mode == BACKSPACE_WORD && !vim_isspace(gchar_cursor()))
8879 {
8880 mode = BACKSPACE_WORD_NOT_SPACE;
8881 temp = vim_iswordc(gchar_cursor());
8882 }
8883 /* end of word? */
8884 else if (mode == BACKSPACE_WORD_NOT_SPACE
8885 && (vim_isspace(cc = gchar_cursor())
8886 || vim_iswordc(cc) != temp))
8887 {
8888#ifdef FEAT_RIGHTLEFT
8889 if (!revins_on)
8890#endif
8891 inc_cursor();
8892#ifdef FEAT_RIGHTLEFT
8893 else if (State & REPLACE_FLAG)
8894 dec_cursor();
8895#endif
8896 break;
8897 }
8898 if (State & REPLACE_FLAG)
Bram Moolenaar0f6c9482009-01-13 11:29:48 +00008899 replace_do_bs(-1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008900 else
8901 {
8902#ifdef FEAT_MBYTE
8903 if (enc_utf8 && p_deco)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008904 (void)utfc_ptr2char(ml_get_cursor(), cpc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008905#endif
8906 (void)del_char(FALSE);
8907#ifdef FEAT_MBYTE
8908 /*
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008909 * If there are combining characters and 'delcombine' is set
8910 * move the cursor back. Don't back up before the base
Bram Moolenaar071d4272004-06-13 20:20:40 +00008911 * character.
8912 */
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008913 if (enc_utf8 && p_deco && cpc[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008914 inc_cursor();
8915#endif
8916#ifdef FEAT_RIGHTLEFT
8917 if (revins_chars)
8918 {
8919 revins_chars--;
8920 revins_legal++;
8921 }
8922 if (revins_on && gchar_cursor() == NUL)
8923 break;
8924#endif
8925 }
8926 /* Just a single backspace?: */
8927 if (mode == BACKSPACE_CHAR)
8928 break;
8929 } while (
8930#ifdef FEAT_RIGHTLEFT
8931 revins_on ||
8932#endif
8933 (curwin->w_cursor.col > mincol
8934 && (curwin->w_cursor.lnum != Insstart.lnum
8935 || curwin->w_cursor.col != Insstart.col)));
8936 did_backspace = TRUE;
8937 }
8938#ifdef FEAT_SMARTINDENT
8939 did_si = FALSE;
8940 can_si = FALSE;
8941 can_si_back = FALSE;
8942#endif
8943 if (curwin->w_cursor.col <= 1)
8944 did_ai = FALSE;
8945 /*
8946 * It's a little strange to put backspaces into the redo
8947 * buffer, but it makes auto-indent a lot easier to deal
8948 * with.
8949 */
8950 AppendCharToRedobuff(c);
8951
8952 /* If deleted before the insertion point, adjust it */
8953 if (curwin->w_cursor.lnum == Insstart.lnum
8954 && curwin->w_cursor.col < Insstart.col)
8955 Insstart.col = curwin->w_cursor.col;
8956
8957 /* vi behaviour: the cursor moves backward but the character that
8958 * was there remains visible
8959 * Vim behaviour: the cursor moves backward and the character that
8960 * was there is erased from the screen.
8961 * We can emulate the vi behaviour by pretending there is a dollar
8962 * displayed even when there isn't.
8963 * --pkv Sun Jan 19 01:56:40 EST 2003 */
Bram Moolenaar76b9b362012-02-04 23:35:00 +01008964 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008965 dollar_vcol = curwin->w_virtcol;
8966
Bram Moolenaarce3be472008-01-14 19:12:28 +00008967#ifdef FEAT_FOLDING
8968 /* When deleting a char the cursor line must never be in a closed fold.
8969 * E.g., when 'foldmethod' is indent and deleting the first non-white
8970 * char before a Tab. */
8971 if (did_backspace)
8972 foldOpenCursor();
8973#endif
8974
Bram Moolenaar071d4272004-06-13 20:20:40 +00008975 return did_backspace;
8976}
8977
8978#ifdef FEAT_MOUSE
8979 static void
8980ins_mouse(c)
8981 int c;
8982{
8983 pos_T tpos;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008984 win_T *old_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008985
8986# ifdef FEAT_GUI
8987 /* When GUI is active, also move/paste when 'mouse' is empty */
8988 if (!gui.in_use)
8989# endif
8990 if (!mouse_has(MOUSE_INSERT))
8991 return;
8992
8993 undisplay_dollar();
8994 tpos = curwin->w_cursor;
8995 if (do_mouse(NULL, c, BACKWARD, 1L, 0))
8996 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008997#ifdef FEAT_WINDOWS
8998 win_T *new_curwin = curwin;
8999
9000 if (curwin != old_curwin && win_valid(old_curwin))
9001 {
9002 /* Mouse took us to another window. We need to go back to the
9003 * previous one to stop insert there properly. */
9004 curwin = old_curwin;
9005 curbuf = curwin->w_buffer;
9006 }
9007#endif
9008 start_arrow(curwin == old_curwin ? &tpos : NULL);
9009#ifdef FEAT_WINDOWS
9010 if (curwin != new_curwin && win_valid(new_curwin))
9011 {
9012 curwin = new_curwin;
9013 curbuf = curwin->w_buffer;
9014 }
9015#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009016# ifdef FEAT_CINDENT
9017 can_cindent = TRUE;
9018# endif
9019 }
9020
9021#ifdef FEAT_WINDOWS
9022 /* redraw status lines (in case another window became active) */
9023 redraw_statuslines();
9024#endif
9025}
9026
9027 static void
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009028ins_mousescroll(dir)
9029 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009030{
9031 pos_T tpos;
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009032# if defined(FEAT_WINDOWS)
9033 win_T *old_curwin = curwin;
9034# endif
9035# ifdef FEAT_INS_EXPAND
9036 int did_scroll = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009037# endif
9038
9039 tpos = curwin->w_cursor;
9040
9041# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009042 /* Currently the mouse coordinates are only known in the GUI. */
9043 if (gui.in_use && mouse_row >= 0 && mouse_col >= 0)
9044 {
9045 int row, col;
9046
9047 row = mouse_row;
9048 col = mouse_col;
9049
9050 /* find the window at the pointer coordinates */
9051 curwin = mouse_find_win(&row, &col);
9052 curbuf = curwin->w_buffer;
9053 }
9054 if (curwin == old_curwin)
9055# endif
9056 undisplay_dollar();
9057
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009058# ifdef FEAT_INS_EXPAND
9059 /* Don't scroll the window in which completion is being done. */
9060 if (!pum_visible()
9061# if defined(FEAT_WINDOWS)
9062 || curwin != old_curwin
9063# endif
9064 )
9065# endif
9066 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009067 if (dir == MSCR_DOWN || dir == MSCR_UP)
9068 {
9069 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
9070 scroll_redraw(dir,
9071 (long)(curwin->w_botline - curwin->w_topline));
9072 else
9073 scroll_redraw(dir, 3L);
9074 }
9075#ifdef FEAT_GUI
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009076 else
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009077 {
9078 int val, step = 6;
9079
9080 if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
9081 step = W_WIDTH(curwin);
9082 val = curwin->w_leftcol + (dir == MSCR_RIGHT ? -step : step);
9083 if (val < 0)
9084 val = 0;
9085 gui_do_horiz_scroll(val, TRUE);
9086 }
9087#endif
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009088# ifdef FEAT_INS_EXPAND
9089 did_scroll = TRUE;
9090# endif
9091 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009092
9093# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
9094 curwin->w_redr_status = TRUE;
9095
9096 curwin = old_curwin;
9097 curbuf = curwin->w_buffer;
9098# endif
9099
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00009100# ifdef FEAT_INS_EXPAND
9101 /* The popup menu may overlay the window, need to redraw it.
9102 * TODO: Would be more efficient to only redraw the windows that are
9103 * overlapped by the popup menu. */
9104 if (pum_visible() && did_scroll)
9105 {
9106 redraw_all_later(NOT_VALID);
9107 ins_compl_show_pum();
9108 }
9109# endif
9110
Bram Moolenaar071d4272004-06-13 20:20:40 +00009111 if (!equalpos(curwin->w_cursor, tpos))
9112 {
9113 start_arrow(&tpos);
9114# ifdef FEAT_CINDENT
9115 can_cindent = TRUE;
9116# endif
9117 }
9118}
9119#endif
9120
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009121#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaara94bc432006-03-10 21:42:59 +00009122 static void
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009123ins_tabline(c)
9124 int c;
9125{
9126 /* We will be leaving the current window, unless closing another tab. */
9127 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
9128 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
9129 {
9130 undisplay_dollar();
9131 start_arrow(&curwin->w_cursor);
9132# ifdef FEAT_CINDENT
9133 can_cindent = TRUE;
9134# endif
9135 }
9136
9137 if (c == K_TABLINE)
9138 goto_tabpage(current_tab);
9139 else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009140 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009141 handle_tabmenu();
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009142 redraw_statuslines(); /* will redraw the tabline when needed */
9143 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00009144}
9145#endif
9146
9147#if defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009148 void
9149ins_scroll()
9150{
9151 pos_T tpos;
9152
9153 undisplay_dollar();
9154 tpos = curwin->w_cursor;
9155 if (gui_do_scroll())
9156 {
9157 start_arrow(&tpos);
9158# ifdef FEAT_CINDENT
9159 can_cindent = TRUE;
9160# endif
9161 }
9162}
9163
9164 void
9165ins_horscroll()
9166{
9167 pos_T tpos;
9168
9169 undisplay_dollar();
9170 tpos = curwin->w_cursor;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02009171 if (gui_do_horiz_scroll(scrollbar_value, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009172 {
9173 start_arrow(&tpos);
9174# ifdef FEAT_CINDENT
9175 can_cindent = TRUE;
9176# endif
9177 }
9178}
9179#endif
9180
9181 static void
9182ins_left()
9183{
9184 pos_T tpos;
9185
9186#ifdef FEAT_FOLDING
9187 if ((fdo_flags & FDO_HOR) && KeyTyped)
9188 foldOpenCursor();
9189#endif
9190 undisplay_dollar();
9191 tpos = curwin->w_cursor;
9192 if (oneleft() == OK)
9193 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00009194#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
9195 /* Only call start_arrow() when not busy with preediting, it will
9196 * break undo. K_LEFT is inserted in im_correct_cursor(). */
9197 if (!im_is_preediting())
9198#endif
9199 start_arrow(&tpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009200#ifdef FEAT_RIGHTLEFT
9201 /* If exit reversed string, position is fixed */
9202 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
9203 revins_legal++;
9204 revins_chars++;
9205#endif
9206 }
9207
9208 /*
9209 * if 'whichwrap' set for cursor in insert mode may go to
9210 * previous line
9211 */
9212 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
9213 {
9214 start_arrow(&tpos);
9215 --(curwin->w_cursor.lnum);
9216 coladvance((colnr_T)MAXCOL);
9217 curwin->w_set_curswant = TRUE; /* so we stay at the end */
9218 }
9219 else
9220 vim_beep();
9221}
9222
9223 static void
9224ins_home(c)
9225 int c;
9226{
9227 pos_T tpos;
9228
9229#ifdef FEAT_FOLDING
9230 if ((fdo_flags & FDO_HOR) && KeyTyped)
9231 foldOpenCursor();
9232#endif
9233 undisplay_dollar();
9234 tpos = curwin->w_cursor;
9235 if (c == K_C_HOME)
9236 curwin->w_cursor.lnum = 1;
9237 curwin->w_cursor.col = 0;
9238#ifdef FEAT_VIRTUALEDIT
9239 curwin->w_cursor.coladd = 0;
9240#endif
9241 curwin->w_curswant = 0;
9242 start_arrow(&tpos);
9243}
9244
9245 static void
9246ins_end(c)
9247 int c;
9248{
9249 pos_T tpos;
9250
9251#ifdef FEAT_FOLDING
9252 if ((fdo_flags & FDO_HOR) && KeyTyped)
9253 foldOpenCursor();
9254#endif
9255 undisplay_dollar();
9256 tpos = curwin->w_cursor;
9257 if (c == K_C_END)
9258 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
9259 coladvance((colnr_T)MAXCOL);
9260 curwin->w_curswant = MAXCOL;
9261
9262 start_arrow(&tpos);
9263}
9264
9265 static void
9266ins_s_left()
9267{
9268#ifdef FEAT_FOLDING
9269 if ((fdo_flags & FDO_HOR) && KeyTyped)
9270 foldOpenCursor();
9271#endif
9272 undisplay_dollar();
9273 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
9274 {
9275 start_arrow(&curwin->w_cursor);
9276 (void)bck_word(1L, FALSE, FALSE);
9277 curwin->w_set_curswant = TRUE;
9278 }
9279 else
9280 vim_beep();
9281}
9282
9283 static void
9284ins_right()
9285{
9286#ifdef FEAT_FOLDING
9287 if ((fdo_flags & FDO_HOR) && KeyTyped)
9288 foldOpenCursor();
9289#endif
9290 undisplay_dollar();
Bram Moolenaar78a15312009-05-15 19:33:18 +00009291 if (gchar_cursor() != NUL
9292#ifdef FEAT_VIRTUALEDIT
9293 || virtual_active()
9294#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009295 )
9296 {
9297 start_arrow(&curwin->w_cursor);
9298 curwin->w_set_curswant = TRUE;
9299#ifdef FEAT_VIRTUALEDIT
9300 if (virtual_active())
9301 oneright();
9302 else
9303#endif
9304 {
9305#ifdef FEAT_MBYTE
9306 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009307 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00009308 else
9309#endif
9310 ++curwin->w_cursor.col;
9311 }
9312
9313#ifdef FEAT_RIGHTLEFT
9314 revins_legal++;
9315 if (revins_chars)
9316 revins_chars--;
9317#endif
9318 }
9319 /* if 'whichwrap' set for cursor in insert mode, may move the
9320 * cursor to the next line */
9321 else if (vim_strchr(p_ww, ']') != NULL
9322 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
9323 {
9324 start_arrow(&curwin->w_cursor);
9325 curwin->w_set_curswant = TRUE;
9326 ++curwin->w_cursor.lnum;
9327 curwin->w_cursor.col = 0;
9328 }
9329 else
9330 vim_beep();
9331}
9332
9333 static void
9334ins_s_right()
9335{
9336#ifdef FEAT_FOLDING
9337 if ((fdo_flags & FDO_HOR) && KeyTyped)
9338 foldOpenCursor();
9339#endif
9340 undisplay_dollar();
9341 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
9342 || gchar_cursor() != NUL)
9343 {
9344 start_arrow(&curwin->w_cursor);
9345 (void)fwd_word(1L, FALSE, 0);
9346 curwin->w_set_curswant = TRUE;
9347 }
9348 else
9349 vim_beep();
9350}
9351
9352 static void
9353ins_up(startcol)
9354 int startcol; /* when TRUE move to Insstart.col */
9355{
9356 pos_T tpos;
9357 linenr_T old_topline = curwin->w_topline;
9358#ifdef FEAT_DIFF
9359 int old_topfill = curwin->w_topfill;
9360#endif
9361
9362 undisplay_dollar();
9363 tpos = curwin->w_cursor;
9364 if (cursor_up(1L, TRUE) == OK)
9365 {
9366 if (startcol)
9367 coladvance(getvcol_nolist(&Insstart));
9368 if (old_topline != curwin->w_topline
9369#ifdef FEAT_DIFF
9370 || old_topfill != curwin->w_topfill
9371#endif
9372 )
9373 redraw_later(VALID);
9374 start_arrow(&tpos);
9375#ifdef FEAT_CINDENT
9376 can_cindent = TRUE;
9377#endif
9378 }
9379 else
9380 vim_beep();
9381}
9382
9383 static void
9384ins_pageup()
9385{
9386 pos_T tpos;
9387
9388 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009389
9390#ifdef FEAT_WINDOWS
9391 if (mod_mask & MOD_MASK_CTRL)
9392 {
9393 /* <C-PageUp>: tab page back */
Bram Moolenaarbc444822006-10-17 11:37:50 +00009394 if (first_tabpage->tp_next != NULL)
9395 {
9396 start_arrow(&curwin->w_cursor);
9397 goto_tabpage(-1);
9398 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009399 return;
9400 }
9401#endif
9402
Bram Moolenaar071d4272004-06-13 20:20:40 +00009403 tpos = curwin->w_cursor;
9404 if (onepage(BACKWARD, 1L) == OK)
9405 {
9406 start_arrow(&tpos);
9407#ifdef FEAT_CINDENT
9408 can_cindent = TRUE;
9409#endif
9410 }
9411 else
9412 vim_beep();
9413}
9414
9415 static void
9416ins_down(startcol)
9417 int startcol; /* when TRUE move to Insstart.col */
9418{
9419 pos_T tpos;
9420 linenr_T old_topline = curwin->w_topline;
9421#ifdef FEAT_DIFF
9422 int old_topfill = curwin->w_topfill;
9423#endif
9424
9425 undisplay_dollar();
9426 tpos = curwin->w_cursor;
9427 if (cursor_down(1L, TRUE) == OK)
9428 {
9429 if (startcol)
9430 coladvance(getvcol_nolist(&Insstart));
9431 if (old_topline != curwin->w_topline
9432#ifdef FEAT_DIFF
9433 || old_topfill != curwin->w_topfill
9434#endif
9435 )
9436 redraw_later(VALID);
9437 start_arrow(&tpos);
9438#ifdef FEAT_CINDENT
9439 can_cindent = TRUE;
9440#endif
9441 }
9442 else
9443 vim_beep();
9444}
9445
9446 static void
9447ins_pagedown()
9448{
9449 pos_T tpos;
9450
9451 undisplay_dollar();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009452
9453#ifdef FEAT_WINDOWS
9454 if (mod_mask & MOD_MASK_CTRL)
9455 {
9456 /* <C-PageDown>: tab page forward */
Bram Moolenaarbc444822006-10-17 11:37:50 +00009457 if (first_tabpage->tp_next != NULL)
9458 {
9459 start_arrow(&curwin->w_cursor);
9460 goto_tabpage(0);
9461 }
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00009462 return;
9463 }
9464#endif
9465
Bram Moolenaar071d4272004-06-13 20:20:40 +00009466 tpos = curwin->w_cursor;
9467 if (onepage(FORWARD, 1L) == OK)
9468 {
9469 start_arrow(&tpos);
9470#ifdef FEAT_CINDENT
9471 can_cindent = TRUE;
9472#endif
9473 }
9474 else
9475 vim_beep();
9476}
9477
9478#ifdef FEAT_DND
9479 static void
9480ins_drop()
9481{
9482 do_put('~', BACKWARD, 1L, PUT_CURSEND);
9483}
9484#endif
9485
9486/*
9487 * Handle TAB in Insert or Replace mode.
9488 * Return TRUE when the TAB needs to be inserted like a normal character.
9489 */
9490 static int
9491ins_tab()
9492{
9493 int ind;
9494 int i;
9495 int temp;
9496
9497 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
9498 Insstart_blank_vcol = get_nolist_virtcol();
9499 if (echeck_abbr(TAB + ABBR_OFF))
9500 return FALSE;
9501
9502 ind = inindent(0);
9503#ifdef FEAT_CINDENT
9504 if (ind)
9505 can_cindent = FALSE;
9506#endif
9507
9508 /*
9509 * When nothing special, insert TAB like a normal character
9510 */
9511 if (!curbuf->b_p_et
9512 && !(p_sta && ind && curbuf->b_p_ts != curbuf->b_p_sw)
9513 && curbuf->b_p_sts == 0)
9514 return TRUE;
9515
9516 if (stop_arrow() == FAIL)
9517 return TRUE;
9518
9519 did_ai = FALSE;
9520#ifdef FEAT_SMARTINDENT
9521 did_si = FALSE;
9522 can_si = FALSE;
9523 can_si_back = FALSE;
9524#endif
9525 AppendToRedobuff((char_u *)"\t");
9526
9527 if (p_sta && ind) /* insert tab in indent, use 'shiftwidth' */
9528 temp = (int)curbuf->b_p_sw;
9529 else if (curbuf->b_p_sts > 0) /* use 'softtabstop' when set */
9530 temp = (int)curbuf->b_p_sts;
9531 else /* otherwise use 'tabstop' */
9532 temp = (int)curbuf->b_p_ts;
9533 temp -= get_nolist_virtcol() % temp;
9534
9535 /*
9536 * Insert the first space with ins_char(). It will delete one char in
9537 * replace mode. Insert the rest with ins_str(); it will not delete any
9538 * chars. For VREPLACE mode, we use ins_char() for all characters.
9539 */
9540 ins_char(' ');
9541 while (--temp > 0)
9542 {
9543#ifdef FEAT_VREPLACE
9544 if (State & VREPLACE_FLAG)
9545 ins_char(' ');
9546 else
9547#endif
9548 {
9549 ins_str((char_u *)" ");
9550 if (State & REPLACE_FLAG) /* no char replaced */
9551 replace_push(NUL);
9552 }
9553 }
9554
9555 /*
9556 * When 'expandtab' not set: Replace spaces by TABs where possible.
9557 */
9558 if (!curbuf->b_p_et && (curbuf->b_p_sts || (p_sta && ind)))
9559 {
9560 char_u *ptr;
9561#ifdef FEAT_VREPLACE
9562 char_u *saved_line = NULL; /* init for GCC */
9563 pos_T pos;
9564#endif
9565 pos_T fpos;
9566 pos_T *cursor;
9567 colnr_T want_vcol, vcol;
9568 int change_col = -1;
9569 int save_list = curwin->w_p_list;
9570
9571 /*
9572 * Get the current line. For VREPLACE mode, don't make real changes
9573 * yet, just work on a copy of the line.
9574 */
9575#ifdef FEAT_VREPLACE
9576 if (State & VREPLACE_FLAG)
9577 {
9578 pos = curwin->w_cursor;
9579 cursor = &pos;
9580 saved_line = vim_strsave(ml_get_curline());
9581 if (saved_line == NULL)
9582 return FALSE;
9583 ptr = saved_line + pos.col;
9584 }
9585 else
9586#endif
9587 {
9588 ptr = ml_get_cursor();
9589 cursor = &curwin->w_cursor;
9590 }
9591
9592 /* When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces. */
9593 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
9594 curwin->w_p_list = FALSE;
9595
9596 /* Find first white before the cursor */
9597 fpos = curwin->w_cursor;
9598 while (fpos.col > 0 && vim_iswhite(ptr[-1]))
9599 {
9600 --fpos.col;
9601 --ptr;
9602 }
9603
9604 /* In Replace mode, don't change characters before the insert point. */
9605 if ((State & REPLACE_FLAG)
9606 && fpos.lnum == Insstart.lnum
9607 && fpos.col < Insstart.col)
9608 {
9609 ptr += Insstart.col - fpos.col;
9610 fpos.col = Insstart.col;
9611 }
9612
9613 /* compute virtual column numbers of first white and cursor */
9614 getvcol(curwin, &fpos, &vcol, NULL, NULL);
9615 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
9616
9617 /* Use as many TABs as possible. Beware of 'showbreak' and
9618 * 'linebreak' adding extra virtual columns. */
9619 while (vim_iswhite(*ptr))
9620 {
9621 i = lbr_chartabsize((char_u *)"\t", vcol);
9622 if (vcol + i > want_vcol)
9623 break;
9624 if (*ptr != TAB)
9625 {
9626 *ptr = TAB;
9627 if (change_col < 0)
9628 {
9629 change_col = fpos.col; /* Column of first change */
9630 /* May have to adjust Insstart */
9631 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
9632 Insstart.col = fpos.col;
9633 }
9634 }
9635 ++fpos.col;
9636 ++ptr;
9637 vcol += i;
9638 }
9639
9640 if (change_col >= 0)
9641 {
9642 int repl_off = 0;
9643
9644 /* Skip over the spaces we need. */
9645 while (vcol < want_vcol && *ptr == ' ')
9646 {
9647 vcol += lbr_chartabsize(ptr, vcol);
9648 ++ptr;
9649 ++repl_off;
9650 }
9651 if (vcol > want_vcol)
9652 {
9653 /* Must have a char with 'showbreak' just before it. */
9654 --ptr;
9655 --repl_off;
9656 }
9657 fpos.col += repl_off;
9658
9659 /* Delete following spaces. */
9660 i = cursor->col - fpos.col;
9661 if (i > 0)
9662 {
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00009663 STRMOVE(ptr, ptr + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009664 /* correct replace stack. */
9665 if ((State & REPLACE_FLAG)
9666#ifdef FEAT_VREPLACE
9667 && !(State & VREPLACE_FLAG)
9668#endif
9669 )
9670 for (temp = i; --temp >= 0; )
9671 replace_join(repl_off);
9672 }
Bram Moolenaar009b2592004-10-24 19:18:58 +00009673#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02009674 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +00009675 {
Bram Moolenaar67c53842010-05-22 18:28:27 +02009676 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
Bram Moolenaar009b2592004-10-24 19:18:58 +00009677 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
9678 (char_u *)"\t", 1);
9679 }
9680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009681 cursor->col -= i;
9682
9683#ifdef FEAT_VREPLACE
9684 /*
9685 * In VREPLACE mode, we haven't changed anything yet. Do it now by
9686 * backspacing over the changed spacing and then inserting the new
9687 * spacing.
9688 */
9689 if (State & VREPLACE_FLAG)
9690 {
9691 /* Backspace from real cursor to change_col */
9692 backspace_until_column(change_col);
9693
9694 /* Insert each char in saved_line from changed_col to
9695 * ptr-cursor */
9696 ins_bytes_len(saved_line + change_col,
9697 cursor->col - change_col);
9698 }
9699#endif
9700 }
9701
9702#ifdef FEAT_VREPLACE
9703 if (State & VREPLACE_FLAG)
9704 vim_free(saved_line);
9705#endif
9706 curwin->w_p_list = save_list;
9707 }
9708
9709 return FALSE;
9710}
9711
9712/*
9713 * Handle CR or NL in insert mode.
9714 * Return TRUE when out of memory or can't undo.
9715 */
9716 static int
9717ins_eol(c)
9718 int c;
9719{
9720 int i;
9721
9722 if (echeck_abbr(c + ABBR_OFF))
9723 return FALSE;
9724 if (stop_arrow() == FAIL)
9725 return TRUE;
9726 undisplay_dollar();
9727
9728 /*
9729 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
9730 * character under the cursor. Only push a NUL on the replace stack,
9731 * nothing to put back when the NL is deleted.
9732 */
9733 if ((State & REPLACE_FLAG)
9734#ifdef FEAT_VREPLACE
9735 && !(State & VREPLACE_FLAG)
9736#endif
9737 )
9738 replace_push(NUL);
9739
9740 /*
9741 * In VREPLACE mode, a NL replaces the rest of the line, and starts
9742 * replacing the next line, so we push all of the characters left on the
9743 * line onto the replace stack. This is not done here though, it is done
9744 * in open_line().
9745 */
9746
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009747#ifdef FEAT_VIRTUALEDIT
9748 /* Put cursor on NUL if on the last char and coladd is 1 (happens after
9749 * CTRL-O). */
9750 if (virtual_active() && curwin->w_cursor.coladd > 0)
9751 coladvance(getviscol());
9752#endif
9753
Bram Moolenaar071d4272004-06-13 20:20:40 +00009754#ifdef FEAT_RIGHTLEFT
9755# ifdef FEAT_FKMAP
9756 if (p_altkeymap && p_fkmap)
9757 fkmap(NL);
9758# endif
9759 /* NL in reverse insert will always start in the end of
9760 * current line. */
9761 if (revins_on)
9762 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
9763#endif
9764
9765 AppendToRedobuff(NL_STR);
9766 i = open_line(FORWARD,
9767#ifdef FEAT_COMMENTS
9768 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM :
9769#endif
9770 0, old_indent);
9771 old_indent = 0;
9772#ifdef FEAT_CINDENT
9773 can_cindent = TRUE;
9774#endif
Bram Moolenaar6ae133b2006-11-01 20:25:45 +00009775#ifdef FEAT_FOLDING
9776 /* When inserting a line the cursor line must never be in a closed fold. */
9777 foldOpenCursor();
9778#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009779
9780 return (!i);
9781}
9782
9783#ifdef FEAT_DIGRAPHS
9784/*
9785 * Handle digraph in insert mode.
9786 * Returns character still to be inserted, or NUL when nothing remaining to be
9787 * done.
9788 */
9789 static int
9790ins_digraph()
9791{
9792 int c;
9793 int cc;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009794 int did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009795
9796 pc_status = PC_STATUS_UNSET;
9797 if (redrawing() && !char_avail())
9798 {
9799 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00009800 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009801
9802 edit_putchar('?', TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009803 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009804#ifdef FEAT_CMDL_INFO
9805 add_to_showcmd_c(Ctrl_K);
9806#endif
9807 }
9808
9809#ifdef USE_ON_FLY_SCROLL
9810 dont_scroll = TRUE; /* disallow scrolling here */
9811#endif
9812
9813 /* don't map the digraph chars. This also prevents the
9814 * mode message to be deleted when ESC is hit */
9815 ++no_mapping;
9816 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00009817 c = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009818 --no_mapping;
9819 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009820 if (did_putchar)
9821 /* when the line fits in 'columns' the '?' is at the start of the next
9822 * line and will not be removed by the redraw */
9823 edit_unputchar();
Bram Moolenaar26dcc7e2010-07-14 22:35:55 +02009824
Bram Moolenaar071d4272004-06-13 20:20:40 +00009825 if (IS_SPECIAL(c) || mod_mask) /* special key */
9826 {
9827#ifdef FEAT_CMDL_INFO
9828 clear_showcmd();
9829#endif
9830 insert_special(c, TRUE, FALSE);
9831 return NUL;
9832 }
9833 if (c != ESC)
9834 {
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009835 did_putchar = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009836 if (redrawing() && !char_avail())
9837 {
9838 /* may need to redraw when no more chars available now */
Bram Moolenaar754b5602006-02-09 23:53:20 +00009839 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009840
9841 if (char2cells(c) == 1)
9842 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00009843 ins_redraw(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009844 edit_putchar(c, TRUE);
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009845 did_putchar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009846 }
9847#ifdef FEAT_CMDL_INFO
9848 add_to_showcmd_c(c);
9849#endif
9850 }
9851 ++no_mapping;
9852 ++allow_keys;
Bram Moolenaar61abfd12007-09-13 16:26:47 +00009853 cc = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009854 --no_mapping;
9855 --allow_keys;
Bram Moolenaar9c520cb2011-05-10 14:22:16 +02009856 if (did_putchar)
9857 /* when the line fits in 'columns' the '?' is at the start of the
9858 * next line and will not be removed by a redraw */
9859 edit_unputchar();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009860 if (cc != ESC)
9861 {
9862 AppendToRedobuff((char_u *)CTRL_V_STR);
9863 c = getdigraph(c, cc, TRUE);
9864#ifdef FEAT_CMDL_INFO
9865 clear_showcmd();
9866#endif
9867 return c;
9868 }
9869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009870#ifdef FEAT_CMDL_INFO
9871 clear_showcmd();
9872#endif
9873 return NUL;
9874}
9875#endif
9876
9877/*
9878 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
9879 * Returns the char to be inserted, or NUL if none found.
9880 */
9881 static int
9882ins_copychar(lnum)
9883 linenr_T lnum;
9884{
9885 int c;
9886 int temp;
9887 char_u *ptr, *prev_ptr;
9888
9889 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
9890 {
9891 vim_beep();
9892 return NUL;
9893 }
9894
9895 /* try to advance to the cursor column */
9896 temp = 0;
9897 ptr = ml_get(lnum);
9898 prev_ptr = ptr;
9899 validate_virtcol();
9900 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL)
9901 {
9902 prev_ptr = ptr;
9903 temp += lbr_chartabsize_adv(&ptr, (colnr_T)temp);
9904 }
9905 if ((colnr_T)temp > curwin->w_virtcol)
9906 ptr = prev_ptr;
9907
9908#ifdef FEAT_MBYTE
9909 c = (*mb_ptr2char)(ptr);
9910#else
9911 c = *ptr;
9912#endif
9913 if (c == NUL)
9914 vim_beep();
9915 return c;
9916}
9917
Bram Moolenaar4be06f92005-07-29 22:36:03 +00009918/*
9919 * CTRL-Y or CTRL-E typed in Insert mode.
9920 */
9921 static int
9922ins_ctrl_ey(tc)
9923 int tc;
9924{
9925 int c = tc;
9926
9927#ifdef FEAT_INS_EXPAND
9928 if (ctrl_x_mode == CTRL_X_SCROLL)
9929 {
9930 if (c == Ctrl_Y)
9931 scrolldown_clamp();
9932 else
9933 scrollup_clamp();
9934 redraw_later(VALID);
9935 }
9936 else
9937#endif
9938 {
9939 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
9940 if (c != NUL)
9941 {
9942 long tw_save;
9943
9944 /* The character must be taken literally, insert like it
9945 * was typed after a CTRL-V, and pretend 'textwidth'
9946 * wasn't set. Digits, 'o' and 'x' are special after a
9947 * CTRL-V, don't use it for these. */
9948 if (c < 256 && !isalnum(c))
9949 AppendToRedobuff((char_u *)CTRL_V_STR); /* CTRL-V */
9950 tw_save = curbuf->b_p_tw;
9951 curbuf->b_p_tw = -1;
9952 insert_special(c, TRUE, FALSE);
9953 curbuf->b_p_tw = tw_save;
9954#ifdef FEAT_RIGHTLEFT
9955 revins_chars++;
9956 revins_legal++;
9957#endif
9958 c = Ctrl_V; /* pretend CTRL-V is last character */
9959 auto_format(FALSE, TRUE);
9960 }
9961 }
9962 return c;
9963}
9964
Bram Moolenaar071d4272004-06-13 20:20:40 +00009965#ifdef FEAT_SMARTINDENT
9966/*
9967 * Try to do some very smart auto-indenting.
9968 * Used when inserting a "normal" character.
9969 */
9970 static void
9971ins_try_si(c)
9972 int c;
9973{
9974 pos_T *pos, old_pos;
9975 char_u *ptr;
9976 int i;
9977 int temp;
9978
9979 /*
9980 * do some very smart indenting when entering '{' or '}'
9981 */
9982 if (((did_si || can_si_back) && c == '{') || (can_si && c == '}'))
9983 {
9984 /*
9985 * for '}' set indent equal to indent of line containing matching '{'
9986 */
9987 if (c == '}' && (pos = findmatch(NULL, '{')) != NULL)
9988 {
9989 old_pos = curwin->w_cursor;
9990 /*
9991 * If the matching '{' has a ')' immediately before it (ignoring
9992 * white-space), then line up with the start of the line
9993 * containing the matching '(' if there is one. This handles the
9994 * case where an "if (..\n..) {" statement continues over multiple
9995 * lines -- webb
9996 */
9997 ptr = ml_get(pos->lnum);
9998 i = pos->col;
9999 if (i > 0) /* skip blanks before '{' */
10000 while (--i > 0 && vim_iswhite(ptr[i]))
10001 ;
10002 curwin->w_cursor.lnum = pos->lnum;
10003 curwin->w_cursor.col = i;
10004 if (ptr[i] == ')' && (pos = findmatch(NULL, '(')) != NULL)
10005 curwin->w_cursor = *pos;
10006 i = get_indent();
10007 curwin->w_cursor = old_pos;
10008#ifdef FEAT_VREPLACE
10009 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +000010010 change_indent(INDENT_SET, i, FALSE, NUL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010011 else
10012#endif
10013 (void)set_indent(i, SIN_CHANGED);
10014 }
10015 else if (curwin->w_cursor.col > 0)
10016 {
10017 /*
10018 * when inserting '{' after "O" reduce indent, but not
10019 * more than indent of previous line
10020 */
10021 temp = TRUE;
10022 if (c == '{' && can_si_back && curwin->w_cursor.lnum > 1)
10023 {
10024 old_pos = curwin->w_cursor;
10025 i = get_indent();
10026 while (curwin->w_cursor.lnum > 1)
10027 {
10028 ptr = skipwhite(ml_get(--(curwin->w_cursor.lnum)));
10029
10030 /* ignore empty lines and lines starting with '#'. */
10031 if (*ptr != '#' && *ptr != NUL)
10032 break;
10033 }
10034 if (get_indent() >= i)
10035 temp = FALSE;
10036 curwin->w_cursor = old_pos;
10037 }
10038 if (temp)
Bram Moolenaar21b17e72008-01-16 19:03:13 +000010039 shift_line(TRUE, FALSE, 1, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010040 }
10041 }
10042
10043 /*
10044 * set indent of '#' always to 0
10045 */
10046 if (curwin->w_cursor.col > 0 && can_si && c == '#')
10047 {
10048 /* remember current indent for next line */
10049 old_indent = get_indent();
10050 (void)set_indent(0, SIN_CHANGED);
10051 }
10052
10053 /* Adjust ai_col, the char at this position can be deleted. */
10054 if (ai_col > curwin->w_cursor.col)
10055 ai_col = curwin->w_cursor.col;
10056}
10057#endif
10058
10059/*
10060 * Get the value that w_virtcol would have when 'list' is off.
10061 * Unless 'cpo' contains the 'L' flag.
10062 */
10063 static colnr_T
10064get_nolist_virtcol()
10065{
10066 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
10067 return getvcol_nolist(&curwin->w_cursor);
10068 validate_virtcol();
10069 return curwin->w_virtcol;
10070}