annotate src/edit.c @ 32669:448aef880252

normalize line endings
author Christian Brabandt <cb@256bit.org>
date Mon, 26 Jun 2023 09:54:34 +0200
parents 72fd0421c183
children 695b50472e85
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32669
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
7 * See README.txt for an overview of the Vim source code.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
8 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
9
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
10 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
11 * edit.c: functions for Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
12 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
13
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
14 #include "vim.h"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
15
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
16 #define BACKSPACE_CHAR 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
17 #define BACKSPACE_WORD 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
18 #define BACKSPACE_WORD_NOT_SPACE 3
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
19 #define BACKSPACE_LINE 4
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
20
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
21 // Set when doing something for completion that may call edit() recursively,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
22 // which is not allowed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
23 static int compl_busy = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
24
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
25
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
26 static void ins_ctrl_v(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
27 static void insert_special(int, int, int);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
28 static void redo_literal(int c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
29 static void start_arrow_common(pos_T *end_insert_pos, int change);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
30 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
31 static void check_spell_redraw(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
32 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
33 static void stop_insert(pos_T *end_insert_pos, int esc, int nomove);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
34 static int echeck_abbr(int);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
35 static void mb_replace_pop_ins(int cc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
36 static void replace_flush(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
37 static void replace_do_bs(int limit_col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
38 static int del_char_after_col(int limit_col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
39 static void ins_reg(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
40 static void ins_ctrl_g(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
41 static void ins_ctrl_hat(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
42 static int ins_esc(long *count, int cmdchar, int nomove);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
43 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
44 static void ins_ctrl_(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
45 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
46 static int ins_start_select(int c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
47 static void ins_insert(int replaceState);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
48 static void ins_ctrl_o(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
49 static void ins_shift(int c, int lastc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
50 static void ins_del(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
51 static int ins_bs(int c, int mode, int *inserted_space_p);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
52 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
53 static void ins_tabline(int c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
54 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
55 static void ins_left(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
56 static void ins_home(int c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
57 static void ins_end(int c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
58 static void ins_s_left(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
59 static void ins_right(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
60 static void ins_s_right(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
61 static void ins_up(int startcol);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
62 static void ins_pageup(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
63 static void ins_down(int startcol);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
64 static void ins_pagedown(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
65 #ifdef FEAT_DND
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
66 static void ins_drop(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
67 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
68 static int ins_tab(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
69 #ifdef FEAT_DIGRAPHS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
70 static int ins_digraph(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
71 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
72 static int ins_ctrl_ey(int tc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
73 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
74 static char_u *do_insert_char_pre(int c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
75 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
76
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
77 static colnr_T Insstart_textlen; // length of line when insert started
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
78 static colnr_T Insstart_blank_vcol; // vcol for first inserted blank
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
79 static int update_Insstart_orig = TRUE; // set Insstart_orig to Insstart
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
80
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
81 static char_u *last_insert = NULL; // the text of the previous insert,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
82 // K_SPECIAL and CSI are escaped
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
83 static int last_insert_skip; // nr of chars in front of previous insert
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
84 static int new_insert_skip; // nr of chars in front of current insert
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
85 static int did_restart_edit; // "restart_edit" when calling edit()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
86
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
87 static int can_cindent; // may do cindenting on this line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
88
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
89 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
90 static int revins_on; // reverse insert mode on
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
91 static int revins_chars; // how much to skip after edit
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
92 static int revins_legal; // was the last char 'legal'?
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
93 static int revins_scol; // start column of revins session
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
94 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
95
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
96 static int ins_need_undo; // call u_save() before inserting a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
97 // char. Set when edit() is called.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
98 // after that arrow_used is used.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
99
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
100 static int dont_sync_undo = FALSE; // CTRL-G U prevents syncing undo for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
101 // the next left/right cursor key
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
102
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
103 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
104 * edit(): Start inserting text.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
105 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
106 * "cmdchar" can be:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
107 * 'i' normal insert command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
108 * 'a' normal append command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
109 * K_PS bracketed paste
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
110 * 'R' replace command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
111 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
112 * but still only one <CR> is inserted. The <Esc> is not used for redo.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
113 * 'g' "gI" command.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
114 * 'V' "gR" command for Virtual Replace mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
115 * 'v' "gr" command for single character Virtual Replace mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
116 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
117 * This function is not called recursively. For CTRL-O commands, it returns
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
118 * and lets the caller handle the Normal-mode command.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
119 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
120 * Return TRUE if a CTRL-O command caused the return (insert mode pending).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
121 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
122 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
123 edit(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
124 int cmdchar,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
125 int startln, // if set, insert at start of line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
126 long count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
127 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
128 int c = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
129 char_u *ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
130 int lastc = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
131 int mincol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
132 static linenr_T o_lnum = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
133 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
134 int did_backspace = TRUE; // previous char was backspace
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
135 int line_is_white = FALSE; // line is empty before insert
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
136 linenr_T old_topline = 0; // topline before insertion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
137 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
138 int old_topfill = -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
139 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
140 int inserted_space = FALSE; // just inserted a space
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
141 int replaceState = MODE_REPLACE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
142 int nomove = FALSE; // don't move cursor on return
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
143 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
144 int cmdchar_todo = cmdchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
145 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
146 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
147 int cursor_line_was_concealed;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
148 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
149
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
150 // Remember whether editing was restarted after CTRL-O.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
151 did_restart_edit = restart_edit;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
152
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
153 // sleep before redrawing, needed for "CTRL-O :" that results in an
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
154 // error message
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
155 check_for_delay(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
156
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
157 // set Insstart_orig to Insstart
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
158 update_Insstart_orig = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
159
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
160 #ifdef HAVE_SANDBOX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
161 // Don't allow inserting in the sandbox.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
162 if (sandbox != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
163 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
164 emsg(_(e_not_allowed_in_sandbox));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
165 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
166 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
167 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
168 // Don't allow changes in the buffer while editing the cmdline. The
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
169 // caller of getcmdline() may get confused.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
170 // Don't allow recursive insert mode when busy with completion.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
171 if (textlock != 0 || ins_compl_active() || compl_busy || pum_visible())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
172 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
173 emsg(_(e_not_allowed_to_change_text_or_change_window));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
174 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
175 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
176 ins_compl_clear(); // clear stuff for CTRL-X mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
177
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
178 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
179 * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
180 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
181 if (cmdchar != 'r' && cmdchar != 'v')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
182 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
183 pos_T save_cursor = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
184
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
185 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
186 if (cmdchar == 'R')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
187 ptr = (char_u *)"r";
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
188 else if (cmdchar == 'V')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
189 ptr = (char_u *)"v";
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
190 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
191 ptr = (char_u *)"i";
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
192 set_vim_var_string(VV_INSERTMODE, ptr, 1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
193 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
194 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
195 ins_apply_autocmds(EVENT_INSERTENTER);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
196
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
197 // Check for changed highlighting, e.g. for ModeMsg.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
198 if (need_highlight_changed)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
199 highlight_changed();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
200
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
201 // Make sure the cursor didn't move. Do call check_cursor_col() in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
202 // case the text was modified. Since Insert mode was not started yet
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
203 // a call to check_cursor_col() may move the cursor, especially with
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
204 // the "A" command, thus set State to avoid that. Also check that the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
205 // line number is still valid (lines may have been deleted).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
206 // Do not restore if v:char was set to a non-empty string.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
207 if (!EQUAL_POS(curwin->w_cursor, save_cursor)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
208 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
209 && *get_vim_var_str(VV_CHAR) == NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
210 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
211 && save_cursor.lnum <= curbuf->b_ml.ml_line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
212 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
213 int save_state = State;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
214
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
215 curwin->w_cursor = save_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
216 State = MODE_INSERT;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
217 check_cursor_col();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
218 State = save_state;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
219 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
220 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
221
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
222 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
223 // Check if the cursor line was concealed before changing State.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
224 cursor_line_was_concealed = curwin->w_p_cole > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
225 && conceal_cursor_line(curwin);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
226 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
227
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
228 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
229 * When doing a paste with the middle mouse button, Insstart is set to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
230 * where the paste started.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
231 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
232 if (where_paste_started.lnum != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
233 Insstart = where_paste_started;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
234 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
235 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
236 Insstart = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
237 if (startln)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
238 Insstart.col = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
239 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
240 Insstart_textlen = (colnr_T)linetabsize_str(ml_get_curline());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
241 Insstart_blank_vcol = MAXCOL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
242 if (!did_ai)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
243 ai_col = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
244
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
245 if (cmdchar != NUL && restart_edit == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
246 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
247 ResetRedobuff();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
248 AppendNumberToRedobuff(count);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
249 if (cmdchar == 'V' || cmdchar == 'v')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
250 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
251 // "gR" or "gr" command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
252 AppendCharToRedobuff('g');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
253 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
254 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
255 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
256 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
257 if (cmdchar == K_PS)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
258 AppendCharToRedobuff('a');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
259 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
260 AppendCharToRedobuff(cmdchar);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
261 if (cmdchar == 'g') // "gI" command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
262 AppendCharToRedobuff('I');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
263 else if (cmdchar == 'r') // "r<CR>" command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
264 count = 1; // insert only one <CR>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
265 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
266 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
267
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
268 if (cmdchar == 'R')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
269 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
270 State = MODE_REPLACE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
271 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
272 else if (cmdchar == 'V' || cmdchar == 'v')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
273 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
274 State = MODE_VREPLACE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
275 replaceState = MODE_VREPLACE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
276 orig_line_count = curbuf->b_ml.ml_line_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
277 vr_lines_changed = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
278 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
279 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
280 State = MODE_INSERT;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
281
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
282 may_trigger_modechanged();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
283 stop_insert_mode = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
284
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
285 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
286 // Check if the cursor line needs redrawing after changing State. If
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
287 // 'concealcursor' is "n" it needs to be redrawn without concealing.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
288 conceal_check_cursor_line(cursor_line_was_concealed);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
289 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
290
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
291 // Need to position cursor again when on a TAB and when on a char with
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
292 // virtual text.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
293 if (gchar_cursor() == TAB
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
294 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
295 || curbuf->b_has_textprop
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
296 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
297 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
298 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
299
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
300 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
301 * Enable langmap or IME, indicated by 'iminsert'.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
302 * Note that IME may enabled/disabled without us noticing here, thus the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
303 * 'iminsert' value may not reflect what is actually used. It is updated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
304 * when hitting <Esc>.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
305 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
306 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
307 State |= MODE_LANGMAP;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
308 #ifdef HAVE_INPUT_METHOD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
309 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
310 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
311
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
312 setmouse();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
313 clear_showcmd();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
314 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
315 // there is no reverse replace mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
316 revins_on = (State == MODE_INSERT && p_ri);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
317 if (revins_on)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
318 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
319 revins_chars = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
320 revins_legal = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
321 revins_scol = -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
322 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
323 if (!p_ek)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
324 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
325 MAY_WANT_TO_LOG_THIS;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
326
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
327 // Disable bracketed paste mode, we won't recognize the escape
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
328 // sequences.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
329 out_str(T_BD);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
330
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
331 // Disable modifyOtherKeys, keys with modifiers would cause exiting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
332 // Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
333 out_str_t_TE();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
334 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
335
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
336 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
337 * Handle restarting Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
338 * Don't do this for "CTRL-O ." (repeat an insert): In that case we get
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
339 * here with something in the stuff buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
340 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
341 if (restart_edit != 0 && stuff_empty())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
342 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
343 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
344 * After a paste we consider text typed to be part of the insert for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
345 * the pasted text. You can backspace over the pasted text too.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
346 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
347 if (where_paste_started.lnum)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
348 arrow_used = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
349 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
350 arrow_used = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
351 restart_edit = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
352
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
353 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
354 * If the cursor was after the end-of-line before the CTRL-O and it is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
355 * now at the end-of-line, put it after the end-of-line (this is not
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
356 * correct in very rare cases).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
357 * Also do this if curswant is greater than the current virtual
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
358 * column. Eg after "^O$" or "^O80|".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
359 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
360 validate_virtcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
361 update_curswant();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
362 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
363 || curwin->w_curswant > curwin->w_virtcol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
364 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
365 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
366 if (ptr[1] == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
367 ++curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
368 else if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
369 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
370 i = (*mb_ptr2len)(ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
371 if (ptr[i] == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
372 curwin->w_cursor.col += i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
373 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
374 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
375 ins_at_eol = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
376 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
377 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
378 arrow_used = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
379
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
380 // we are in insert mode now, don't need to start it anymore
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
381 need_start_insertmode = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
382
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
383 // Need to save the line for undo before inserting the first char.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
384 ins_need_undo = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
385
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
386 where_paste_started.lnum = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
387 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
388 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
389 // The cursor line is not in a closed fold, unless 'insertmode' is set or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
390 // restarting.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
391 if (!p_im && did_restart_edit == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
392 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
393 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
394
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
395 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
396 * If 'showmode' is set, show the current (insert/replace/..) mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
397 * A warning message for changing a readonly file is given here, before
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
398 * actually changing anything. It's put after the mode, if any.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
399 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
400 i = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
401 if (p_smd && msg_silent == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
402 i = showmode();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
403
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
404 if (!p_im && did_restart_edit == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
405 change_warning(i == 0 ? 0 : i + 1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
406
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
407 #ifdef CURSOR_SHAPE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
408 ui_cursor_shape(); // may show different cursor shape
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
409 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
410 #ifdef FEAT_DIGRAPHS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
411 do_digraph(-1); // clear digraphs
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
412 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
413
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
414 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
415 * Get the current length of the redo buffer, those characters have to be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
416 * skipped if we want to get to the inserted characters.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
417 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
418 ptr = get_inserted();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
419 if (ptr == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
420 new_insert_skip = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
421 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
422 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
423 new_insert_skip = (int)STRLEN(ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
424 vim_free(ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
425 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
426
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
427 old_indent = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
428
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
429 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
430 * Main loop in Insert mode: repeat until Insert mode is left.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
431 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
432 for (;;)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
433 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
434 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
435 if (!revins_legal)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
436 revins_scol = -1; // reset on illegal motions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
437 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
438 revins_legal = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
439 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
440 if (arrow_used) // don't repeat insert when arrow key used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
441 count = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
442
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
443 if (update_Insstart_orig)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
444 Insstart_orig = Insstart;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
445
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
446 if (stop_insert_mode && !ins_compl_active())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
447 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
448 // ":stopinsert" used or 'insertmode' reset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
449 count = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
450 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
451 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
452
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
453 // set curwin->w_curswant for next K_DOWN or K_UP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
454 if (!arrow_used)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
455 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
456
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
457 // If there is no typeahead may check for timestamps (e.g., for when a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
458 // menu invoked a shell command).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
459 if (stuff_empty())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
460 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
461 did_check_timestamps = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
462 if (need_check_timestamps)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
463 check_timestamps(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
464 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
465
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
466 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
467 * When emsg() was called msg_scroll will have been set.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
468 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
469 msg_scroll = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
470
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
471 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
472 // When 'mousefocus' is set a mouse movement may have taken us to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
473 // another window. "need_mouse_correct" may then be set because of an
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
474 // autocommand.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
475 if (need_mouse_correct)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
476 gui_mouse_correct();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
477 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
478
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
479 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
480 // Open fold at the cursor line, according to 'foldopen'.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
481 if (fdo_flags & FDO_INSERT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
482 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
483 // Close folds where the cursor isn't, according to 'foldclose'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
484 if (!char_avail())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
485 foldCheckClose();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
486 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
487
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
488 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
489 if (bt_prompt(curbuf))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
490 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
491 init_prompt(cmdchar_todo);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
492 cmdchar_todo = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
493 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
494 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
495
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
496 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
497 * If we inserted a character at the last position of the last line in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
498 * the window, scroll the window one line up. This avoids an extra
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
499 * redraw.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
500 * This is detected when the cursor column is smaller after inserting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
501 * something.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
502 * Don't do this when the topline changed already, it has
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
503 * already been adjusted (by insertchar() calling open_line())).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
504 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
505 if (curbuf->b_mod_set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
506 && curwin->w_p_wrap
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
507 && !did_backspace
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
508 && curwin->w_topline == old_topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
509 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
510 && curwin->w_topfill == old_topfill
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
511 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
512 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
513 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
514 mincol = curwin->w_wcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
515 validate_cursor_col();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
516
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
517 if (
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
518 #ifdef FEAT_VARTABS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
519 curwin->w_wcol < mincol - tabstop_at(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
520 get_nolist_virtcol(), curbuf->b_p_ts,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
521 curbuf->b_p_vts_array)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
522 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
523 (int)curwin->w_wcol < mincol - curbuf->b_p_ts
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
524 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
525 && curwin->w_wrow == W_WINROW(curwin)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
526 + curwin->w_height - 1 - get_scrolloff_value()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
527 && (curwin->w_cursor.lnum != curwin->w_topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
528 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
529 || curwin->w_topfill > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
530 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
531 ))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
532 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
533 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
534 if (curwin->w_topfill > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
535 --curwin->w_topfill;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
536 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
537 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
538 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
539 if (hasFolding(curwin->w_topline, NULL, &old_topline))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
540 set_topline(curwin, old_topline + 1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
541 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
542 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
543 set_topline(curwin, curwin->w_topline + 1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
544 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
545 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
546
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
547 // May need to adjust w_topline to show the cursor.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
548 update_topline();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
549
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
550 did_backspace = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
551
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
552 validate_cursor(); // may set must_redraw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
553
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
554 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
555 * Redraw the display when no characters are waiting.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
556 * Also shows mode, ruler and positions cursor.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
557 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
558 ins_redraw(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
559
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
560 if (curwin->w_p_scb)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
561 do_check_scrollbind(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
562
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
563 if (curwin->w_p_crb)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
564 do_check_cursorbind();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
565 update_curswant();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
566 old_topline = curwin->w_topline;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
567 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
568 old_topfill = curwin->w_topfill;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
569 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
570
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
571 #ifdef USE_ON_FLY_SCROLL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
572 dont_scroll = FALSE; // allow scrolling here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
573 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
574 // May request the keyboard protocol state now.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
575 may_send_t_RK();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
576
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
577 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
578 * Get a character for Insert mode. Ignore K_IGNORE and K_NOP.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
579 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
580 if (c != K_CURSORHOLD)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
581 lastc = c; // remember the previous char for CTRL-D
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
582
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
583 // After using CTRL-G U the next cursor key will not break undo.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
584 if (dont_sync_undo == MAYBE)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
585 dont_sync_undo = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
586 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
587 dont_sync_undo = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
588 if (cmdchar == K_PS)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
589 // Got here from normal mode when bracketed paste started.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
590 c = K_PS;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
591 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
592 do
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
593 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
594 c = safe_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
595
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
596 if (stop_insert_mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
597 #ifdef FEAT_TERMINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
598 || (c == K_IGNORE && term_use_loop())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
599 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
600 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
601 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
602 // Insert mode ended, possibly from a callback, or a timer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
603 // must have opened a terminal window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
604 if (c != K_IGNORE && c != K_NOP)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
605 vungetc(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
606 count = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
607 nomove = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
608 ins_compl_prep(ESC);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
609 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
610 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
611 } while (c == K_IGNORE || c == K_NOP);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
612
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
613 // Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
614 did_cursorhold = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
615
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
616 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
617 if (p_hkmap && KeyTyped)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
618 c = hkmap(c); // Hebrew mode mapping
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
619 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
620
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
621 // If the window was made so small that nothing shows, make it at least
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
622 // one line and one column when typing.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
623 if (KeyTyped && !KeyStuffed)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
624 win_ensure_size();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
625
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
626 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
627 * Special handling of keys while the popup menu is visible or wanted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
628 * and the cursor is still in the completed word. Only when there is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
629 * a match, skip this when no matches were found.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
630 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
631 if (ins_compl_active()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
632 && pum_wanted()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
633 && curwin->w_cursor.col >= ins_compl_col()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
634 && ins_compl_has_shown_match())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
635 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
636 // BS: Delete one character from "compl_leader".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
637 if ((c == K_BS || c == Ctrl_H)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
638 && curwin->w_cursor.col > ins_compl_col()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
639 && (c = ins_compl_bs()) == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
640 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
641
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
642 // When no match was selected or it was edited.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
643 if (!ins_compl_used_match())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
644 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
645 // CTRL-L: Add one character from the current match to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
646 // "compl_leader". Except when at the original match and
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
647 // there is nothing to add, CTRL-L works like CTRL-P then.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
648 if (c == Ctrl_L
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
649 && (!ctrl_x_mode_line_or_eval()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
650 || ins_compl_long_shown_match()))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
651 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
652 ins_compl_addfrommatch();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
653 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
654 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
655
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
656 // A non-white character that fits in with the current
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
657 // completion: Add to "compl_leader".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
658 if (ins_compl_accept_char(c))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
659 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
660 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
661 // Trigger InsertCharPre.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
662 char_u *str = do_insert_char_pre(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
663 char_u *p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
664
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
665 if (str != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
666 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
667 for (p = str; *p != NUL; MB_PTR_ADV(p))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
668 ins_compl_addleader(PTR2CHAR(p));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
669 vim_free(str);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
670 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
671 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
672 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
673 ins_compl_addleader(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
674 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
675 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
676
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
677 // Pressing CTRL-Y selects the current match. When
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
678 // ins_compl_enter_selects() is set the Enter key does the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
679 // same.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
680 if ((c == Ctrl_Y || (ins_compl_enter_selects()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
681 && (c == CAR || c == K_KENTER || c == NL)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
682 && stop_arrow() == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
683 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
684 ins_compl_delete();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
685 ins_compl_insert(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
686 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
687 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
688 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
689
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
690 // Prepare for or stop CTRL-X mode. This doesn't do completion, but
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
691 // it does fix up the text when finishing completion.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
692 ins_compl_init_get_longest();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
693 if (ins_compl_prep(c))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
694 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
695
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
696 // CTRL-\ CTRL-N goes to Normal mode,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
697 // CTRL-\ CTRL-G goes to mode selected with 'insertmode',
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
698 // CTRL-\ CTRL-O is like CTRL-O but without moving the cursor.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
699 if (c == Ctrl_BSL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
700 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
701 // may need to redraw when no more chars available now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
702 ins_redraw(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
703 ++no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
704 ++allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
705 c = plain_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
706 --no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
707 --allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
708 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
709 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
710 // it's something else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
711 vungetc(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
712 c = Ctrl_BSL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
713 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
714 else if (c == Ctrl_G && p_im)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
715 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
716 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
717 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
718 if (c == Ctrl_O)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
719 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
720 ins_ctrl_o();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
721 ins_at_eol = FALSE; // cursor keeps its column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
722 nomove = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
723 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
724 count = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
725 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
726 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
727 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
728
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
729 #ifdef FEAT_DIGRAPHS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
730 c = do_digraph(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
731 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
732
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
733 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode_cmdline())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
734 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
735 if (c == Ctrl_V || c == Ctrl_Q)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
736 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
737 ins_ctrl_v();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
738 c = Ctrl_V; // pretend CTRL-V is last typed character
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
739 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
740 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
741
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
742 if (cindent_on() && ctrl_x_mode_none())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
743 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
744 // A key name preceded by a bang means this key is not to be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
745 // inserted. Skip ahead to the re-indenting below.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
746 // A key name preceded by a star means that indenting has to be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
747 // done before inserting the key.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
748 line_is_white = inindent(0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
749 if (in_cinkeys(c, '!', line_is_white))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
750 goto force_cindent;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
751 if (can_cindent && in_cinkeys(c, '*', line_is_white)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
752 && stop_arrow() == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
753 do_c_expr_indent();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
754 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
755
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
756 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
757 if (curwin->w_p_rl)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
758 switch (c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
759 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
760 case K_LEFT: c = K_RIGHT; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
761 case K_S_LEFT: c = K_S_RIGHT; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
762 case K_C_LEFT: c = K_C_RIGHT; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
763 case K_RIGHT: c = K_LEFT; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
764 case K_S_RIGHT: c = K_S_LEFT; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
765 case K_C_RIGHT: c = K_C_LEFT; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
766 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
767 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
768
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
769 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
770 * If 'keymodel' contains "startsel", may start selection. If it
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
771 * does, a CTRL-O and c will be stuffed, we need to get these
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
772 * characters.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
773 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
774 if (ins_start_select(c))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
775 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
776
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
777 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
778 * The big switch to handle a character in insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
779 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
780 switch (c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
781 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
782 case ESC: // End input mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
783 if (echeck_abbr(ESC + ABBR_OFF))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
784 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
785 // FALLTHROUGH
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
786
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
787 case Ctrl_C: // End input mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
788 if (c == Ctrl_C && cmdwin_type != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
789 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
790 // Close the cmdline window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
791 cmdwin_result = K_IGNORE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
792 got_int = FALSE; // don't stop executing autocommands et al.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
793 nomove = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
794 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
795 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
796 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
797 if (c == Ctrl_C && bt_prompt(curbuf))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
798 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
799 if (invoke_prompt_interrupt())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
800 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
801 if (!bt_prompt(curbuf))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
802 // buffer changed to a non-prompt buffer, get out of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
803 // Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
804 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
805 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
806 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
807 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
808 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
809
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
810 #ifdef UNIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
811 do_intr:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
812 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
813 // when 'insertmode' set, and not halfway a mapping, don't leave
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
814 // Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
815 if (goto_im())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
816 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
817 if (got_int)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
818 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
819 (void)vgetc(); // flush all buffers
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
820 got_int = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
821 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
822 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
823 vim_beep(BO_IM);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
824 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
825 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
826 doESCkey:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
827 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
828 * This is the ONLY return from edit()!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
829 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
830 // Always update o_lnum, so that a "CTRL-O ." that adds a line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
831 // still puts the cursor back after the inserted text.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
832 if (ins_at_eol && gchar_cursor() == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
833 o_lnum = curwin->w_cursor.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
834
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
835 if (ins_esc(&count, cmdchar, nomove))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
836 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
837 // When CTRL-C was typed got_int will be set, with the result
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
838 // that the autocommands won't be executed. When mapped got_int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
839 // is not set, but let's keep the behavior the same.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
840 if (cmdchar != 'r' && cmdchar != 'v' && c != Ctrl_C)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
841 ins_apply_autocmds(EVENT_INSERTLEAVE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
842 did_cursorhold = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
843 return (c == Ctrl_O);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
844 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
845 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
846
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
847 case Ctrl_Z: // suspend when 'insertmode' set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
848 if (!p_im)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
849 goto normalchar; // insert CTRL-Z as normal char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
850 do_cmdline_cmd((char_u *)"stop");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
851 #ifdef CURSOR_SHAPE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
852 ui_cursor_shape(); // may need to update cursor shape
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
853 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
854 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
855
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
856 case Ctrl_O: // execute one command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
857 #ifdef FEAT_COMPL_FUNC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
858 if (ctrl_x_mode_omni())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
859 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
860 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
861 if (echeck_abbr(Ctrl_O + ABBR_OFF))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
862 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
863 ins_ctrl_o();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
864
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
865 // don't move the cursor left when 'virtualedit' has "onemore".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
866 if (get_ve_flags() & VE_ONEMORE)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
867 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
868 ins_at_eol = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
869 nomove = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
870 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
871 count = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
872 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
873
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
874 case K_INS: // toggle insert/replace mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
875 case K_KINS:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
876 ins_insert(replaceState);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
877 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
878
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
879 case K_SELECT: // end of Select mode mapping - ignore
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
880 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
881
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
882 case K_HELP: // Help key works like <ESC> <Help>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
883 case K_F1:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
884 case K_XF1:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
885 stuffcharReadbuff(K_HELP);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
886 if (p_im)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
887 need_start_insertmode = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
888 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
889
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
890 #ifdef FEAT_NETBEANS_INTG
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
891 case K_F21: // NetBeans command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
892 ++no_mapping; // don't map the next key hits
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
893 i = plain_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
894 --no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
895 netbeans_keycommand(i);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
896 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
897 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
898
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
899 case K_ZERO: // Insert the previously inserted text.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
900 case NUL:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
901 case Ctrl_A:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
902 // For ^@ the trailing ESC will end the insert, unless there is an
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
903 // error.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
904 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
905 && c != Ctrl_A && !p_im)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
906 goto doESCkey; // quit insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
907 inserted_space = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
908 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
909
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
910 case Ctrl_R: // insert the contents of a register
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
911 ins_reg();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
912 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
913 inserted_space = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
914 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
915
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
916 case Ctrl_G: // commands starting with CTRL-G
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
917 ins_ctrl_g();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
918 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
919
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
920 case Ctrl_HAT: // switch input mode and/or langmap
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
921 ins_ctrl_hat();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
922 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
923
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
924 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
925 case Ctrl__: // switch between languages
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
926 if (!p_ari)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
927 goto normalchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
928 ins_ctrl_();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
929 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
930 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
931
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
932 case Ctrl_D: // Make indent one shiftwidth smaller.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
933 #if defined(FEAT_FIND_ID)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
934 if (ctrl_x_mode_path_defines())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
935 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
936 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
937 // FALLTHROUGH
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
938
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
939 case Ctrl_T: // Make indent one shiftwidth greater.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
940 if (c == Ctrl_T && ctrl_x_mode_thesaurus())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
941 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
942 if (has_compl_option(FALSE))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
943 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
944 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
945 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
946
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
947 ins_shift(c, lastc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
948 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
949 inserted_space = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
950 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
951
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
952 case K_DEL: // delete character under the cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
953 case K_KDEL:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
954 ins_del();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
955 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
956 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
957
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
958 case K_BS: // delete character before the cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
959 case K_S_BS:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
960 case Ctrl_H:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
961 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
962 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
963 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
964
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
965 case Ctrl_W: // delete word before the cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
966 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
967 if (bt_prompt(curbuf) && (mod_mask & MOD_MASK_SHIFT) == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
968 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
969 // In a prompt window CTRL-W is used for window commands.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
970 // Use Shift-CTRL-W to delete a word.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
971 stuffcharReadbuff(Ctrl_W);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
972 restart_edit = 'A';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
973 nomove = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
974 count = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
975 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
976 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
977 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
978 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
979 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
980 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
981
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
982 case Ctrl_U: // delete all inserted text in current line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
983 # ifdef FEAT_COMPL_FUNC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
984 // CTRL-X CTRL-U completes with 'completefunc'.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
985 if (ctrl_x_mode_function())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
986 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
987 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
988 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
989 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
990 inserted_space = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
991 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
992
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
993 case K_LEFTMOUSE: // mouse keys
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
994 case K_LEFTMOUSE_NM:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
995 case K_LEFTDRAG:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
996 case K_LEFTRELEASE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
997 case K_LEFTRELEASE_NM:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
998 case K_MOUSEMOVE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
999 case K_MIDDLEMOUSE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1000 case K_MIDDLEDRAG:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1001 case K_MIDDLERELEASE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1002 case K_RIGHTMOUSE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1003 case K_RIGHTDRAG:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1004 case K_RIGHTRELEASE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1005 case K_X1MOUSE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1006 case K_X1DRAG:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1007 case K_X1RELEASE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1008 case K_X2MOUSE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1009 case K_X2DRAG:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1010 case K_X2RELEASE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1011 ins_mouse(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1012 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1013
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1014 case K_MOUSEDOWN: // Default action for scroll wheel up: scroll up
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1015 ins_mousescroll(MSCR_DOWN);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1016 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1017
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1018 case K_MOUSEUP: // Default action for scroll wheel down: scroll down
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1019 ins_mousescroll(MSCR_UP);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1020 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1021
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1022 case K_MOUSELEFT: // Scroll wheel left
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1023 ins_mousescroll(MSCR_LEFT);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1024 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1025
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1026 case K_MOUSERIGHT: // Scroll wheel right
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1027 ins_mousescroll(MSCR_RIGHT);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1028 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1029
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1030 case K_PS:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1031 bracketed_paste(PASTE_INSERT, FALSE, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1032 if (cmdchar == K_PS)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1033 // invoked from normal mode, bail out
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1034 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1035 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1036 case K_PE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1037 // Got K_PE without K_PS, ignore.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1038 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1039
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1040 #ifdef FEAT_GUI_TABLINE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1041 case K_TABLINE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1042 case K_TABMENU:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1043 ins_tabline(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1044 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1045 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1046
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1047 case K_IGNORE: // Something mapped to nothing
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1048 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1049
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1050 case K_COMMAND: // <Cmd>command<CR>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1051 case K_SCRIPT_COMMAND: // <ScriptCmd>command<CR>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1052 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1053 do_cmdkey_command(c, 0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1054
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1055 #ifdef FEAT_TERMINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1056 if (term_use_loop())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1057 // Started a terminal that gets the input, exit Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1058 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1059 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1060 if (curbuf->b_u_synced)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1061 // The command caused undo to be synced. Need to save the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1062 // line for undo before inserting the next char.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1063 ins_need_undo = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1064 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1065 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1066
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1067 case K_CURSORHOLD: // Didn't type something for a while.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1068 ins_apply_autocmds(EVENT_CURSORHOLDI);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1069 did_cursorhold = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1070 // If CTRL-G U was used apply it to the next typed key.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1071 if (dont_sync_undo == TRUE)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1072 dont_sync_undo = MAYBE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1073 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1074
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1075 #ifdef FEAT_GUI_MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1076 // On MS-Windows ignore <M-F4>, we get it when closing the window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1077 // was cancelled.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1078 case K_F4:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1079 if (mod_mask != MOD_MASK_ALT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1080 goto normalchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1081 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1082 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1083
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1084 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1085 case K_VER_SCROLLBAR:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1086 ins_scroll();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1087 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1088
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1089 case K_HOR_SCROLLBAR:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1090 ins_horscroll();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1091 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1092 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1093
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1094 case K_HOME: // <Home>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1095 case K_KHOME:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1096 case K_S_HOME:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1097 case K_C_HOME:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1098 ins_home(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1099 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1100
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1101 case K_END: // <End>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1102 case K_KEND:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1103 case K_S_END:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1104 case K_C_END:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1105 ins_end(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1106 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1107
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1108 case K_LEFT: // <Left>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1109 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1110 ins_s_left();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1111 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1112 ins_left();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1113 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1114
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1115 case K_S_LEFT: // <S-Left>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1116 case K_C_LEFT:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1117 ins_s_left();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1118 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1119
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1120 case K_RIGHT: // <Right>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1121 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1122 ins_s_right();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1123 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1124 ins_right();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1125 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1126
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1127 case K_S_RIGHT: // <S-Right>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1128 case K_C_RIGHT:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1129 ins_s_right();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1130 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1131
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1132 case K_UP: // <Up>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1133 if (pum_visible())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1134 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1135 if (mod_mask & MOD_MASK_SHIFT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1136 ins_pageup();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1137 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1138 ins_up(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1139 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1140
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1141 case K_S_UP: // <S-Up>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1142 case K_PAGEUP:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1143 case K_KPAGEUP:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1144 if (pum_visible())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1145 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1146 ins_pageup();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1147 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1148
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1149 case K_DOWN: // <Down>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1150 if (pum_visible())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1151 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1152 if (mod_mask & MOD_MASK_SHIFT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1153 ins_pagedown();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1154 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1155 ins_down(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1156 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1157
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1158 case K_S_DOWN: // <S-Down>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1159 case K_PAGEDOWN:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1160 case K_KPAGEDOWN:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1161 if (pum_visible())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1162 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1163 ins_pagedown();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1164 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1165
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1166 #ifdef FEAT_DND
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1167 case K_DROP: // drag-n-drop event
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1168 ins_drop();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1169 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1170 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1171
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1172 case K_S_TAB: // When not mapped, use like a normal TAB
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1173 c = TAB;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1174 // FALLTHROUGH
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1175
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1176 case TAB: // TAB or Complete patterns along path
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1177 #if defined(FEAT_FIND_ID)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1178 if (ctrl_x_mode_path_patterns())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1179 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1180 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1181 inserted_space = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1182 if (ins_tab())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1183 goto normalchar; // insert TAB as a normal char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1184 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1185 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1186
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1187 case K_KENTER: // <Enter>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1188 c = CAR;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1189 // FALLTHROUGH
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1190 case CAR:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1191 case NL:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1192 #if defined(FEAT_QUICKFIX)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1193 // In a quickfix window a <CR> jumps to the error under the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1194 // cursor.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1195 if (bt_quickfix(curbuf) && c == CAR)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1196 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1197 if (curwin->w_llist_ref == NULL) // quickfix window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1198 do_cmdline_cmd((char_u *)".cc");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1199 else // location list window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1200 do_cmdline_cmd((char_u *)".ll");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1201 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1202 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1203 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1204 if (cmdwin_type != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1205 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1206 // Execute the command in the cmdline window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1207 cmdwin_result = CAR;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1208 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1209 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1210 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1211 if (bt_prompt(curbuf))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1212 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1213 invoke_prompt_callback();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1214 if (!bt_prompt(curbuf))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1215 // buffer changed to a non-prompt buffer, get out of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1216 // Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1217 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1218 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1219 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1220 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1221 if (ins_eol(c) == FAIL && !p_im)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1222 goto doESCkey; // out of memory
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1223 auto_format(FALSE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1224 inserted_space = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1225 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1226
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1227 case Ctrl_K: // digraph or keyword completion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1228 if (ctrl_x_mode_dictionary())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1229 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1230 if (has_compl_option(TRUE))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1231 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1232 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1233 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1234 #ifdef FEAT_DIGRAPHS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1235 c = ins_digraph();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1236 if (c == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1237 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1238 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1239 goto normalchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1240
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1241 case Ctrl_X: // Enter CTRL-X mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1242 ins_ctrl_x();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1243 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1244
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1245 case Ctrl_RSB: // Tag name completion after ^X
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1246 if (!ctrl_x_mode_tags())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1247 goto normalchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1248 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1249
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1250 case Ctrl_F: // File name completion after ^X
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1251 if (!ctrl_x_mode_files())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1252 goto normalchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1253 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1254
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1255 case 's': // Spelling completion after ^X
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1256 case Ctrl_S:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1257 if (!ctrl_x_mode_spell())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1258 goto normalchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1259 goto docomplete;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1260
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1261 case Ctrl_L: // Whole line completion after ^X
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1262 if (!ctrl_x_mode_whole_line())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1263 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1264 // CTRL-L with 'insertmode' set: Leave Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1265 if (p_im)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1266 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1267 if (echeck_abbr(Ctrl_L + ABBR_OFF))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1268 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1269 goto doESCkey;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1270 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1271 goto normalchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1272 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1273 // FALLTHROUGH
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1274
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1275 case Ctrl_P: // Do previous/next pattern completion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1276 case Ctrl_N:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1277 // if 'complete' is empty then plain ^P is no longer special,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1278 // but it is under other ^X modes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1279 if (*curbuf->b_p_cpt == NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1280 && (ctrl_x_mode_normal() || ctrl_x_mode_whole_line())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1281 && !compl_status_local())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1282 goto normalchar;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1283
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1284 docomplete:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1285 compl_busy = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1286 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1287 disable_fold_update++; // don't redraw folds here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1288 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1289 if (ins_complete(c, TRUE) == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1290 compl_status_clear();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1291 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1292 disable_fold_update--;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1293 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1294 compl_busy = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1295 can_si = may_do_si(); // allow smartindenting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1296 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1297
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1298 case Ctrl_Y: // copy from previous line or scroll down
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1299 case Ctrl_E: // copy from next line or scroll up
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1300 c = ins_ctrl_ey(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1301 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1302
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1303 default:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1304 #ifdef UNIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1305 if (c == intr_char) // special interrupt char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1306 goto do_intr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1307 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1308
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1309 normalchar:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1310 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1311 * Insert a normal character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1312 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1313 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1314 if (!p_paste)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1315 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1316 // Trigger InsertCharPre.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1317 char_u *str = do_insert_char_pre(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1318 char_u *p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1319
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1320 if (str != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1321 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1322 if (*str != NUL && stop_arrow() != FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1323 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1324 // Insert the new value of v:char literally.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1325 for (p = str; *p != NUL; MB_PTR_ADV(p))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1326 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1327 c = PTR2CHAR(p);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1328 if (c == CAR || c == K_KENTER || c == NL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1329 ins_eol(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1330 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1331 ins_char(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1332 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1333 AppendToRedobuffLit(str, -1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1334 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1335 vim_free(str);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1336 c = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1337 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1338
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1339 // If the new value is already inserted or an empty string
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1340 // then don't insert any character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1341 if (c == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1342 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1343 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1344 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1345 // Try to perform smart-indenting.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1346 ins_try_si(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1347
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1348 if (c == ' ')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1349 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1350 inserted_space = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1351 if (inindent(0))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1352 can_cindent = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1353 if (Insstart_blank_vcol == MAXCOL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1354 && curwin->w_cursor.lnum == Insstart.lnum)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1355 Insstart_blank_vcol = get_nolist_virtcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1356 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1357
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1358 // Insert a normal character and check for abbreviations on a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1359 // special character. Let CTRL-] expand abbreviations without
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1360 // inserting it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1361 if (vim_iswordc(c) || (!echeck_abbr(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1362 // Add ABBR_OFF for characters above 0x100, this is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1363 // what check_abbr() expects.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1364 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1365 && c != Ctrl_RSB))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1366 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1367 insert_special(c, FALSE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1368 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1369 revins_legal++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1370 revins_chars++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1371 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1372 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1373
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1374 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1375
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1376 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1377 // When inserting a character the cursor line must never be in a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1378 // closed fold.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1379 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1380 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1381 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1382 } // end of switch (c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1383
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1384 // If typed something may trigger CursorHoldI again.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1385 if (c != K_CURSORHOLD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1386 #ifdef FEAT_COMPL_FUNC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1387 // but not in CTRL-X mode, a script can't restore the state
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1388 && ctrl_x_mode_normal()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1389 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1390 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1391 did_cursorhold = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1392
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1393 // If the cursor was moved we didn't just insert a space
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1394 if (arrow_used)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1395 inserted_space = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1396
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1397 if (can_cindent && cindent_on() && ctrl_x_mode_normal())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1398 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1399 force_cindent:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1400 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1401 * Indent now if a key was typed that is in 'cinkeys'.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1402 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1403 if (in_cinkeys(c, ' ', line_is_white))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1404 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1405 if (stop_arrow() == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1406 // re-indent the current line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1407 do_c_expr_indent();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1408 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1409 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1410
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1411 } // for (;;)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1412 // NOTREACHED
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1413 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1414
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1415 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1416 ins_need_undo_get(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1417 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1418 return ins_need_undo;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1419 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1420
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1421 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1422 * Redraw for Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1423 * This is postponed until getting the next character to make '$' in the 'cpo'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1424 * option work correctly.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1425 * Only redraw when there are no characters available. This speeds up
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1426 * inserting sequences of characters (e.g., for CTRL-R).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1427 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1428 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1429 ins_redraw(int ready) // not busy with something
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1430 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1431 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1432 linenr_T conceal_old_cursor_line = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1433 linenr_T conceal_new_cursor_line = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1434 int conceal_update_lines = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1435 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1436
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1437 if (char_avail())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1438 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1439
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1440 // Trigger CursorMoved if the cursor moved. Not when the popup menu is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1441 // visible, the command might delete it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1442 if (ready && (has_cursormovedI()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1443 # ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1444 || popup_visible
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1445 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1446 # if defined(FEAT_CONCEAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1447 || curwin->w_p_cole > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1448 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1449 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1450 && !EQUAL_POS(last_cursormoved, curwin->w_cursor)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1451 && !pum_visible())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1452 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1453 # ifdef FEAT_SYN_HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1454 // Need to update the screen first, to make sure syntax
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1455 // highlighting is correct after making a change (e.g., inserting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1456 // a "(". The autocommand may also require a redraw, so it's done
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1457 // again below, unfortunately.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1458 if (syntax_present(curwin) && must_redraw)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1459 update_screen(0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1460 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1461 if (has_cursormovedI())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1462 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1463 // Make sure curswant is correct, an autocommand may call
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1464 // getcurpos().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1465 update_curswant();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1466 ins_apply_autocmds(EVENT_CURSORMOVEDI);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1467 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1468 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1469 if (popup_visible)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1470 popup_check_cursor_pos();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1471 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1472 # ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1473 if (curwin->w_p_cole > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1474 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1475 conceal_old_cursor_line = last_cursormoved.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1476 conceal_new_cursor_line = curwin->w_cursor.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1477 conceal_update_lines = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1478 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1479 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1480 last_cursormoved = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1481 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1482
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1483 // Trigger TextChangedI if b_changedtick_i differs.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1484 if (ready && has_textchangedI()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1485 && curbuf->b_last_changedtick_i != CHANGEDTICK(curbuf)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1486 && !pum_visible())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1487 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1488 aco_save_T aco;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1489 varnumber_T tick = CHANGEDTICK(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1490
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1491 // Save and restore curwin and curbuf, in case the autocmd changes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1492 // them.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1493 aucmd_prepbuf(&aco, curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1494 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1495 aucmd_restbuf(&aco);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1496 curbuf->b_last_changedtick_i = CHANGEDTICK(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1497 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1498 u_save(curwin->w_cursor.lnum,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1499 (linenr_T)(curwin->w_cursor.lnum + 1));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1500 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1501
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1502 // Trigger TextChangedP if b_changedtick_pum differs. When the popupmenu
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1503 // closes TextChangedI will need to trigger for backwards compatibility,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1504 // thus use different b_last_changedtick* variables.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1505 if (ready && has_textchangedP()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1506 && curbuf->b_last_changedtick_pum != CHANGEDTICK(curbuf)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1507 && pum_visible())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1508 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1509 aco_save_T aco;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1510 varnumber_T tick = CHANGEDTICK(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1511
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1512 // Save and restore curwin and curbuf, in case the autocmd changes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1513 // them.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1514 aucmd_prepbuf(&aco, curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1515 apply_autocmds(EVENT_TEXTCHANGEDP, NULL, NULL, FALSE, curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1516 aucmd_restbuf(&aco);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1517 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1518 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1519 u_save(curwin->w_cursor.lnum,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1520 (linenr_T)(curwin->w_cursor.lnum + 1));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1521 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1522
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1523 if (ready)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1524 may_trigger_win_scrolled_resized();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1525
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1526 // Trigger SafeState if nothing is pending.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1527 may_trigger_safestate(ready
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1528 && !ins_compl_active()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1529 && !pum_visible());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1530
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1531 #if defined(FEAT_CONCEAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1532 if ((conceal_update_lines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1533 && (conceal_old_cursor_line != conceal_new_cursor_line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1534 || conceal_cursor_line(curwin)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1535 || need_cursor_line_redraw)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1536 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1537 if (conceal_old_cursor_line != conceal_new_cursor_line)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1538 redrawWinline(curwin, conceal_old_cursor_line);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1539 redrawWinline(curwin, conceal_new_cursor_line == 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1540 ? curwin->w_cursor.lnum : conceal_new_cursor_line);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1541 curwin->w_valid &= ~VALID_CROW;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1542 need_cursor_line_redraw = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1543 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1544 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1545 if (must_redraw)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1546 update_screen(0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1547 else if (clear_cmdline || redraw_cmdline)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1548 showmode(); // clear cmdline and show mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1549 showruler(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1550 setcursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1551 emsg_on_display = FALSE; // may remove error message now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1552 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1553
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1554 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1555 * Handle a CTRL-V or CTRL-Q typed in Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1556 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1557 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1558 ins_ctrl_v(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1559 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1560 int c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1561 int did_putchar = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1562
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1563 // may need to redraw when no more chars available now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1564 ins_redraw(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1565
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1566 if (redrawing() && !char_avail())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1567 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1568 edit_putchar('^', TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1569 did_putchar = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1570 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1571 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1572
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1573 add_to_showcmd_c(Ctrl_V);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1574
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1575 // Do not change any modifyOtherKeys ESC sequence to a normal key for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1576 // CTRL-SHIFT-V.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1577 c = get_literal(mod_mask & MOD_MASK_SHIFT);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1578 if (did_putchar)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1579 // when the line fits in 'columns' the '^' is at the start of the next
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1580 // line and will not removed by the redraw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1581 edit_unputchar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1582 clear_showcmd();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1583
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1584 insert_special(c, FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1585 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1586 revins_chars++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1587 revins_legal++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1588 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1589 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1590
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1591 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1592 * After getting an ESC or CSI for a literal key: If the typeahead buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1593 * contains a modifyOtherKeys sequence then decode it and return the result.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1594 * Otherwise return "c".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1595 * Note that this doesn't wait for characters, they must be in the typeahead
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1596 * buffer already.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1597 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1598 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1599 decodeModifyOtherKeys(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1600 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1601 char_u *p = typebuf.tb_buf + typebuf.tb_off;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1602 int idx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1603 int form = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1604 int argidx = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1605 int arg[2] = {0, 0};
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1606
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1607 // Recognize:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1608 // form 0: {lead}{key};{modifier}u
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1609 // form 1: {lead}27;{modifier};{key}~
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1610 if (typebuf.tb_len >= 4 && (c == CSI || (c == ESC && *p == '[')))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1611 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1612 idx = (*p == '[');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1613 if (p[idx] == '2' && p[idx + 1] == '7' && p[idx + 2] == ';')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1614 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1615 form = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1616 idx += 3;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1617 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1618 while (idx < typebuf.tb_len && argidx < 2)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1619 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1620 if (p[idx] == ';')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1621 ++argidx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1622 else if (VIM_ISDIGIT(p[idx]))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1623 arg[argidx] = arg[argidx] * 10 + (p[idx] - '0');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1624 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1625 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1626 ++idx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1627 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1628 if (idx < typebuf.tb_len
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1629 && p[idx] == (form == 1 ? '~' : 'u')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1630 && argidx == 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1631 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1632 // Match, consume the code.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1633 typebuf.tb_off += idx + 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1634 typebuf.tb_len -= idx + 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1635 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1636 if (typebuf.tb_len == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1637 typebuf_was_filled = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1638 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1639
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1640 mod_mask = decode_modifiers(arg[!form]);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1641 c = merge_modifyOtherKeys(arg[form], &mod_mask);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1642 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1643 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1644
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1645 return c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1646 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1647
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1648 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1649 * Put a character directly onto the screen. It's not stored in a buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1650 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1651 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1652 static int pc_status;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1653 #define PC_STATUS_UNSET 0 // pc_bytes was not set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1654 #define PC_STATUS_RIGHT 1 // right half of double-wide char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1655 #define PC_STATUS_LEFT 2 // left half of double-wide char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1656 #define PC_STATUS_SET 3 // pc_bytes was filled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1657 static char_u pc_bytes[MB_MAXBYTES + 1]; // saved bytes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1658 static int pc_attr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1659 static int pc_row;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1660 static int pc_col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1661
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1662 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1663 edit_putchar(int c, int highlight)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1664 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1665 int attr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1666
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1667 if (ScreenLines == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1668 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1669
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1670 update_topline(); // just in case w_topline isn't valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1671 validate_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1672 if (highlight)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1673 attr = HL_ATTR(HLF_8);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1674 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1675 attr = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1676 pc_row = W_WINROW(curwin) + curwin->w_wrow;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1677 pc_col = curwin->w_wincol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1678 pc_status = PC_STATUS_UNSET;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1679 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1680 if (curwin->w_p_rl)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1681 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1682 pc_col += curwin->w_width - 1 - curwin->w_wcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1683 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1684 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1685 int fix_col = mb_fix_col(pc_col, pc_row);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1686
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1687 if (fix_col != pc_col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1688 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1689 screen_putchar(' ', pc_row, fix_col, attr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1690 --curwin->w_wcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1691 pc_status = PC_STATUS_RIGHT;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1692 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1693 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1694 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1695 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1696 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1697 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1698 pc_col += curwin->w_wcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1699 if (mb_lefthalve(pc_row, pc_col))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1700 pc_status = PC_STATUS_LEFT;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1701 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1702
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1703 // save the character to be able to put it back
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1704 if (pc_status == PC_STATUS_UNSET)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1705 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1706 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1707 pc_status = PC_STATUS_SET;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1708 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1709 screen_putchar(c, pc_row, pc_col, attr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1710 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1711
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1712 #if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1713 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1714 * Set the insert start position for when using a prompt buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1715 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1716 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1717 set_insstart(linenr_T lnum, int col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1718 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1719 Insstart.lnum = lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1720 Insstart.col = col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1721 Insstart_orig = Insstart;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1722 Insstart_textlen = Insstart.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1723 Insstart_blank_vcol = MAXCOL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1724 arrow_used = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1725 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1726 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1727
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1728 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1729 * Undo the previous edit_putchar().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1730 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1731 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1732 edit_unputchar(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1733 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1734 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1735 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1736 if (pc_status == PC_STATUS_RIGHT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1737 ++curwin->w_wcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1738 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1739 redrawWinline(curwin, curwin->w_cursor.lnum);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1740 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1741 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1742 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1743 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1744
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1745 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1746 * Called when "$" is in 'cpoptions': display a '$' at the end of the changed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1747 * text. Only works when cursor is in the line that changes.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1748 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1749 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1750 display_dollar(colnr_T col_arg)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1751 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1752 colnr_T col = col_arg < 0 ? 0 : col_arg;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1753 colnr_T save_col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1754
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1755 if (!redrawing())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1756 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1757
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1758 cursor_off();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1759 save_col = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1760 curwin->w_cursor.col = col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1761 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1762 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1763 char_u *p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1764
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1765 // If on the last byte of a multi-byte move to the first byte.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1766 p = ml_get_curline();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1767 curwin->w_cursor.col -= (*mb_head_off)(p, p + col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1768 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1769 curs_columns(FALSE); // recompute w_wrow and w_wcol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1770 if (curwin->w_wcol < curwin->w_width)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1771 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1772 edit_putchar('$', FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1773 dollar_vcol = curwin->w_virtcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1774 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1775 curwin->w_cursor.col = save_col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1776 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1777
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1778 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1779 * Call this function before moving the cursor from the normal insert position
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1780 * in insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1781 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1782 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1783 undisplay_dollar(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1784 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1785 if (dollar_vcol < 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1786 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1787
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1788 dollar_vcol = -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1789 redrawWinline(curwin, curwin->w_cursor.lnum);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1790 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1791
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1792 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1793 * Truncate the space at the end of a line. This is to be used only in an
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1794 * insert mode. It handles fixing the replace stack for MODE_REPLACE and
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1795 * MODE_VREPLACE modes.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1796 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1797 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1798 truncate_spaces(char_u *line)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1799 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1800 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1801
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1802 // find start of trailing white space
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1803 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1804 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1805 if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1806 replace_join(0); // remove a NUL from the replace stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1807 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1808 line[i + 1] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1809 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1810
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1811 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1812 * Backspace the cursor until the given column. Handles MODE_REPLACE and
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1813 * MODE_VREPLACE modes correctly. May also be used when not in insert mode at
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1814 * all. Will attempt not to go before "col" even when there is a composing
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1815 * character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1816 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1817 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1818 backspace_until_column(int col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1819 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1820 while ((int)curwin->w_cursor.col > col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1821 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1822 curwin->w_cursor.col--;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1823 if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1824 replace_do_bs(col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1825 else if (!del_char_after_col(col))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1826 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1827 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1828 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1829
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1830 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1831 * Like del_char(), but make sure not to go before column "limit_col".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1832 * Only matters when there are composing characters.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1833 * Return TRUE when something was deleted.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1834 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1835 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1836 del_char_after_col(int limit_col UNUSED)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1837 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1838 if (enc_utf8 && limit_col >= 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1839 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1840 colnr_T ecol = curwin->w_cursor.col + 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1841
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1842 // Make sure the cursor is at the start of a character, but
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1843 // skip forward again when going too far back because of a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1844 // composing character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1845 mb_adjust_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1846 while (curwin->w_cursor.col < (colnr_T)limit_col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1847 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1848 int l = utf_ptr2len(ml_get_cursor());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1849
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1850 if (l == 0) // end of line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1851 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1852 curwin->w_cursor.col += l;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1853 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1854 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1855 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1856 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1857 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1858 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1859 (void)del_char(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1860 return TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1861 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1862
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1863 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1864 * Next character is interpreted literally.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1865 * A one, two or three digit decimal number is interpreted as its byte value.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1866 * If one or two digits are entered, the next character is given to vungetc().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1867 * For Unicode a character > 255 may be returned.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1868 * If "noReduceKeys" is TRUE do not change any modifyOtherKeys ESC sequence
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1869 * into a normal key, return ESC.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1870 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1871 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1872 get_literal(int noReduceKeys)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1873 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1874 int cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1875 int nc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1876 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1877 int hex = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1878 int octal = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1879 int unicode = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1880
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1881 if (got_int)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1882 return Ctrl_C;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1883
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1884 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1885 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1886 * In GUI there is no point inserting the internal code for a special key.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1887 * It is more useful to insert the string "<KEY>" instead. This would
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1888 * probably be useful in a text window too, but it would not be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1889 * vi-compatible (maybe there should be an option for it?) -- webb
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1890 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1891 if (gui.in_use)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1892 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1893 ++allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1894 if (noReduceKeys)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1895 ++no_reduce_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1896 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1897 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1898 #ifdef USE_ON_FLY_SCROLL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1899 dont_scroll = TRUE; // disallow scrolling here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1900 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1901 ++no_mapping; // don't map the next key hits
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1902 cc = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1903 i = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1904 for (;;)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1905 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1906 nc = plain_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1907 if ((nc == ESC || nc == CSI) && !noReduceKeys)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1908 nc = decodeModifyOtherKeys(nc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1909
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1910 if ((mod_mask & ~MOD_MASK_SHIFT) != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1911 // A character with non-Shift modifiers should not be a valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1912 // character for i_CTRL-V_digit.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1913 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1914
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1915 if ((State & MODE_CMDLINE) == 0 && MB_BYTE2LEN_CHECK(nc) == 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1916 add_to_showcmd(nc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1917 if (nc == 'x' || nc == 'X')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1918 hex = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1919 else if (nc == 'o' || nc == 'O')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1920 octal = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1921 else if (nc == 'u' || nc == 'U')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1922 unicode = nc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1923 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1924 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1925 if (hex || unicode != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1926 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1927 if (!vim_isxdigit(nc))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1928 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1929 cc = cc * 16 + hex2nr(nc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1930 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1931 else if (octal)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1932 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1933 if (nc < '0' || nc > '7')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1934 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1935 cc = cc * 8 + nc - '0';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1936 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1937 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1938 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1939 if (!VIM_ISDIGIT(nc))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1940 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1941 cc = cc * 10 + nc - '0';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1942 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1943
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1944 ++i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1945 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1946
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1947 if (cc > 255 && unicode == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1948 cc = 255; // limit range to 0-255
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1949 nc = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1950
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1951 if (hex) // hex: up to two chars
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1952 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1953 if (i >= 2)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1954 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1955 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1956 else if (unicode) // Unicode: up to four or eight chars
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1957 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1958 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1959 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1960 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1961 else if (i >= 3) // decimal or octal: up to three chars
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1962 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1963 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1964 if (i == 0) // no number entered
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1965 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1966 if (nc == K_ZERO) // NUL is stored as NL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1967 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1968 cc = '\n';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1969 nc = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1970 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1971 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1972 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1973 cc = nc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1974 nc = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1975 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1976 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1977
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1978 if (cc == 0) // NUL is stored as NL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1979 cc = '\n';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1980 if (enc_dbcs && (cc & 0xff) == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1981 cc = '?'; // don't accept an illegal DBCS char, the NUL in the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1982 // second byte will cause trouble!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1983
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1984 --no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1985 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1986 if (gui.in_use)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1987 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1988 --allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1989 if (noReduceKeys)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1990 --no_reduce_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1991 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1992 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1993 if (nc)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1994 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1995 vungetc(nc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1996 // A character typed with i_CTRL-V_digit cannot have modifiers.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1997 mod_mask = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1998 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
1999 got_int = FALSE; // CTRL-C typed after CTRL-V is not an interrupt
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2000 return cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2001 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2002
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2003 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2004 * Insert character, taking care of special keys and mod_mask
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2005 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2006 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2007 insert_special(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2008 int c,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2009 int allow_modmask,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2010 int ctrlv) // c was typed after CTRL-V
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2011 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2012 char_u *p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2013 int len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2014
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2015 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2016 * Special function key, translate into "<Key>". Up to the last '>' is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2017 * inserted with ins_str(), so as not to replace characters in replace
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2018 * mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2019 * Only use mod_mask for special keys, to avoid things like <S-Space>,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2020 * unless 'allow_modmask' is TRUE.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2021 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2022 #ifdef MACOS_X
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2023 // Command-key never produces a normal key
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2024 if (mod_mask & MOD_MASK_CMD)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2025 allow_modmask = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2026 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2027 if (IS_SPECIAL(c) || (mod_mask && allow_modmask))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2028 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2029 p = get_special_key_name(c, mod_mask);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2030 len = (int)STRLEN(p);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2031 c = p[len - 1];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2032 if (len > 2)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2033 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2034 if (stop_arrow() == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2035 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2036 p[len - 1] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2037 ins_str(p);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2038 AppendToRedobuffLit(p, -1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2039 ctrlv = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2040 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2041 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2042 if (stop_arrow() == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2043 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2044 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2045
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2046 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2047 * Special characters in this context are those that need processing other
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2048 * than the simple insertion that can be performed here. This includes ESC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2049 * which terminates the insert, and CR/NL which need special processing to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2050 * open up a new line. This routine tries to optimize insertions performed by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2051 * the "redo", "undo" or "put" commands, so it needs to know when it should
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2052 * stop and defer processing to the "normal" mechanism.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2053 * '0' and '^' are special, because they can be followed by CTRL-D.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2054 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2055 #define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2056
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2057 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2058 * "flags": INSCHAR_FORMAT - force formatting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2059 * INSCHAR_CTRLV - char typed just after CTRL-V
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2060 * INSCHAR_NO_FEX - don't use 'formatexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2061 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2062 * NOTE: passes the flags value straight through to internal_format() which,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2063 * beside INSCHAR_FORMAT (above), is also looking for these:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2064 * INSCHAR_DO_COM - format comments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2065 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2066 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2067 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2068 insertchar(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2069 int c, // character to insert or NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2070 int flags, // INSCHAR_FORMAT, etc.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2071 int second_indent) // indent for second line if >= 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2072 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2073 int textwidth;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2074 char_u *p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2075 int fo_ins_blank;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2076 int force_format = flags & INSCHAR_FORMAT;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2077
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2078 textwidth = comp_textwidth(force_format);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2079 fo_ins_blank = has_format_option(FO_INS_BLANK);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2080
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2081 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2082 * Try to break the line in two or more pieces when:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2083 * - Always do this if we have been called to do formatting only.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2084 * - Always do this when 'formatoptions' has the 'a' flag and the line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2085 * ends in white space.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2086 * - Otherwise:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2087 * - Don't do this if inserting a blank
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2088 * - Don't do this if an existing character is being replaced, unless
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2089 * we're in MODE_VREPLACE state.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2090 * - Do this if the cursor is not on the line where insert started
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2091 * or - 'formatoptions' doesn't have 'l' or the line was not too long
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2092 * before the insert.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2093 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2094 * before 'textwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2095 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2096 if (textwidth > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2097 && (force_format
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2098 || (!VIM_ISWHITE(c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2099 && !((State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2100 && !(State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2101 && *ml_get_cursor() != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2102 && (curwin->w_cursor.lnum != Insstart.lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2103 || ((!has_format_option(FO_INS_LONG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2104 || Insstart_textlen <= (colnr_T)textwidth)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2105 && (!fo_ins_blank
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2106 || Insstart_blank_vcol <= (colnr_T)textwidth
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2107 ))))))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2108 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2109 // Format with 'formatexpr' when it's set. Use internal formatting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2110 // when 'formatexpr' isn't set or it returns non-zero.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2111 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2112 int do_internal = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2113 colnr_T virtcol = get_nolist_virtcol()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2114 + char2cells(c != NUL ? c : gchar_cursor());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2115
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2116 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2117 && (force_format || virtcol > (colnr_T)textwidth))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2118 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2119 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2120 // It may be required to save for undo again, e.g. when setline()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2121 // was called.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2122 ins_need_undo = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2123 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2124 if (do_internal)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2125 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2126 internal_format(textwidth, second_indent, flags, c == NUL, c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2127 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2128
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2129 if (c == NUL) // only formatting was wanted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2130 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2131
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2132 // Check whether this character should end a comment.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2133 if (did_ai && c == end_comment_pending)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2134 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2135 char_u *line;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2136 char_u lead_end[COM_MAX_LEN]; // end-comment string
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2137 int middle_len, end_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2138 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2139
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2140 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2141 * Need to remove existing (middle) comment leader and insert end
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2142 * comment leader. First, check what comment leader we can find.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2143 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2144 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2145 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) // Just checking
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2146 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2147 // Skip middle-comment string
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2148 while (*p && p[-1] != ':') // find end of middle flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2149 ++p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2150 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2151 // Don't count trailing white space for middle_len
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2152 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1]))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2153 --middle_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2154
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2155 // Find the end-comment string
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2156 while (*p && p[-1] != ':') // find end of end flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2157 ++p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2158 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2159
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2160 // Skip white space before the cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2161 i = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2162 while (--i >= 0 && VIM_ISWHITE(line[i]))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2163 ;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2164 i++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2165
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2166 // Skip to before the middle leader
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2167 i -= middle_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2168
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2169 // Check some expected things before we go on
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2170 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2171 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2172 // Backspace over all the stuff we want to replace
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2173 backspace_until_column(i);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2174
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2175 // Insert the end-comment string, except for the last
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2176 // character, which will get inserted as normal later.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2177 ins_bytes_len(lead_end, end_len - 1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2178 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2179 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2180 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2181 end_comment_pending = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2182
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2183 did_ai = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2184 did_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2185 can_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2186 can_si_back = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2187
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2188 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2189 * If there's any pending input, grab up to INPUT_BUFLEN at once.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2190 * This speeds up normal text input considerably.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2191 * Don't do this when 'cindent' or 'indentexpr' is set, because we might
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2192 * need to re-indent at a ':', or any other character (but not what
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2193 * 'paste' is set)..
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2194 * Don't do this when there an InsertCharPre autocommand is defined,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2195 * because we need to fire the event for every character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2196 * Do the check for InsertCharPre before the call to vpeekc() because the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2197 * InsertCharPre autocommand could change the input buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2198 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2199 #ifdef USE_ON_FLY_SCROLL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2200 dont_scroll = FALSE; // allow scrolling here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2201 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2202
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2203 if ( !ISSPECIAL(c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2204 && (!has_mbyte || (*mb_char2len)(c) == 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2205 && !has_insertcharpre()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2206 && vpeekc() != NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2207 && !(State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2208 && !cindent_on()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2209 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2210 && !p_ri
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2211 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2212 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2213 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2214 #define INPUT_BUFLEN 100
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2215 char_u buf[INPUT_BUFLEN + 1];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2216 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2217 colnr_T virtcol = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2218
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2219 buf[0] = c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2220 i = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2221 if (textwidth > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2222 virtcol = get_nolist_virtcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2223 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2224 * Stop the string when:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2225 * - no more chars available
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2226 * - finding a special character (command key)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2227 * - buffer is full
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2228 * - running into the 'textwidth' boundary
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2229 * - need to check for abbreviation: A non-word char after a word-char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2230 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2231 while ( (c = vpeekc()) != NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2232 && !ISSPECIAL(c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2233 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2234 && i < INPUT_BUFLEN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2235 && (textwidth == 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2236 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2237 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1])))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2238 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2239 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2240 c = vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2241 if (p_hkmap && KeyTyped)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2242 c = hkmap(c); // Hebrew mode mapping
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2243 buf[i++] = c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2244 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2245 buf[i++] = vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2246 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2247 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2248
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2249 #ifdef FEAT_DIGRAPHS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2250 do_digraph(-1); // clear digraphs
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2251 do_digraph(buf[i-1]); // may be the start of a digraph
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2252 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2253 buf[i] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2254 ins_str(buf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2255 if (flags & INSCHAR_CTRLV)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2256 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2257 redo_literal(*buf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2258 i = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2259 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2260 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2261 i = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2262 if (buf[i] != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2263 AppendToRedobuffLit(buf + i, -1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2264 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2265 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2266 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2267 int cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2268
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2269 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2270 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2271 char_u buf[MB_MAXBYTES + 1];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2272
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2273 (*mb_char2bytes)(c, buf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2274 buf[cc] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2275 ins_char_bytes(buf, cc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2276 AppendCharToRedobuff(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2277 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2278 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2279 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2280 ins_char(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2281 if (flags & INSCHAR_CTRLV)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2282 redo_literal(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2283 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2284 AppendCharToRedobuff(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2285 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2286 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2287 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2288
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2289 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2290 * Put a character in the redo buffer, for when just after a CTRL-V.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2291 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2292 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2293 redo_literal(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2294 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2295 char_u buf[10];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2296
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2297 // Only digits need special treatment. Translate them into a string of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2298 // three digits.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2299 if (VIM_ISDIGIT(c))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2300 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2301 vim_snprintf((char *)buf, sizeof(buf), "%03d", c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2302 AppendToRedobuff(buf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2303 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2304 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2305 AppendCharToRedobuff(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2306 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2307
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2308 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2309 * start_arrow() is called when an arrow key is used in insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2310 * For undo/redo it resembles hitting the <ESC> key.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2311 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2312 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2313 start_arrow(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2314 pos_T *end_insert_pos) // can be NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2315 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2316 start_arrow_common(end_insert_pos, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2317 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2318
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2319 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2320 * Like start_arrow() but with end_change argument.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2321 * Will prepare for redo of CTRL-G U if "end_change" is FALSE.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2322 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2323 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2324 start_arrow_with_change(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2325 pos_T *end_insert_pos, // can be NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2326 int end_change) // end undoable change
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2327 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2328 start_arrow_common(end_insert_pos, end_change);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2329 if (!end_change)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2330 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2331 AppendCharToRedobuff(Ctrl_G);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2332 AppendCharToRedobuff('U');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2333 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2334 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2335
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2336 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2337 start_arrow_common(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2338 pos_T *end_insert_pos, // can be NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2339 int end_change) // end undoable change
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2340 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2341 if (!arrow_used && end_change) // something has been inserted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2342 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2343 AppendToRedobuff(ESC_STR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2344 stop_insert(end_insert_pos, FALSE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2345 arrow_used = TRUE; // this means we stopped the current insert
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2346 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2347 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2348 check_spell_redraw();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2349 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2350 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2351
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2352 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2353 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2354 * If we skipped highlighting word at cursor, do it now.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2355 * It may be skipped again, thus reset spell_redraw_lnum first.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2356 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2357 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2358 check_spell_redraw(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2359 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2360 if (spell_redraw_lnum != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2361 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2362 linenr_T lnum = spell_redraw_lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2363
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2364 spell_redraw_lnum = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2365 redrawWinline(curwin, lnum);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2366 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2367 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2368
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2369 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2370
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2371 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2372 * stop_arrow() is called before a change is made in insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2373 * If an arrow key has been used, start a new insertion.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2374 * Returns FAIL if undo is impossible, shouldn't insert then.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2375 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2376 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2377 stop_arrow(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2378 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2379 if (arrow_used)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2380 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2381 Insstart = curwin->w_cursor; // new insertion starts here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2382 if (Insstart.col > Insstart_orig.col && !ins_need_undo)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2383 // Don't update the original insert position when moved to the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2384 // right, except when nothing was inserted yet.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2385 update_Insstart_orig = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2386 Insstart_textlen = (colnr_T)linetabsize_str(ml_get_curline());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2387
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2388 if (u_save_cursor() == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2389 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2390 arrow_used = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2391 ins_need_undo = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2392 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2393
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2394 ai_col = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2395 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2396 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2397 orig_line_count = curbuf->b_ml.ml_line_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2398 vr_lines_changed = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2399 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2400 ResetRedobuff();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2401 AppendToRedobuff((char_u *)"1i"); // pretend we start an insertion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2402 new_insert_skip = 2;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2403 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2404 else if (ins_need_undo)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2405 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2406 if (u_save_cursor() == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2407 ins_need_undo = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2408 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2409
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2410 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2411 // Always open fold at the cursor line when inserting something.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2412 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2413 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2414
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2415 return (arrow_used || ins_need_undo ? FAIL : OK);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2416 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2417
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2418 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2419 * Do a few things to stop inserting.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2420 * "end_insert_pos" is where insert ended. It is NULL when we already jumped
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2421 * to another window/buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2422 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2423 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2424 stop_insert(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2425 pos_T *end_insert_pos,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2426 int esc, // called by ins_esc()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2427 int nomove) // <c-\><c-o>, don't move cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2428 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2429 int cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2430 char_u *ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2431
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2432 stop_redo_ins();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2433 replace_flush(); // abandon replace stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2434
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2435 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2436 * Save the inserted text for later redo with ^@ and CTRL-A.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2437 * Don't do it when "restart_edit" was set and nothing was inserted,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2438 * otherwise CTRL-O w and then <Left> will clear "last_insert".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2439 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2440 ptr = get_inserted();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2441 int added = ptr == NULL ? 0 : (int)STRLEN(ptr) - new_insert_skip;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2442 if (did_restart_edit == 0 || added > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2443 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2444 vim_free(last_insert);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2445 last_insert = ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2446 last_insert_skip = added < 0 ? 0 : new_insert_skip;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2447 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2448 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2449 vim_free(ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2450
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2451 if (!arrow_used && end_insert_pos != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2452 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2453 // Auto-format now. It may seem strange to do this when stopping an
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2454 // insertion (or moving the cursor), but it's required when appending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2455 // a line and having it end in a space. But only do it when something
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2456 // was actually inserted, otherwise undo won't work.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2457 if (!ins_need_undo && has_format_option(FO_AUTO))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2458 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2459 pos_T tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2460
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2461 // When the cursor is at the end of the line after a space the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2462 // formatting will move it to the following word. Avoid that by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2463 // moving the cursor onto the space.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2464 cc = 'x';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2465 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2466 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2467 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2468 cc = gchar_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2469 if (!VIM_ISWHITE(cc))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2470 curwin->w_cursor = tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2471 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2472
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2473 auto_format(TRUE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2474
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2475 if (VIM_ISWHITE(cc))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2476 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2477 if (gchar_cursor() != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2478 inc_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2479 // If the cursor is still at the same character, also keep
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2480 // the "coladd".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2481 if (gchar_cursor() == NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2482 && curwin->w_cursor.lnum == tpos.lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2483 && curwin->w_cursor.col == tpos.col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2484 curwin->w_cursor.coladd = tpos.coladd;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2485 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2486 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2487
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2488 // If a space was inserted for auto-formatting, remove it now.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2489 check_auto_format(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2490
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2491 // If we just did an auto-indent, remove the white space from the end
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2492 // of the line, and put the cursor back.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2493 // Do this when ESC was used or moving the cursor up/down.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2494 // Check for the old position still being valid, just in case the text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2495 // got changed unexpectedly.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2496 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2497 && curwin->w_cursor.lnum != end_insert_pos->lnum))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2498 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2499 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2500 pos_T tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2501
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2502 curwin->w_cursor = *end_insert_pos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2503 check_cursor_col(); // make sure it is not past the line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2504 for (;;)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2505 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2506 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2507 --curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2508 cc = gchar_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2509 if (!VIM_ISWHITE(cc))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2510 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2511 if (del_char(TRUE) == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2512 break; // should not happen
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2513 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2514 if (curwin->w_cursor.lnum != tpos.lnum)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2515 curwin->w_cursor = tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2516 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2517 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2518 // reset tpos, could have been invalidated in the loop above
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2519 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2520 tpos.col++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2521 if (cc != NUL && gchar_pos(&tpos) == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2522 ++curwin->w_cursor.col; // put cursor back on the NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2523 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2524
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2525 // <C-S-Right> may have started Visual mode, adjust the position for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2526 // deleted characters.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2527 if (VIsual_active)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2528 check_visual_pos();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2529 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2530 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2531 did_ai = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2532 did_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2533 can_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2534 can_si_back = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2535
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2536 // Set '[ and '] to the inserted text. When end_insert_pos is NULL we are
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2537 // now in a different buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2538 if (end_insert_pos != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2539 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2540 curbuf->b_op_start = Insstart;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2541 curbuf->b_op_start_orig = Insstart_orig;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2542 curbuf->b_op_end = *end_insert_pos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2543 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2544 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2545
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2546 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2547 * Set the last inserted text to a single character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2548 * Used for the replace command.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2549 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2550 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2551 set_last_insert(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2552 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2553 char_u *s;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2554
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2555 vim_free(last_insert);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2556 last_insert = alloc(MB_MAXBYTES * 3 + 5);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2557 if (last_insert == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2558 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2559
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2560 s = last_insert;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2561 // Use the CTRL-V only when entering a special char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2562 if (c < ' ' || c == DEL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2563 *s++ = Ctrl_V;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2564 s = add_char2buf(c, s);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2565 *s++ = ESC;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2566 *s++ = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2567 last_insert_skip = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2568 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2569
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2570 #if defined(EXITFREE) || defined(PROTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2571 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2572 free_last_insert(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2573 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2574 VIM_CLEAR(last_insert);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2575 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2576 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2577
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2578 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2579 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2580 * and CSI. Handle multi-byte characters.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2581 * Returns a pointer to after the added bytes.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2582 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2583 char_u *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2584 add_char2buf(int c, char_u *s)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2585 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2586 char_u temp[MB_MAXBYTES + 1];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2587 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2588 int len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2589
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2590 len = (*mb_char2bytes)(c, temp);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2591 for (i = 0; i < len; ++i)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2592 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2593 c = temp[i];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2594 // Need to escape K_SPECIAL and CSI like in the typeahead buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2595 if (c == K_SPECIAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2596 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2597 *s++ = K_SPECIAL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2598 *s++ = KS_SPECIAL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2599 *s++ = KE_FILLER;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2600 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2601 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2602 else if (c == CSI)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2603 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2604 *s++ = CSI;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2605 *s++ = KS_EXTRA;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2606 *s++ = (int)KE_CSI;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2607 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2608 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2609 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2610 *s++ = c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2611 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2612 return s;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2613 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2614
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2615 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2616 * move cursor to start of line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2617 * if flags & BL_WHITE move to first non-white
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2618 * if flags & BL_SOL move to first non-white if startofline is set,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2619 * otherwise keep "curswant" column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2620 * if flags & BL_FIX don't leave the cursor on a NUL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2621 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2622 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2623 beginline(int flags)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2624 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2625 if ((flags & BL_SOL) && !p_sol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2626 coladvance(curwin->w_curswant);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2627 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2628 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2629 curwin->w_cursor.col = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2630 curwin->w_cursor.coladd = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2631
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2632 if (flags & (BL_WHITE | BL_SOL))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2633 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2634 char_u *ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2635
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2636 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2637 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2638 ++curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2639 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2640 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2641 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2642 adjust_skipcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2643 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2644
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2645 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2646 * oneright oneleft cursor_down cursor_up
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2647 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2648 * Move one char {right,left,down,up}.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2649 * Doesn't move onto the NUL past the end of the line, unless it is allowed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2650 * Return OK when successful, FAIL when we hit a line of file boundary.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2651 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2652
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2653 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2654 oneright(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2655 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2656 char_u *ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2657 int l;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2658
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2659 if (virtual_active())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2660 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2661 pos_T prevpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2662
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2663 // Adjust for multi-wide char (excluding TAB)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2664 ptr = ml_get_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2665 coladvance(getviscol() + ((*ptr != TAB
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2666 && vim_isprintc((*mb_ptr2char)(ptr)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2667 ? ptr2cells(ptr) : 1));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2668 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2669 // Return OK if the cursor moved, FAIL otherwise (at window edge).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2670 return (prevpos.col != curwin->w_cursor.col
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2671 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2672 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2673
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2674 ptr = ml_get_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2675 if (*ptr == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2676 return FAIL; // already at the very end
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2677
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2678 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2679 l = (*mb_ptr2len)(ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2680 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2681 l = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2682
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2683 // move "l" bytes right, but don't end up on the NUL, unless 'virtualedit'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2684 // contains "onemore".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2685 if (ptr[l] == NUL && (get_ve_flags() & VE_ONEMORE) == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2686 return FAIL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2687 curwin->w_cursor.col += l;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2688
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2689 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2690 adjust_skipcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2691 return OK;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2692 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2693
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2694 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2695 oneleft(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2696 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2697 if (virtual_active())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2698 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2699 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2700 int width;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2701 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2702 int v = getviscol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2703
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2704 if (v == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2705 return FAIL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2706
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2707 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2708 // We might get stuck on 'showbreak', skip over it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2709 width = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2710 for (;;)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2711 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2712 coladvance(v - width);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2713 // getviscol() is slow, skip it when 'showbreak' is empty,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2714 // 'breakindent' is not set and there are no multi-byte
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2715 // characters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2716 if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2717 && !has_mbyte) || getviscol() < v)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2718 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2719 ++width;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2720 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2721 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2722 coladvance(v - 1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2723 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2724
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2725 if (curwin->w_cursor.coladd == 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2726 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2727 char_u *ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2728
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2729 // Adjust for multi-wide char (not a TAB)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2730 ptr = ml_get_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2731 if (*ptr != TAB && vim_isprintc((*mb_ptr2char)(ptr))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2732 && ptr2cells(ptr) > 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2733 curwin->w_cursor.coladd = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2734 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2735
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2736 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2737 adjust_skipcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2738 return OK;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2739 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2740
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2741 if (curwin->w_cursor.col == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2742 return FAIL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2743
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2744 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2745 --curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2746
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2747 // if the character on the left of the current cursor is a multi-byte
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2748 // character, move to its first byte
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2749 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2750 mb_adjust_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2751 adjust_skipcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2752 return OK;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2753 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2754
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2755 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2756 * Move the cursor up "n" lines in window "wp".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2757 * Takes care of closed folds.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2758 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2759 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2760 cursor_up_inner(win_T *wp, long n)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2761 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2762 linenr_T lnum = wp->w_cursor.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2763
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2764 if (n >= lnum)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2765 lnum = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2766 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2767 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2768 if (hasAnyFolding(wp))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2769 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2770 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2771 * Count each sequence of folded lines as one logical line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2772 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2773 // go to the start of the current fold
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2774 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2775
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2776 while (n--)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2777 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2778 // move up one line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2779 --lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2780 if (lnum <= 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2781 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2782 // If we entered a fold, move to the beginning, unless in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2783 // Insert mode or when 'foldopen' contains "all": it will open
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2784 // in a moment.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2785 if (n > 0 || !((State & MODE_INSERT) || (fdo_flags & FDO_ALL)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2786 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2787 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2788 if (lnum < 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2789 lnum = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2790 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2791 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2792 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2793 lnum -= n;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2794
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2795 wp->w_cursor.lnum = lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2796 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2797
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2798 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2799 cursor_up(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2800 long n,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2801 int upd_topline) // When TRUE: update topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2802 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2803 // This fails if the cursor is already in the first line or the count is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2804 // larger than the line number and '-' is in 'cpoptions'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2805 linenr_T lnum = curwin->w_cursor.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2806 if (n > 0 && (lnum <= 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2807 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2808 return FAIL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2809 cursor_up_inner(curwin, n);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2810
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2811 // try to advance to the column we want to be at
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2812 coladvance(curwin->w_curswant);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2813
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2814 if (upd_topline)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2815 update_topline(); // make sure curwin->w_topline is valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2816
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2817 return OK;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2818 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2819
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2820 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2821 * Move the cursor down "n" lines in window "wp".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2822 * Takes care of closed folds.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2823 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2824 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2825 cursor_down_inner(win_T *wp, long n)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2826 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2827 linenr_T lnum = wp->w_cursor.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2828 linenr_T line_count = wp->w_buffer->b_ml.ml_line_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2829
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2830 if (lnum + n >= line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2831 lnum = line_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2832 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2833 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2834 if (hasAnyFolding(wp))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2835 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2836 linenr_T last;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2837
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2838 // count each sequence of folded lines as one logical line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2839 while (n--)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2840 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2841 // Move to last line of fold, will fail if it's the end-of-file.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2842 if (hasFoldingWin(wp, lnum, NULL, &last, TRUE, NULL))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2843 lnum = last + 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2844 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2845 ++lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2846 if (lnum >= line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2847 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2848 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2849 if (lnum > line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2850 lnum = line_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2851 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2852 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2853 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2854 lnum += n;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2855
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2856 wp->w_cursor.lnum = lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2857 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2858
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2859 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2860 * Cursor down a number of logical lines.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2861 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2862 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2863 cursor_down(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2864 long n,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2865 int upd_topline) // When TRUE: update topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2866 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2867 linenr_T lnum = curwin->w_cursor.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2868 linenr_T line_count = curwin->w_buffer->b_ml.ml_line_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2869 // This fails if the cursor is already in the last line or would move
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2870 // beyond the last line and '-' is in 'cpoptions'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2871 if (n > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2872 && (lnum >= line_count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2873 || (lnum + n > line_count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2874 && vim_strchr(p_cpo, CPO_MINUS) != NULL)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2875 return FAIL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2876 cursor_down_inner(curwin, n);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2877
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2878 // try to advance to the column we want to be at
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2879 coladvance(curwin->w_curswant);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2880
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2881 if (upd_topline)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2882 update_topline(); // make sure curwin->w_topline is valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2883
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2884 return OK;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2885 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2886
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2887 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2888 * Stuff the last inserted text in the read buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2889 * Last_insert actually is a copy of the redo buffer, so we
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2890 * first have to remove the command.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2891 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2892 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2893 stuff_inserted(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2894 int c, // Command character to be inserted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2895 long count, // Repeat this many times
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2896 int no_esc) // Don't add an ESC at the end
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2897 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2898 char_u *esc_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2899 char_u *ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2900 char_u *last_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2901 char_u last = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2902
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2903 ptr = get_last_insert();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2904 if (ptr == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2905 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2906 emsg(_(e_no_inserted_text_yet));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2907 return FAIL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2908 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2909
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2910 // may want to stuff the command character, to start Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2911 if (c != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2912 stuffcharReadbuff(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2913 if ((esc_ptr = vim_strrchr(ptr, ESC)) != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2914 *esc_ptr = NUL; // remove the ESC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2915
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2916 // when the last char is either "0" or "^" it will be quoted if no ESC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2917 // comes after it OR if it will inserted more than once and "ptr"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2918 // starts with ^D. -- Acevedo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2919 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2920 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2921 && (no_esc || (*ptr == Ctrl_D && count > 1)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2922 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2923 last = *last_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2924 *last_ptr = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2925 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2926
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2927 do
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2928 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2929 stuffReadbuff(ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2930 // a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2931 if (last)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2932 stuffReadbuff(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2933 (char_u *)(last == '0' ? "\026\060\064\070" : "\026^"));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2934 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2935 while (--count > 0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2936
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2937 if (last)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2938 *last_ptr = last;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2939
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2940 if (esc_ptr != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2941 *esc_ptr = ESC; // put the ESC back
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2942
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2943 // may want to stuff a trailing ESC, to get out of Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2944 if (!no_esc)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2945 stuffcharReadbuff(ESC);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2946
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2947 return OK;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2948 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2949
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2950 char_u *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2951 get_last_insert(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2952 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2953 if (last_insert == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2954 return NULL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2955 return last_insert + last_insert_skip;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2956 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2957
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2958 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2959 * Get last inserted string, and remove trailing <Esc>.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2960 * Returns pointer to allocated memory (must be freed) or NULL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2961 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2962 char_u *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2963 get_last_insert_save(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2964 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2965 char_u *s;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2966 int len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2967
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2968 if (last_insert == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2969 return NULL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2970 s = vim_strsave(last_insert + last_insert_skip);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2971 if (s == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2972 return NULL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2973
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2974 len = (int)STRLEN(s);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2975 if (len > 0 && s[len - 1] == ESC) // remove trailing ESC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2976 s[len - 1] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2977 return s;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2978 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2979
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2980 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2981 * Check the word in front of the cursor for an abbreviation.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2982 * Called when the non-id character "c" has been entered.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2983 * When an abbreviation is recognized it is removed from the text and
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2984 * the replacement string is inserted in typebuf.tb_buf[], followed by "c".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2985 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2986 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2987 echeck_abbr(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2988 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2989 // Don't check for abbreviation in paste mode, when disabled and just
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2990 // after moving around with cursor keys.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2991 if (p_paste || no_abbr || arrow_used)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2992 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2993
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2994 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2995 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2996 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2997
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2998 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
2999 * replace-stack functions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3000 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3001 * When replacing characters, the replaced characters are remembered for each
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3002 * new character. This is used to re-insert the old text when backspacing.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3003 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3004 * There is a NUL headed list of characters for each character that is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3005 * currently in the file after the insertion point. When BS is used, one NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3006 * headed list is put back for the deleted character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3007 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3008 * For a newline, there are two NUL headed lists. One contains the characters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3009 * that the NL replaced. The extra one stores the characters after the cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3010 * that were deleted (always white space).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3011 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3012 * Replace_offset is normally 0, in which case replace_push will add a new
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3013 * character at the end of the stack. If replace_offset is not 0, that many
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3014 * characters will be left on the stack above the newly inserted character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3015 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3016
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3017 static char_u *replace_stack = NULL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3018 static long replace_stack_nr = 0; // next entry in replace stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3019 static long replace_stack_len = 0; // max. number of entries
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3020
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3021 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3022 replace_push(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3023 int c) // character that is replaced (NUL is none)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3024 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3025 char_u *p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3026
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3027 if (replace_stack_nr < replace_offset) // nothing to do
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3028 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3029 if (replace_stack_len <= replace_stack_nr)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3030 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3031 replace_stack_len += 50;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3032 p = ALLOC_MULT(char_u, replace_stack_len);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3033 if (p == NULL) // out of memory
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3034 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3035 replace_stack_len -= 50;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3036 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3037 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3038 if (replace_stack != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3039 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3040 mch_memmove(p, replace_stack,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3041 (size_t)(replace_stack_nr * sizeof(char_u)));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3042 vim_free(replace_stack);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3043 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3044 replace_stack = p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3045 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3046 p = replace_stack + replace_stack_nr - replace_offset;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3047 if (replace_offset)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3048 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u)));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3049 *p = c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3050 ++replace_stack_nr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3051 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3052
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3053 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3054 * Push a character onto the replace stack. Handles a multi-byte character in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3055 * reverse byte order, so that the first byte is popped off first.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3056 * Return the number of bytes done (includes composing characters).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3057 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3058 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3059 replace_push_mb(char_u *p)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3060 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3061 int l = (*mb_ptr2len)(p);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3062 int j;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3063
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3064 for (j = l - 1; j >= 0; --j)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3065 replace_push(p[j]);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3066 return l;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3067 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3068
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3069 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3070 * Pop one item from the replace stack.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3071 * return -1 if stack empty
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3072 * return replaced character or NUL otherwise
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3073 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3074 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3075 replace_pop(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3076 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3077 if (replace_stack_nr == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3078 return -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3079 return (int)replace_stack[--replace_stack_nr];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3080 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3081
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3082 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3083 * Join the top two items on the replace stack. This removes to "off"'th NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3084 * encountered.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3085 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3086 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3087 replace_join(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3088 int off) // offset for which NUL to remove
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3089 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3090 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3091
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3092 for (i = replace_stack_nr; --i >= 0; )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3093 if (replace_stack[i] == NUL && off-- <= 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3094 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3095 --replace_stack_nr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3096 mch_memmove(replace_stack + i, replace_stack + i + 1,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3097 (size_t)(replace_stack_nr - i));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3098 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3099 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3100 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3101
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3102 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3103 * Pop bytes from the replace stack until a NUL is found, and insert them
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3104 * before the cursor. Can only be used in MODE_REPLACE or MODE_VREPLACE state.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3105 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3106 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3107 replace_pop_ins(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3108 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3109 int cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3110 int oldState = State;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3111
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3112 State = MODE_NORMAL; // don't want MODE_REPLACE here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3113 while ((cc = replace_pop()) > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3114 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3115 mb_replace_pop_ins(cc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3116 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3117 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3118 State = oldState;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3119 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3120
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3121 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3122 * Insert bytes popped from the replace stack. "cc" is the first byte. If it
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3123 * indicates a multi-byte char, pop the other bytes too.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3124 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3125 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3126 mb_replace_pop_ins(int cc)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3127 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3128 int n;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3129 char_u buf[MB_MAXBYTES + 1];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3130 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3131 int c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3132
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3133 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3134 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3135 buf[0] = cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3136 for (i = 1; i < n; ++i)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3137 buf[i] = replace_pop();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3138 ins_bytes_len(buf, n);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3139 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3140 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3141 ins_char(cc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3142
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3143 if (enc_utf8)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3144 // Handle composing chars.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3145 for (;;)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3146 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3147 c = replace_pop();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3148 if (c == -1) // stack empty
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3149 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3150 if ((n = MB_BYTE2LEN(c)) == 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3151 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3152 // Not a multi-byte char, put it back.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3153 replace_push(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3154 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3155 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3156
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3157 buf[0] = c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3158 for (i = 1; i < n; ++i)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3159 buf[i] = replace_pop();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3160 if (utf_iscomposing(utf_ptr2char(buf)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3161 ins_bytes_len(buf, n);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3162 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3163 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3164 // Not a composing char, put it back.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3165 for (i = n - 1; i >= 0; --i)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3166 replace_push(buf[i]);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3167 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3168 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3169
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3170 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3171 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3172
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3173 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3174 * make the replace stack empty
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3175 * (called when exiting replace mode)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3176 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3177 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3178 replace_flush(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3179 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3180 VIM_CLEAR(replace_stack);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3181 replace_stack_len = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3182 replace_stack_nr = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3183 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3184
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3185 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3186 * Handle doing a BS for one character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3187 * cc < 0: replace stack empty, just move cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3188 * cc == 0: character was inserted, delete it
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3189 * cc > 0: character was replaced, put cc (first byte of original char) back
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3190 * and check for more characters to be put back
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3191 * When "limit_col" is >= 0, don't delete before this column. Matters when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3192 * using composing characters, use del_char_after_col() instead of del_char().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3193 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3194 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3195 replace_do_bs(int limit_col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3196 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3197 int cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3198 int orig_len = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3199 int ins_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3200 int orig_vcols = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3201 colnr_T start_vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3202 char_u *p;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3203 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3204 int vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3205
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3206 cc = replace_pop();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3207 if (cc > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3208 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3209 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3210 size_t len_before = 0; // init to shut up GCC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3211
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3212 if (curbuf->b_has_textprop)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3213 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3214 // Do not adjust text properties for individual delete and insert
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3215 // operations, do it afterwards on the resulting text.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3216 len_before = STRLEN(ml_get_curline());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3217 ++text_prop_frozen;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3218 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3219 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3220 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3221 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3222 // Get the number of screen cells used by the character we are
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3223 // going to delete.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3224 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3225 orig_vcols = chartabsize(ml_get_cursor(), start_vcol);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3226 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3227 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3228 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3229 (void)del_char_after_col(limit_col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3230 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3231 orig_len = (int)STRLEN(ml_get_cursor());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3232 replace_push(cc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3233 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3234 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3235 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3236 pchar_cursor(cc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3237 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3238 orig_len = (int)STRLEN(ml_get_cursor()) - 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3239 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3240 replace_pop_ins();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3241
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3242 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3243 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3244 // Get the number of screen cells used by the inserted characters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3245 p = ml_get_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3246 ins_len = (int)STRLEN(p) - orig_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3247 vcol = start_vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3248 for (i = 0; i < ins_len; ++i)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3249 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3250 vcol += chartabsize(p + i, vcol);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3251 i += (*mb_ptr2len)(p) - 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3252 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3253 vcol -= start_vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3254
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3255 // Delete spaces that were inserted after the cursor to keep the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3256 // text aligned.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3257 curwin->w_cursor.col += ins_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3258 while (vcol > orig_vcols && gchar_cursor() == ' ')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3259 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3260 del_char(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3261 ++orig_vcols;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3262 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3263 curwin->w_cursor.col -= ins_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3264 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3265
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3266 // mark the buffer as changed and prepare for displaying
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3267 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3268
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3269 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3270 if (curbuf->b_has_textprop)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3271 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3272 size_t len_now = STRLEN(ml_get_curline());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3273
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3274 --text_prop_frozen;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3275 adjust_prop_columns(curwin->w_cursor.lnum, curwin->w_cursor.col,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3276 (int)(len_now - len_before), 0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3277 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3278 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3279 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3280 else if (cc == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3281 (void)del_char_after_col(limit_col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3282 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3283
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3284 #if defined(FEAT_RIGHTLEFT) || defined(PROTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3285 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3286 * Map Hebrew keyboard when in hkmap mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3287 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3288 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3289 hkmap(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3290 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3291 if (p_hkmapp) // phonetic mapping, by Ilya Dogolazky
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3292 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3293 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3294 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3295 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV};
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3296 static char_u map[26] =
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3297 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3298 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3299 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3300 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3301 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3302 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3303 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3304 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3305 (char_u)AIN /*y*/, (char_u)ZADI /*z*/};
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3306
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3307 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3308 return (int)(map[CharOrd(c)] - 1 + p_aleph);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3309 // '-1'='sofit'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3310 else if (c == 'x')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3311 return 'X';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3312 else if (c == 'q')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3313 return '\''; // {geresh}={'}
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3314 else if (c == 246)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3315 return ' '; // \"o --> ' ' for a german keyboard
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3316 else if (c == 228)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3317 return ' '; // \"a --> ' ' -- / --
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3318 else if (c == 252)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3319 return ' '; // \"u --> ' ' -- / --
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3320 // NOTE: islower() does not do the right thing for us on Linux so we
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3321 // do this the same was as 5.7 and previous, so it works correctly on
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3322 // all systems. Specifically, the e.g. Delete and Arrow keys are
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3323 // munged and won't work if e.g. searching for Hebrew text.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3324 else if (c >= 'a' && c <= 'z')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3325 return (int)(map[CharOrdLow(c)] + p_aleph);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3326 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3327 return c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3328 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3329 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3330 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3331 switch (c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3332 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3333 case '`': return ';';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3334 case '/': return '.';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3335 case '\'': return ',';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3336 case 'q': return '/';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3337 case 'w': return '\'';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3338
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3339 // Hebrew letters - set offset from 'a'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3340 case ',': c = '{'; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3341 case '.': c = 'v'; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3342 case ';': c = 't'; break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3343 default: {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3344 static char str[] = "zqbcxlsjphmkwonu ydafe rig";
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3345
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3346 if (c < 'a' || c > 'z')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3347 return c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3348 c = str[CharOrdLow(c)];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3349 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3350 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3351 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3352
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3353 return (int)(CharOrdLow(c) + p_aleph);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3354 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3355 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3356 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3357
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3358 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3359 ins_reg(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3360 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3361 int need_redraw = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3362 int regname;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3363 int literally = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3364 int vis_active = VIsual_active;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3365
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3366 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3367 * If we are going to wait for a character, show a '"'.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3368 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3369 pc_status = PC_STATUS_UNSET;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3370 if (redrawing() && !char_avail())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3371 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3372 // may need to redraw when no more chars available now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3373 ins_redraw(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3374
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3375 edit_putchar('"', TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3376 add_to_showcmd_c(Ctrl_R);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3377 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3378
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3379 #ifdef USE_ON_FLY_SCROLL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3380 dont_scroll = TRUE; // disallow scrolling here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3381 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3382
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3383 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3384 * Don't map the register name. This also prevents the mode message to be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3385 * deleted when ESC is hit.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3386 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3387 ++no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3388 ++allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3389 regname = plain_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3390 LANGMAP_ADJUST(regname, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3391 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3392 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3393 // Get a third key for literal register insertion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3394 literally = regname;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3395 add_to_showcmd_c(literally);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3396 regname = plain_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3397 LANGMAP_ADJUST(regname, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3398 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3399 --no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3400 --allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3401
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3402 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3403 // Don't call u_sync() while typing the expression or giving an error
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3404 // message for it. Only call it explicitly.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3405 ++no_u_sync;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3406 if (regname == '=')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3407 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3408 pos_T curpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3409 # ifdef HAVE_INPUT_METHOD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3410 int im_on = im_get_status();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3411 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3412 // Sync undo when evaluating the expression calls setline() or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3413 // append(), so that it can be undone separately.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3414 u_sync_once = 2;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3415
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3416 regname = get_expr_register();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3417
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3418 // Cursor may be moved back a column.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3419 curwin->w_cursor = curpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3420 check_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3421 # ifdef HAVE_INPUT_METHOD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3422 // Restore the Input Method.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3423 if (im_on)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3424 im_set_active(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3425 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3426 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3427 if (regname == NUL || !valid_yank_reg(regname, FALSE))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3428 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3429 vim_beep(BO_REG);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3430 need_redraw = TRUE; // remove the '"'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3431 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3432 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3433 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3434 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3435 if (literally == Ctrl_O || literally == Ctrl_P)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3436 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3437 // Append the command to the redo buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3438 AppendCharToRedobuff(Ctrl_R);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3439 AppendCharToRedobuff(literally);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3440 AppendCharToRedobuff(regname);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3441
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3442 do_put(regname, NULL, BACKWARD, 1L,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3443 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3444 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3445 else if (insert_reg(regname, literally) == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3446 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3447 vim_beep(BO_REG);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3448 need_redraw = TRUE; // remove the '"'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3449 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3450 else if (stop_insert_mode)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3451 // When the '=' register was used and a function was invoked that
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3452 // did ":stopinsert" then stuff_empty() returns FALSE but we won't
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3453 // insert anything, need to remove the '"'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3454 need_redraw = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3455
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3456 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3457 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3458 --no_u_sync;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3459 if (u_sync_once == 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3460 ins_need_undo = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3461 u_sync_once = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3462 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3463 clear_showcmd();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3464
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3465 // If the inserted register is empty, we need to remove the '"'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3466 if (need_redraw || stuff_empty())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3467 edit_unputchar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3468
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3469 // Disallow starting Visual mode here, would get a weird mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3470 if (!vis_active && VIsual_active)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3471 end_visual_mode();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3472 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3473
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3474 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3475 * CTRL-G commands in Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3476 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3477 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3478 ins_ctrl_g(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3479 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3480 int c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3481
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3482 // Right after CTRL-X the cursor will be after the ruler.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3483 setcursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3484
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3485 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3486 * Don't map the second key. This also prevents the mode message to be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3487 * deleted when ESC is hit.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3488 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3489 ++no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3490 ++allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3491 c = plain_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3492 --no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3493 --allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3494 switch (c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3495 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3496 // CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3497 case K_UP:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3498 case Ctrl_K:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3499 case 'k': ins_up(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3500 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3501
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3502 // CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3503 case K_DOWN:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3504 case Ctrl_J:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3505 case 'j': ins_down(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3506 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3507
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3508 // CTRL-G u: start new undoable edit
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3509 case 'u': u_sync(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3510 ins_need_undo = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3511
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3512 // Need to reset Insstart, esp. because a BS that joins
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3513 // a line to the previous one must save for undo.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3514 update_Insstart_orig = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3515 Insstart = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3516 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3517
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3518 // CTRL-G U: do not break undo with the next char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3519 case 'U':
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3520 // Allow one left/right cursor movement with the next char,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3521 // without breaking undo.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3522 dont_sync_undo = MAYBE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3523 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3524
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3525 case ESC:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3526 // Esc after CTRL-G cancels it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3527 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3528
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3529 // Unknown CTRL-G command, reserved for future expansion.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3530 default: vim_beep(BO_CTRLG);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3531 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3532 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3533
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3534 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3535 * CTRL-^ in Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3536 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3537 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3538 ins_ctrl_hat(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3539 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3540 if (map_to_exists_mode((char_u *)"", MODE_LANGMAP, FALSE))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3541 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3542 // ":lmap" mappings exists, Toggle use of ":lmap" mappings.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3543 if (State & MODE_LANGMAP)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3544 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3545 curbuf->b_p_iminsert = B_IMODE_NONE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3546 State &= ~MODE_LANGMAP;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3547 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3548 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3549 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3550 curbuf->b_p_iminsert = B_IMODE_LMAP;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3551 State |= MODE_LANGMAP;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3552 #ifdef HAVE_INPUT_METHOD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3553 im_set_active(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3554 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3555 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3556 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3557 #ifdef HAVE_INPUT_METHOD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3558 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3559 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3560 // There are no ":lmap" mappings, toggle IM
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3561 if (im_get_status())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3562 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3563 curbuf->b_p_iminsert = B_IMODE_NONE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3564 im_set_active(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3565 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3566 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3567 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3568 curbuf->b_p_iminsert = B_IMODE_IM;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3569 State &= ~MODE_LANGMAP;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3570 im_set_active(TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3571 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3572 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3573 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3574 set_iminsert_global();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3575 showmode();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3576 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3577 // may show different cursor shape or color
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3578 if (gui.in_use)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3579 gui_update_cursor(TRUE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3580 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3581 #if defined(FEAT_KEYMAP)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3582 // Show/unshow value of 'keymap' in status lines.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3583 status_redraw_curbuf();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3584 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3585 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3586
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3587 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3588 * Handle ESC in insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3589 * Returns TRUE when leaving insert mode, FALSE when going to repeat the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3590 * insert.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3591 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3592 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3593 ins_esc(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3594 long *count,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3595 int cmdchar,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3596 int nomove) // don't move cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3597 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3598 int temp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3599 static int disabled_redraw = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3600 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3601 // Remember if the cursor line was concealed before changing State.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3602 int cursor_line_was_concealed = curwin->w_p_cole > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3603 && conceal_cursor_line(curwin);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3604 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3605
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3606 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3607 check_spell_redraw();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3608 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3609
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3610 temp = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3611 if (disabled_redraw)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3612 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3613 if (RedrawingDisabled > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3614 --RedrawingDisabled;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3615 disabled_redraw = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3616 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3617 if (!arrow_used)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3618 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3619 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3620 * Don't append the ESC for "r<CR>" and "grx".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3621 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3622 * when "count" is non-zero.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3623 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3624 if (cmdchar != 'r' && cmdchar != 'v')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3625 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3626
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3627 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3628 * Repeating insert may take a long time. Check for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3629 * interrupt now and then.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3630 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3631 if (*count > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3632 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3633 line_breakcheck();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3634 if (got_int)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3635 *count = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3636 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3637
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3638 if (--*count > 0) // repeat what was typed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3639 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3640 // Vi repeats the insert without replacing characters.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3641 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3642 State &= ~REPLACE_FLAG;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3643
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3644 (void)start_redo_ins();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3645 if (cmdchar == 'r' || cmdchar == 'v')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3646 stuffRedoReadbuff(ESC_STR); // no ESC in redo buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3647 ++RedrawingDisabled;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3648 disabled_redraw = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3649 return FALSE; // repeat the insert
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3650 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3651 stop_insert(&curwin->w_cursor, TRUE, nomove);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3652 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3653 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3654
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3655 if (cmdchar != 'r' && cmdchar != 'v')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3656 ins_apply_autocmds(EVENT_INSERTLEAVEPRE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3657
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3658 // When an autoindent was removed, curswant stays after the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3659 // indent
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3660 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3661 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3662
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3663 // Remember the last Insert position in the '^ mark.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3664 if ((cmdmod.cmod_flags & CMOD_KEEPJUMPS) == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3665 curbuf->b_last_insert = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3666
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3667 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3668 * The cursor should end up on the last inserted character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3669 * Don't do it for CTRL-O, unless past the end of the line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3670 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3671 if (!nomove
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3672 && (curwin->w_cursor.col != 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3673 || curwin->w_cursor.coladd > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3674 && (restart_edit == NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3675 || (gchar_cursor() == NUL && !VIsual_active))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3676 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3677 && !revins_on
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3678 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3679 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3680 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3681 if (curwin->w_cursor.coladd > 0 || get_ve_flags() == VE_ALL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3682 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3683 oneleft();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3684 if (restart_edit != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3685 ++curwin->w_cursor.coladd;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3686 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3687 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3688 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3689 --curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3690 curwin->w_valid &= ~(VALID_WCOL|VALID_VIRTCOL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3691 // Correct cursor for multi-byte character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3692 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3693 mb_adjust_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3694 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3695 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3696
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3697 #ifdef HAVE_INPUT_METHOD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3698 // Disable IM to allow typing English directly for Normal mode commands.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3699 // When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3700 // well).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3701 if (!(State & MODE_LANGMAP))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3702 im_save_status(&curbuf->b_p_iminsert);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3703 im_set_active(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3704 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3705
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3706 State = MODE_NORMAL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3707 may_trigger_modechanged();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3708 // need to position cursor again when on a TAB
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3709 if (gchar_cursor() == TAB)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3710 curwin->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3711
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3712 setmouse();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3713 #ifdef CURSOR_SHAPE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3714 ui_cursor_shape(); // may show different cursor shape
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3715 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3716 if (!p_ek)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3717 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3718 MAY_WANT_TO_LOG_THIS;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3719
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3720 // Re-enable bracketed paste mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3721 out_str_t_BE();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3722
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3723 // Re-enable modifyOtherKeys.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3724 out_str_t_TI();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3725 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3726 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3727 // Check if the cursor line needs redrawing after changing State. If
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3728 // 'concealcursor' is "i" it needs to be redrawn without concealing.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3729 conceal_check_cursor_line(cursor_line_was_concealed);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3730 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3731
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3732 // When recording or for CTRL-O, need to display the new mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3733 // Otherwise remove the mode message.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3734 if (reg_recording != 0 || restart_edit != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3735 showmode();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3736 else if (p_smd && (got_int || !skip_showmode()))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3737 msg("");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3738
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3739 return TRUE; // exit Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3740 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3741
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3742 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3743 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3744 * Toggle language: hkmap and revins_on.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3745 * Move to end of reverse inserted text.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3746 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3747 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3748 ins_ctrl_(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3749 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3750 if (revins_on && revins_chars && revins_scol >= 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3751 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3752 while (gchar_cursor() != NUL && revins_chars--)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3753 ++curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3754 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3755 p_ri = !p_ri;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3756 revins_on = (State == MODE_INSERT && p_ri);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3757 if (revins_on)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3758 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3759 revins_scol = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3760 revins_legal++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3761 revins_chars = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3762 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3763 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3764 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3765 revins_scol = -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3766 p_hkmap = curwin->w_p_rl ^ p_ri; // be consistent!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3767 showmode();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3768 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3769 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3770
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3771 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3772 * If 'keymodel' contains "startsel", may start selection.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3773 * Returns TRUE when a CTRL-O and other keys stuffed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3774 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3775 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3776 ins_start_select(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3777 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3778 if (!km_startsel)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3779 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3780 switch (c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3781 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3782 case K_KHOME:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3783 case K_KEND:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3784 case K_PAGEUP:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3785 case K_KPAGEUP:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3786 case K_PAGEDOWN:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3787 case K_KPAGEDOWN:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3788 # ifdef MACOS_X
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3789 case K_LEFT:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3790 case K_RIGHT:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3791 case K_UP:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3792 case K_DOWN:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3793 case K_END:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3794 case K_HOME:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3795 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3796 if (!(mod_mask & MOD_MASK_SHIFT))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3797 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3798 // FALLTHROUGH
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3799 case K_S_LEFT:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3800 case K_S_RIGHT:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3801 case K_S_UP:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3802 case K_S_DOWN:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3803 case K_S_END:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3804 case K_S_HOME:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3805 // Start selection right away, the cursor can move with CTRL-O when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3806 // beyond the end of the line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3807 start_selection();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3808
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3809 // Execute the key in (insert) Select mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3810 stuffcharReadbuff(Ctrl_O);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3811 if (mod_mask)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3812 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3813 char_u buf[4];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3814
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3815 buf[0] = K_SPECIAL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3816 buf[1] = KS_MODIFIER;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3817 buf[2] = mod_mask;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3818 buf[3] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3819 stuffReadbuff(buf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3820 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3821 stuffcharReadbuff(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3822 return TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3823 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3824 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3825 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3826
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3827 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3828 * <Insert> key in Insert mode: toggle insert/replace mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3829 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3830 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3831 ins_insert(int replaceState)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3832 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3833 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3834 set_vim_var_string(VV_INSERTMODE,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3835 (char_u *)((State & REPLACE_FLAG) ? "i"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3836 : replaceState == MODE_VREPLACE ? "v" : "r"), 1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3837 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3838 ins_apply_autocmds(EVENT_INSERTCHANGE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3839 if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3840 State = MODE_INSERT | (State & MODE_LANGMAP);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3841 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3842 State = replaceState | (State & MODE_LANGMAP);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3843 may_trigger_modechanged();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3844 AppendCharToRedobuff(K_INS);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3845 showmode();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3846 #ifdef CURSOR_SHAPE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3847 ui_cursor_shape(); // may show different cursor shape
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3848 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3849 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3850
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3851 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3852 * Pressed CTRL-O in Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3853 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3854 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3855 ins_ctrl_o(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3856 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3857 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3858 restart_edit = 'V';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3859 else if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3860 restart_edit = 'R';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3861 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3862 restart_edit = 'I';
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3863 if (virtual_active())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3864 ins_at_eol = FALSE; // cursor always keeps its column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3865 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3866 ins_at_eol = (gchar_cursor() == NUL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3867 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3868
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3869 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3870 * If the cursor is on an indent, ^T/^D insert/delete one
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3871 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3872 * Always round the indent to 'shiftwidth', this is compatible
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3873 * with vi. But vi only supports ^T and ^D after an
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3874 * autoindent, we support it everywhere.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3875 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3876 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3877 ins_shift(int c, int lastc)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3878 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3879 if (stop_arrow() == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3880 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3881 AppendCharToRedobuff(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3882
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3883 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3884 * 0^D and ^^D: remove all indent.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3885 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3886 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3887 && curwin->w_cursor.col > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3888 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3889 --curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3890 (void)del_char(FALSE); // delete the '^' or '0'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3891 // In Replace mode, restore the characters that '^' or '0' replaced.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3892 if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3893 replace_pop_ins();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3894 if (lastc == '^')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3895 old_indent = get_indent(); // remember curr. indent
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3896 change_indent(INDENT_SET, 0, TRUE, 0, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3897 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3898 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3899 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3900
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3901 if (did_ai && *skipwhite(ml_get_curline()) != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3902 did_ai = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3903 did_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3904 can_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3905 can_si_back = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3906 can_cindent = FALSE; // no cindenting after ^D or ^T
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3907 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3908
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3909 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3910 ins_del(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3911 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3912 int temp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3913
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3914 if (stop_arrow() == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3915 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3916 if (gchar_cursor() == NUL) // delete newline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3917 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3918 temp = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3919 if (!can_bs(BS_EOL) // only if "eol" included
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3920 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3921 vim_beep(BO_BS);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3922 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3923 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3924 curwin->w_cursor.col = temp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3925 // Adjust orig_line_count in case more lines have been deleted than
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3926 // have been added. That makes sure, that open_line() later
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3927 // can access all buffer lines correctly
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3928 if (State & VREPLACE_FLAG &&
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3929 orig_line_count > curbuf->b_ml.ml_line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3930 orig_line_count = curbuf->b_ml.ml_line_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3931 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3932 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3933 else if (del_char(FALSE) == FAIL) // delete char under cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3934 vim_beep(BO_BS);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3935 did_ai = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3936 did_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3937 can_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3938 can_si_back = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3939 AppendCharToRedobuff(K_DEL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3940 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3941
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3942 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3943 * Delete one character for ins_bs().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3944 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3945 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3946 ins_bs_one(colnr_T *vcolp)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3947 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3948 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3949 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3950 if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3951 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3952 // Don't delete characters before the insert point when in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3953 // Replace mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3954 if (curwin->w_cursor.lnum != Insstart.lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3955 || curwin->w_cursor.col >= Insstart.col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3956 replace_do_bs(-1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3957 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3958 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3959 (void)del_char(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3960 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3961
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3962 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3963 * Handle Backspace, delete-word and delete-line in Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3964 * Return TRUE when backspace was actually used.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3965 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3966 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3967 ins_bs(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3968 int c,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3969 int mode,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3970 int *inserted_space_p)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3971 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3972 linenr_T lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3973 int cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3974 int temp = 0; // init for GCC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3975 colnr_T save_col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3976 colnr_T mincol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3977 int did_backspace = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3978 int in_indent;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3979 int oldState;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3980 int cpc[MAX_MCO]; // composing characters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3981 int call_fix_indent = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3982
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3983 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3984 * can't delete anything in an empty file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3985 * can't backup past first character in buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3986 * can't backup past starting point unless 'backspace' > 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3987 * can backup to a previous line if 'backspace' == 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3988 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3989 if ( BUFEMPTY()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3990 || (
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3991 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3992 !revins_on &&
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3993 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3994 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3995 || (!can_bs(BS_START)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3996 && ((arrow_used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3997 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3998 && !bt_prompt(curbuf)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
3999 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4000 ) || (curwin->w_cursor.lnum == Insstart_orig.lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4001 && curwin->w_cursor.col <= Insstart_orig.col)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4002 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4003 && curwin->w_cursor.col <= ai_col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4004 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0))))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4005 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4006 vim_beep(BO_BS);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4007 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4008 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4009
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4010 if (stop_arrow() == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4011 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4012 in_indent = inindent(0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4013 if (in_indent)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4014 can_cindent = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4015 end_comment_pending = NUL; // After BS, don't auto-end comment
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4016 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4017 if (revins_on) // put cursor after last inserted char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4018 inc_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4019 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4020
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4021 // Virtualedit:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4022 // BACKSPACE_CHAR eats a virtual space
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4023 // BACKSPACE_WORD eats all coladd
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4024 // BACKSPACE_LINE eats all coladd and keeps going
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4025 if (curwin->w_cursor.coladd > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4026 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4027 if (mode == BACKSPACE_CHAR)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4028 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4029 --curwin->w_cursor.coladd;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4030 return TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4031 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4032 if (mode == BACKSPACE_WORD)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4033 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4034 curwin->w_cursor.coladd = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4035 return TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4036 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4037 curwin->w_cursor.coladd = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4038 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4039
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4040 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4041 * Delete newline!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4042 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4043 if (curwin->w_cursor.col == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4044 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4045 lnum = Insstart.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4046 if (curwin->w_cursor.lnum == lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4047 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4048 || revins_on
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4049 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4050 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4051 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4052 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2),
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4053 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4054 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4055 --Insstart.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4056 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4057 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4058 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4059 * In replace mode:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4060 * cc < 0: NL was inserted, delete it
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4061 * cc >= 0: NL was replaced, put original characters back
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4062 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4063 cc = -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4064 if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4065 cc = replace_pop(); // returns -1 if NL was inserted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4066 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4067 * In replace mode, in the line we started replacing, we only move the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4068 * cursor.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4069 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4070 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4071 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4072 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4073 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4074 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4075 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4076 if (!(State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4077 || curwin->w_cursor.lnum > orig_line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4078 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4079 temp = gchar_cursor(); // remember current char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4080 --curwin->w_cursor.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4081
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4082 // When "aw" is in 'formatoptions' we must delete the space at
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4083 // the end of the line, otherwise the line will be broken
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4084 // again when auto-formatting.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4085 if (has_format_option(FO_AUTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4086 && has_format_option(FO_WHITE_PAR))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4087 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4088 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4089 TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4090 int len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4091
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4092 len = (int)STRLEN(ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4093 if (len > 0 && ptr[len - 1] == ' ')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4094 ptr[len - 1] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4095 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4096
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4097 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4098 if (temp == NUL && gchar_cursor() != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4099 inc_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4100 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4101 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4102 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4103
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4104 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4105 * In MODE_REPLACE mode we have to put back the text that was
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4106 * replaced by the NL. On the replace stack is first a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4107 * NUL-terminated sequence of characters that were deleted and then
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4108 * the characters that NL replaced.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4109 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4110 if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4111 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4112 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4113 * Do the next ins_char() in MODE_NORMAL state, to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4114 * prevent ins_char() from replacing characters and
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4115 * avoiding showmatch().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4116 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4117 oldState = State;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4118 State = MODE_NORMAL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4119 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4120 * restore characters (blanks) deleted after cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4121 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4122 while (cc > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4123 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4124 save_col = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4125 mb_replace_pop_ins(cc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4126 curwin->w_cursor.col = save_col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4127 cc = replace_pop();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4128 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4129 // restore the characters that NL replaced
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4130 replace_pop_ins();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4131 State = oldState;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4132 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4133 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4134 did_ai = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4135 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4136 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4137 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4138 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4139 * Delete character(s) before the cursor.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4140 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4141 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4142 if (revins_on) // put cursor on last inserted char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4143 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4144 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4145 mincol = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4146 // keep indent
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4147 if (mode == BACKSPACE_LINE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4148 && (curbuf->b_p_ai || cindent_on())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4149 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4150 && !revins_on
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4151 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4152 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4153 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4154 save_col = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4155 beginline(BL_WHITE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4156 if (curwin->w_cursor.col < save_col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4157 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4158 mincol = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4159 // should now fix the indent to match with the previous line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4160 call_fix_indent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4161 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4162 curwin->w_cursor.col = save_col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4163 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4164
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4165 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4166 * Handle deleting one 'shiftwidth' or 'softtabstop'.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4167 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4168 if ( mode == BACKSPACE_CHAR
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4169 && ((p_sta && in_indent)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4170 || ((get_sts_value() != 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4171 #ifdef FEAT_VARTABS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4172 || tabstop_count(curbuf->b_p_vsts_array)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4173 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4174 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4175 && curwin->w_cursor.col > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4176 && (*(ml_get_cursor() - 1) == TAB
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4177 || (*(ml_get_cursor() - 1) == ' '
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4178 && (!*inserted_space_p
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4179 || arrow_used))))))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4180 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4181 int ts;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4182 colnr_T vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4183 colnr_T want_vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4184 colnr_T start_vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4185
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4186 *inserted_space_p = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4187 // Compute the virtual column where we want to be. Since
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4188 // 'showbreak' may get in the way, need to get the last column of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4189 // the previous character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4190 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4191 start_vcol = vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4192 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4193 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4194 inc_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4195 #ifdef FEAT_VARTABS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4196 if (p_sta && in_indent)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4197 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4198 ts = (int)get_sw_value(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4199 want_vcol = (want_vcol / ts) * ts;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4200 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4201 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4202 want_vcol = tabstop_start(want_vcol, get_sts_value(),
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4203 curbuf->b_p_vsts_array);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4204 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4205 if (p_sta && in_indent)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4206 ts = (int)get_sw_value(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4207 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4208 ts = (int)get_sts_value();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4209 want_vcol = (want_vcol / ts) * ts;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4210 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4211
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4212 // delete characters until we are at or before want_vcol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4213 while (vcol > want_vcol && curwin->w_cursor.col > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4214 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4215 ins_bs_one(&vcol);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4216
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4217 // insert extra spaces until we are at want_vcol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4218 while (vcol < want_vcol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4219 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4220 // Remember the first char we inserted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4221 if (curwin->w_cursor.lnum == Insstart_orig.lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4222 && curwin->w_cursor.col < Insstart_orig.col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4223 Insstart_orig.col = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4224
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4225 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4226 ins_char(' ');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4227 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4228 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4229 ins_str((char_u *)" ");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4230 if ((State & REPLACE_FLAG))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4231 replace_push(NUL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4232 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4233 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4234 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4235
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4236 // If we are now back where we started delete one character. Can
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4237 // happen when using 'sts' and 'linebreak'.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4238 if (vcol >= start_vcol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4239 ins_bs_one(&vcol);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4240 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4241
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4242 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4243 * Delete up to starting point, start of line or previous word.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4244 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4245 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4246 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4247 int cclass = 0, prev_cclass = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4248
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4249 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4250 cclass = mb_get_class(ml_get_cursor());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4251 do
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4252 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4253 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4254 if (!revins_on) // put cursor on char to be deleted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4255 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4256 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4257
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4258 cc = gchar_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4259 // look multi-byte character class
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4260 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4261 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4262 prev_cclass = cclass;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4263 cclass = mb_get_class(ml_get_cursor());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4264 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4265
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4266 // start of word?
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4267 if (mode == BACKSPACE_WORD && !vim_isspace(cc))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4268 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4269 mode = BACKSPACE_WORD_NOT_SPACE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4270 temp = vim_iswordc(cc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4271 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4272 // end of word?
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4273 else if (mode == BACKSPACE_WORD_NOT_SPACE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4274 && ((vim_isspace(cc) || vim_iswordc(cc) != temp)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4275 || prev_cclass != cclass))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4276 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4277 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4278 if (!revins_on)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4279 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4280 inc_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4281 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4282 else if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4283 dec_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4284 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4285 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4286 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4287 if (State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4288 replace_do_bs(-1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4289 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4290 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4291 if (enc_utf8 && p_deco)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4292 (void)utfc_ptr2char(ml_get_cursor(), cpc);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4293 (void)del_char(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4294 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4295 * If there are combining characters and 'delcombine' is set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4296 * move the cursor back. Don't back up before the base
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4297 * character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4298 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4299 if (enc_utf8 && p_deco && cpc[0] != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4300 inc_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4301 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4302 if (revins_chars)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4303 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4304 revins_chars--;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4305 revins_legal++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4306 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4307 if (revins_on && gchar_cursor() == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4308 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4309 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4310 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4311 // Just a single backspace?:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4312 if (mode == BACKSPACE_CHAR)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4313 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4314 } while (
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4315 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4316 revins_on ||
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4317 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4318 (curwin->w_cursor.col > mincol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4319 && (can_bs(BS_NOSTOP)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4320 || (curwin->w_cursor.lnum != Insstart_orig.lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4321 || curwin->w_cursor.col != Insstart_orig.col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4322 )));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4323 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4324 did_backspace = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4325 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4326 did_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4327 can_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4328 can_si_back = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4329 if (curwin->w_cursor.col <= 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4330 did_ai = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4331
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4332 if (call_fix_indent)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4333 fix_indent();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4334
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4335 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4336 * It's a little strange to put backspaces into the redo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4337 * buffer, but it makes auto-indent a lot easier to deal
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4338 * with.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4339 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4340 AppendCharToRedobuff(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4341
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4342 // If deleted before the insertion point, adjust it
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4343 if (curwin->w_cursor.lnum == Insstart_orig.lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4344 && curwin->w_cursor.col < Insstart_orig.col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4345 Insstart_orig.col = curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4346
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4347 // vi behaviour: the cursor moves backward but the character that
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4348 // was there remains visible
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4349 // Vim behaviour: the cursor moves backward and the character that
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4350 // was there is erased from the screen.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4351 // We can emulate the vi behaviour by pretending there is a dollar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4352 // displayed even when there isn't.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4353 // --pkv Sun Jan 19 01:56:40 EST 2003
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4354 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4355 dollar_vcol = curwin->w_virtcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4356
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4357 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4358 // When deleting a char the cursor line must never be in a closed fold.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4359 // E.g., when 'foldmethod' is indent and deleting the first non-white
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4360 // char before a Tab.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4361 if (did_backspace)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4362 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4363 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4364
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4365 return did_backspace;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4366 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4367
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4368 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4369 * Handle receiving P_PS: start paste mode. Inserts the following text up to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4370 * P_PE literally.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4371 * When "drop" is TRUE then consume the text and drop it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4372 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4373 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4374 bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4375 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4376 int c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4377 char_u buf[NUMBUFLEN + MB_MAXBYTES];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4378 int idx = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4379 char_u *end = find_termcode((char_u *)"PE");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4380 int ret_char = -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4381 int save_allow_keys = allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4382 int save_paste = p_paste;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4383
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4384 // If the end code is too long we can't detect it, read everything.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4385 if (end != NULL && STRLEN(end) >= NUMBUFLEN)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4386 end = NULL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4387 ++no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4388 allow_keys = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4389 if (!p_paste)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4390 // Also have the side effects of setting 'paste' to make it work much
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4391 // faster.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4392 set_option_value_give_err((char_u *)"paste", TRUE, NULL, 0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4393
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4394 for (;;)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4395 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4396 // When the end is not defined read everything there is.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4397 if (end == NULL && vpeekc() == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4398 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4399 do
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4400 c = vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4401 while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4402
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4403 if (c == NUL || got_int || (ex_normal_busy > 0 && c == Ctrl_C))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4404 // When CTRL-C was encountered the typeahead will be flushed and we
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4405 // won't get the end sequence. Except when using ":normal".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4406 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4407
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4408 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4409 idx += (*mb_char2bytes)(c, buf + idx);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4410 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4411 buf[idx++] = c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4412 buf[idx] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4413 if (end != NULL && STRNCMP(buf, end, idx) == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4414 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4415 if (end[idx] == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4416 break; // Found the end of paste code.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4417 continue;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4418 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4419 if (!drop)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4420 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4421 switch (mode)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4422 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4423 case PASTE_CMDLINE:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4424 put_on_cmdline(buf, idx, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4425 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4426
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4427 case PASTE_EX:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4428 // add one for the NUL that is going to be appended
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4429 if (gap != NULL && ga_grow(gap, idx + 1) == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4430 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4431 mch_memmove((char *)gap->ga_data + gap->ga_len,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4432 buf, (size_t)idx);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4433 gap->ga_len += idx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4434 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4435 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4436
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4437 case PASTE_INSERT:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4438 if (stop_arrow() == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4439 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4440 c = buf[0];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4441 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4442 ins_eol(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4443 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4444 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4445 ins_char_bytes(buf, idx);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4446 AppendToRedobuffLit(buf, idx);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4447 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4448 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4449 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4450
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4451 case PASTE_ONE_CHAR:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4452 if (ret_char == -1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4453 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4454 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4455 ret_char = (*mb_ptr2char)(buf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4456 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4457 ret_char = buf[0];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4458 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4459 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4460 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4461 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4462 idx = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4463 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4464
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4465 --no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4466 allow_keys = save_allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4467 if (!save_paste)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4468 set_option_value_give_err((char_u *)"paste", FALSE, NULL, 0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4469
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4470 return ret_char;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4471 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4472
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4473 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4474 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4475 ins_tabline(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4476 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4477 // We will be leaving the current window, unless closing another tab.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4478 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4479 || (current_tab != 0 && current_tab != tabpage_index(curtab)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4480 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4481 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4482 start_arrow(&curwin->w_cursor);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4483 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4484 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4485
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4486 if (c == K_TABLINE)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4487 goto_tabpage(current_tab);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4488 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4489 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4490 handle_tabmenu();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4491 redraw_statuslines(); // will redraw the tabline when needed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4492 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4493 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4494 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4495
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4496 #if defined(FEAT_GUI) || defined(PROTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4497 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4498 ins_scroll(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4499 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4500 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4501
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4502 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4503 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4504 if (gui_do_scroll())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4505 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4506 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4507 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4508 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4509 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4510
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4511 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4512 ins_horscroll(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4513 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4514 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4515
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4516 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4517 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4518 if (do_mousescroll_horiz(scrollbar_value))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4519 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4520 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4521 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4522 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4523 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4524 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4525
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4526 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4527 ins_left(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4528 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4529 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4530 int end_change = dont_sync_undo == FALSE; // end undoable change
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4531
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4532 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4533 if ((fdo_flags & FDO_HOR) && KeyTyped)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4534 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4535 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4536 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4537 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4538 if (oneleft() == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4539 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4540 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4541 // Only call start_arrow() when not busy with preediting, it will
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4542 // break undo. K_LEFT is inserted in im_correct_cursor().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4543 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4544 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4545 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4546 start_arrow_with_change(&tpos, end_change);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4547 if (!end_change)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4548 AppendCharToRedobuff(K_LEFT);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4549 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4550 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4551 // If exit reversed string, position is fixed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4552 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4553 revins_legal++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4554 revins_chars++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4555 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4556 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4557
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4558 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4559 * if 'whichwrap' set for cursor in insert mode may go to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4560 * previous line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4561 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4562 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4563 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4564 // always break undo when moving upwards/downwards, else undo may break
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4565 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4566 --(curwin->w_cursor.lnum);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4567 coladvance((colnr_T)MAXCOL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4568 curwin->w_set_curswant = TRUE; // so we stay at the end
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4569 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4570 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4571 vim_beep(BO_CRSR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4572 dont_sync_undo = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4573 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4574
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4575 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4576 ins_home(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4577 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4578 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4579
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4580 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4581 if ((fdo_flags & FDO_HOR) && KeyTyped)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4582 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4583 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4584 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4585 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4586 if (c == K_C_HOME)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4587 curwin->w_cursor.lnum = 1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4588 curwin->w_cursor.col = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4589 curwin->w_cursor.coladd = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4590 curwin->w_curswant = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4591 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4592 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4593
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4594 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4595 ins_end(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4596 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4597 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4598
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4599 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4600 if ((fdo_flags & FDO_HOR) && KeyTyped)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4601 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4602 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4603 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4604 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4605 if (c == K_C_END)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4606 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4607 coladvance((colnr_T)MAXCOL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4608 curwin->w_curswant = MAXCOL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4609
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4610 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4611 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4612
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4613 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4614 ins_s_left(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4615 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4616 int end_change = dont_sync_undo == FALSE; // end undoable change
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4617 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4618 if ((fdo_flags & FDO_HOR) && KeyTyped)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4619 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4620 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4621 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4622 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4623 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4624 start_arrow_with_change(&curwin->w_cursor, end_change);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4625 if (!end_change)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4626 AppendCharToRedobuff(K_S_LEFT);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4627 (void)bck_word(1L, FALSE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4628 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4629 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4630 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4631 vim_beep(BO_CRSR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4632 dont_sync_undo = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4633 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4634
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4635 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4636 ins_right(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4637 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4638 int end_change = dont_sync_undo == FALSE; // end undoable change
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4639
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4640 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4641 if ((fdo_flags & FDO_HOR) && KeyTyped)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4642 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4643 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4644 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4645 if (gchar_cursor() != NUL || virtual_active())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4646 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4647 start_arrow_with_change(&curwin->w_cursor, end_change);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4648 if (!end_change)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4649 AppendCharToRedobuff(K_RIGHT);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4650 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4651 if (virtual_active())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4652 oneright();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4653 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4654 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4655 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4656 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4657 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4658 ++curwin->w_cursor.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4659 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4660
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4661 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4662 revins_legal++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4663 if (revins_chars)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4664 revins_chars--;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4665 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4666 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4667 // if 'whichwrap' set for cursor in insert mode, may move the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4668 // cursor to the next line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4669 else if (vim_strchr(p_ww, ']') != NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4670 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4671 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4672 start_arrow(&curwin->w_cursor);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4673 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4674 ++curwin->w_cursor.lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4675 curwin->w_cursor.col = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4676 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4677 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4678 vim_beep(BO_CRSR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4679 dont_sync_undo = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4680 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4681
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4682 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4683 ins_s_right(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4684 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4685 int end_change = dont_sync_undo == FALSE; // end undoable change
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4686 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4687 if ((fdo_flags & FDO_HOR) && KeyTyped)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4688 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4689 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4690 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4691 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4692 || gchar_cursor() != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4693 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4694 start_arrow_with_change(&curwin->w_cursor, end_change);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4695 if (!end_change)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4696 AppendCharToRedobuff(K_S_RIGHT);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4697 (void)fwd_word(1L, FALSE, 0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4698 curwin->w_set_curswant = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4699 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4700 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4701 vim_beep(BO_CRSR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4702 dont_sync_undo = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4703 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4704
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4705 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4706 ins_up(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4707 int startcol) // when TRUE move to Insstart.col
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4708 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4709 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4710 linenr_T old_topline = curwin->w_topline;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4711 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4712 int old_topfill = curwin->w_topfill;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4713 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4714
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4715 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4716 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4717 if (cursor_up(1L, TRUE) == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4718 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4719 if (startcol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4720 coladvance(getvcol_nolist(&Insstart));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4721 if (old_topline != curwin->w_topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4722 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4723 || old_topfill != curwin->w_topfill
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4724 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4725 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4726 redraw_later(UPD_VALID);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4727 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4728 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4729 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4730 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4731 vim_beep(BO_CRSR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4732 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4733
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4734 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4735 ins_pageup(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4736 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4737 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4738
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4739 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4740
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4741 if (mod_mask & MOD_MASK_CTRL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4742 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4743 // <C-PageUp>: tab page back
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4744 if (first_tabpage->tp_next != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4745 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4746 start_arrow(&curwin->w_cursor);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4747 goto_tabpage(-1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4748 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4749 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4750 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4751
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4752 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4753 if (onepage(BACKWARD, 1L) == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4754 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4755 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4756 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4757 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4758 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4759 vim_beep(BO_CRSR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4760 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4761
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4762 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4763 ins_down(
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4764 int startcol) // when TRUE move to Insstart.col
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4765 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4766 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4767 linenr_T old_topline = curwin->w_topline;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4768 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4769 int old_topfill = curwin->w_topfill;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4770 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4771
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4772 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4773 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4774 if (cursor_down(1L, TRUE) == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4775 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4776 if (startcol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4777 coladvance(getvcol_nolist(&Insstart));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4778 if (old_topline != curwin->w_topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4779 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4780 || old_topfill != curwin->w_topfill
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4781 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4782 )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4783 redraw_later(UPD_VALID);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4784 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4785 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4786 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4787 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4788 vim_beep(BO_CRSR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4789 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4790
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4791 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4792 ins_pagedown(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4793 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4794 pos_T tpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4795
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4796 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4797
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4798 if (mod_mask & MOD_MASK_CTRL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4799 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4800 // <C-PageDown>: tab page forward
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4801 if (first_tabpage->tp_next != NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4802 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4803 start_arrow(&curwin->w_cursor);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4804 goto_tabpage(0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4805 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4806 return;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4807 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4808
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4809 tpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4810 if (onepage(FORWARD, 1L) == OK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4811 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4812 start_arrow(&tpos);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4813 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4814 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4815 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4816 vim_beep(BO_CRSR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4817 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4818
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4819 #ifdef FEAT_DND
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4820 static void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4821 ins_drop(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4822 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4823 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4824 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4825 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4826
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4827 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4828 * Handle TAB in Insert or Replace mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4829 * Return TRUE when the TAB needs to be inserted like a normal character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4830 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4831 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4832 ins_tab(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4833 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4834 int ind;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4835 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4836 int temp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4837
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4838 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4839 Insstart_blank_vcol = get_nolist_virtcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4840 if (echeck_abbr(TAB + ABBR_OFF))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4841 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4842
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4843 ind = inindent(0);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4844 if (ind)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4845 can_cindent = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4846
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4847 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4848 * When nothing special, insert TAB like a normal character.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4849 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4850 if (!curbuf->b_p_et
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4851 #ifdef FEAT_VARTABS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4852 && !(p_sta && ind
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4853 // These five lines mean 'tabstop' != 'shiftwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4854 && ((tabstop_count(curbuf->b_p_vts_array) > 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4855 || (tabstop_count(curbuf->b_p_vts_array) == 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4856 && tabstop_first(curbuf->b_p_vts_array)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4857 != get_sw_value(curbuf))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4858 || (tabstop_count(curbuf->b_p_vts_array) == 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4859 && curbuf->b_p_ts != get_sw_value(curbuf))))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4860 && tabstop_count(curbuf->b_p_vsts_array) == 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4861 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4862 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4863 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4864 && get_sts_value() == 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4865 return TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4866
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4867 if (stop_arrow() == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4868 return TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4869
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4870 did_ai = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4871 did_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4872 can_si = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4873 can_si_back = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4874 AppendToRedobuff((char_u *)"\t");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4875
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4876 #ifdef FEAT_VARTABS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4877 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4878 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4879 temp = (int)get_sw_value(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4880 temp -= get_nolist_virtcol() % temp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4881 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4882 else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4883 // use 'softtabstop' when set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4884 temp = tabstop_padding(get_nolist_virtcol(), get_sts_value(),
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4885 curbuf->b_p_vsts_array);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4886 else // otherwise use 'tabstop'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4887 temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4888 curbuf->b_p_vts_array);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4889 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4890 if (p_sta && ind) // insert tab in indent, use 'shiftwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4891 temp = (int)get_sw_value(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4892 else if (curbuf->b_p_sts != 0) // use 'softtabstop' when set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4893 temp = (int)get_sts_value();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4894 else // otherwise use 'tabstop'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4895 temp = (int)curbuf->b_p_ts;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4896 temp -= get_nolist_virtcol() % temp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4897 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4898
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4899 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4900 * Insert the first space with ins_char(). It will delete one char in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4901 * replace mode. Insert the rest with ins_str(); it will not delete any
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4902 * chars. For MODE_VREPLACE state, we use ins_char() for all characters.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4903 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4904 ins_char(' ');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4905 while (--temp > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4906 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4907 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4908 ins_char(' ');
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4909 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4910 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4911 ins_str((char_u *)" ");
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4912 if (State & REPLACE_FLAG) // no char replaced
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4913 replace_push(NUL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4914 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4915 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4916
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4917 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4918 * When 'expandtab' not set: Replace spaces by TABs where possible.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4919 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4920 #ifdef FEAT_VARTABS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4921 if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4922 || get_sts_value() > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4923 || (p_sta && ind)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4924 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4925 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4926 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4927 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4928 char_u *ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4929 char_u *saved_line = NULL; // init for GCC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4930 pos_T pos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4931 pos_T fpos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4932 pos_T *cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4933 colnr_T want_vcol, vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4934 int change_col = -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4935 int save_list = curwin->w_p_list;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4936 char_u *tab = (char_u *)"\t";
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4937 chartabsize_T cts;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4938
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4939 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4940 * Get the current line. For MODE_VREPLACE state, don't make real
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4941 * changes yet, just work on a copy of the line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4942 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4943 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4944 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4945 pos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4946 cursor = &pos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4947 saved_line = vim_strsave(ml_get_curline());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4948 if (saved_line == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4949 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4950 ptr = saved_line + pos.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4951 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4952 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4953 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4954 ptr = ml_get_cursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4955 cursor = &curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4956 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4957
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4958 // When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4959 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4960 curwin->w_p_list = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4961
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4962 // Find first white before the cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4963 fpos = curwin->w_cursor;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4964 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1]))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4965 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4966 --fpos.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4967 --ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4968 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4969
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4970 // In Replace mode, don't change characters before the insert point.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4971 if ((State & REPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4972 && fpos.lnum == Insstart.lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4973 && fpos.col < Insstart.col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4974 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4975 ptr += Insstart.col - fpos.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4976 fpos.col = Insstart.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4977 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4978
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4979 // compute virtual column numbers of first white and cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4980 getvcol(curwin, &fpos, &vcol, NULL, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4981 getvcol(curwin, cursor, &want_vcol, NULL, NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4982
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4983 init_chartabsize_arg(&cts, curwin, 0, vcol, tab, tab);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4984
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4985 // Use as many TABs as possible. Beware of 'breakindent', 'showbreak'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4986 // and 'linebreak' adding extra virtual columns.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4987 while (VIM_ISWHITE(*ptr))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4988 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4989 i = lbr_chartabsize(&cts);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4990 if (cts.cts_vcol + i > want_vcol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4991 break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4992 if (*ptr != TAB)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4993 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4994 *ptr = TAB;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4995 if (change_col < 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4996 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4997 change_col = fpos.col; // Column of first change
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4998 // May have to adjust Insstart
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
4999 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5000 Insstart.col = fpos.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5001 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5002 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5003 ++fpos.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5004 ++ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5005 cts.cts_vcol += i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5006 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5007 vcol = cts.cts_vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5008 clear_chartabsize_arg(&cts);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5009
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5010 if (change_col >= 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5011 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5012 int repl_off = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5013
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5014 // Skip over the spaces we need.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5015 init_chartabsize_arg(&cts, curwin, 0, vcol, ptr, ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5016 while (cts.cts_vcol < want_vcol && *cts.cts_ptr == ' ')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5017 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5018 cts.cts_vcol += lbr_chartabsize(&cts);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5019 ++cts.cts_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5020 ++repl_off;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5021 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5022 ptr = cts.cts_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5023 vcol = cts.cts_vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5024 clear_chartabsize_arg(&cts);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5025
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5026 if (vcol > want_vcol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5027 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5028 // Must have a char with 'showbreak' just before it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5029 --ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5030 --repl_off;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5031 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5032 fpos.col += repl_off;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5033
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5034 // Delete following spaces.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5035 i = cursor->col - fpos.col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5036 if (i > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5037 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5038 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5039 if (!(State & VREPLACE_FLAG))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5040 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5041 char_u *newp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5042 int col;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5043
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5044 newp = alloc(curbuf->b_ml.ml_line_len - i);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5045 if (newp == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5046 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5047
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5048 col = ptr - curbuf->b_ml.ml_line_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5049 if (col > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5050 mch_memmove(newp, ptr - col, col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5051 mch_memmove(newp + col, ptr + i,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5052 curbuf->b_ml.ml_line_len - col - i);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5053
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5054 if (curbuf->b_ml.ml_flags & (ML_LINE_DIRTY | ML_ALLOCATED))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5055 vim_free(curbuf->b_ml.ml_line_ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5056 curbuf->b_ml.ml_line_ptr = newp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5057 curbuf->b_ml.ml_line_len -= i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5058 curbuf->b_ml.ml_flags =
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5059 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5060 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5061 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5062 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5063 STRMOVE(ptr, ptr + i);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5064 // correct replace stack.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5065 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5066 for (temp = i; --temp >= 0; )
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5067 replace_join(repl_off);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5068 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5069 #ifdef FEAT_NETBEANS_INTG
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5070 if (netbeans_active())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5071 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5072 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5073 netbeans_inserted(curbuf, fpos.lnum, cursor->col,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5074 (char_u *)"\t", 1);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5075 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5076 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5077 cursor->col -= i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5078
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5079 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5080 * In MODE_VREPLACE state, we haven't changed anything yet. Do it
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5081 * now by backspacing over the changed spacing and then inserting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5082 * the new spacing.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5083 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5084 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5085 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5086 // Backspace from real cursor to change_col
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5087 backspace_until_column(change_col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5088
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5089 // Insert each char in saved_line from changed_col to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5090 // ptr-cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5091 ins_bytes_len(saved_line + change_col,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5092 cursor->col - change_col);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5093 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5094 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5095
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5096 if (State & VREPLACE_FLAG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5097 vim_free(saved_line);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5098 curwin->w_p_list = save_list;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5099 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5100
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5101 return FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5102 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5103
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5104 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5105 * Handle CR or NL in insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5106 * Return FAIL when out of memory or can't undo.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5107 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5108 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5109 ins_eol(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5110 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5111 int i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5112
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5113 if (echeck_abbr(c + ABBR_OFF))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5114 return OK;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5115 if (stop_arrow() == FAIL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5116 return FAIL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5117 undisplay_dollar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5118
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5119 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5120 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5121 * character under the cursor. Only push a NUL on the replace stack,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5122 * nothing to put back when the NL is deleted.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5123 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5124 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5125 replace_push(NUL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5126
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5127 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5128 * In MODE_VREPLACE state, a NL replaces the rest of the line, and starts
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5129 * replacing the next line, so we push all of the characters left on the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5130 * line onto the replace stack. This is not done here though, it is done
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5131 * in open_line().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5132 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5133
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5134 // Put cursor on NUL if on the last char and coladd is 1 (happens after
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5135 // CTRL-O).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5136 if (virtual_active() && curwin->w_cursor.coladd > 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5137 coladvance(getviscol());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5138
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5139 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5140 // NL in reverse insert will always start in the end of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5141 // current line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5142 if (revins_on)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5143 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor());
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5144 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5145
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5146 AppendToRedobuff(NL_STR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5147 i = open_line(FORWARD,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5148 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM : 0, old_indent,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5149 NULL);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5150 old_indent = 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5151 can_cindent = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5152 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5153 // When inserting a line the cursor line must never be in a closed fold.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5154 foldOpenCursor();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5155 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5156
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5157 return i;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5158 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5159
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5160 #ifdef FEAT_DIGRAPHS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5161 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5162 * Handle digraph in insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5163 * Returns character still to be inserted, or NUL when nothing remaining to be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5164 * done.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5165 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5166 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5167 ins_digraph(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5168 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5169 int c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5170 int cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5171 int did_putchar = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5172
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5173 pc_status = PC_STATUS_UNSET;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5174 if (redrawing() && !char_avail())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5175 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5176 // may need to redraw when no more chars available now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5177 ins_redraw(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5178
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5179 edit_putchar('?', TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5180 did_putchar = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5181 add_to_showcmd_c(Ctrl_K);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5182 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5183
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5184 #ifdef USE_ON_FLY_SCROLL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5185 dont_scroll = TRUE; // disallow scrolling here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5186 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5187
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5188 // don't map the digraph chars. This also prevents the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5189 // mode message to be deleted when ESC is hit
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5190 ++no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5191 ++allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5192 c = plain_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5193 --no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5194 --allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5195 if (did_putchar)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5196 // when the line fits in 'columns' the '?' is at the start of the next
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5197 // line and will not be removed by the redraw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5198 edit_unputchar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5199
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5200 if (IS_SPECIAL(c) || mod_mask) // special key
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5201 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5202 clear_showcmd();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5203 insert_special(c, TRUE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5204 return NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5205 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5206 if (c != ESC)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5207 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5208 did_putchar = FALSE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5209 if (redrawing() && !char_avail())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5210 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5211 // may need to redraw when no more chars available now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5212 ins_redraw(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5213
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5214 if (char2cells(c) == 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5215 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5216 ins_redraw(FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5217 edit_putchar(c, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5218 did_putchar = TRUE;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5219 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5220 add_to_showcmd_c(c);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5221 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5222 ++no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5223 ++allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5224 cc = plain_vgetc();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5225 --no_mapping;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5226 --allow_keys;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5227 if (did_putchar)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5228 // when the line fits in 'columns' the '?' is at the start of the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5229 // next line and will not be removed by a redraw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5230 edit_unputchar();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5231 if (cc != ESC)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5232 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5233 AppendToRedobuff((char_u *)CTRL_V_STR);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5234 c = digraph_get(c, cc, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5235 clear_showcmd();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5236 return c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5237 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5238 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5239 clear_showcmd();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5240 return NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5241 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5242 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5243
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5244 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5245 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5246 * Returns the char to be inserted, or NUL if none found.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5247 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5248 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5249 ins_copychar(linenr_T lnum)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5250 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5251 int c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5252 char_u *ptr, *prev_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5253 char_u *line;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5254 chartabsize_T cts;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5255
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5256 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5257 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5258 vim_beep(BO_COPY);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5259 return NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5260 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5261
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5262 // try to advance to the cursor column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5263 validate_virtcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5264 line = ml_get(lnum);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5265 prev_ptr = line;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5266 init_chartabsize_arg(&cts, curwin, lnum, 0, line, line);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5267 while (cts.cts_vcol < curwin->w_virtcol && *cts.cts_ptr != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5268 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5269 prev_ptr = cts.cts_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5270 cts.cts_vcol += lbr_chartabsize_adv(&cts);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5271 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5272 if (cts.cts_vcol > curwin->w_virtcol)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5273 ptr = prev_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5274 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5275 ptr = cts.cts_ptr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5276 clear_chartabsize_arg(&cts);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5277
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5278 c = (*mb_ptr2char)(ptr);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5279 if (c == NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5280 vim_beep(BO_COPY);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5281 return c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5282 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5283
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5284 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5285 * CTRL-Y or CTRL-E typed in Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5286 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5287 static int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5288 ins_ctrl_ey(int tc)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5289 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5290 int c = tc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5291
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5292 if (ctrl_x_mode_scroll())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5293 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5294 if (c == Ctrl_Y)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5295 scrolldown_clamp();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5296 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5297 scrollup_clamp();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5298 redraw_later(UPD_VALID);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5299 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5300 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5301 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5302 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5303 if (c != NUL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5304 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5305 long tw_save;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5306
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5307 // The character must be taken literally, insert like it
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5308 // was typed after a CTRL-V, and pretend 'textwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5309 // wasn't set. Digits, 'o' and 'x' are special after a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5310 // CTRL-V, don't use it for these.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5311 if (c < 256 && !isalnum(c))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5312 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5313 tw_save = curbuf->b_p_tw;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5314 curbuf->b_p_tw = -1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5315 insert_special(c, TRUE, FALSE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5316 curbuf->b_p_tw = tw_save;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5317 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5318 revins_chars++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5319 revins_legal++;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5320 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5321 c = Ctrl_V; // pretend CTRL-V is last character
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5322 auto_format(FALSE, TRUE);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5323 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5324 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5325 return c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5326 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5327
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5328 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5329 * Get the value that w_virtcol would have when 'list' is off.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5330 * Unless 'cpo' contains the 'L' flag.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5331 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5332 colnr_T
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5333 get_nolist_virtcol(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5334 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5335 // check validity of cursor in current buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5336 if (curwin->w_buffer == NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5337 || curwin->w_buffer->b_ml.ml_mfp == NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5338 || curwin->w_cursor.lnum > curwin->w_buffer->b_ml.ml_line_count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5339 return 0;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5340 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5341 return getvcol_nolist(&curwin->w_cursor);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5342 validate_virtcol();
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5343 return curwin->w_virtcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5344 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5345
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5346 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5347 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5348 * Handle the InsertCharPre autocommand.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5349 * "c" is the character that was typed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5350 * Return a pointer to allocated memory with the replacement string.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5351 * Return NULL to continue inserting "c".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5352 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5353 static char_u *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5354 do_insert_char_pre(int c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5355 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5356 char_u *res;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5357 char_u buf[MB_MAXBYTES + 1];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5358 int save_State = State;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5359
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5360 // Return quickly when there is nothing to do.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5361 if (!has_insertcharpre())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5362 return NULL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5363
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5364 if (has_mbyte)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5365 buf[(*mb_char2bytes)(c, buf)] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5366 else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5367 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5368 buf[0] = c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5369 buf[1] = NUL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5370 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5371
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5372 // Lock the text to avoid weird things from happening.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5373 ++textlock;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5374 set_vim_var_string(VV_CHAR, buf, -1); // set v:char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5375
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5376 res = NULL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5377 if (ins_apply_autocmds(EVENT_INSERTCHARPRE))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5378 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5379 // Get the value of v:char. It may be empty or more than one
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5380 // character. Only use it when changed, otherwise continue with the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5381 // original character to avoid breaking autoindent.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5382 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5383 res = vim_strsave(get_vim_var_str(VV_CHAR));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5384 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5385
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5386 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5387 --textlock;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5388
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5389 // Restore the State, it may have been changed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5390 State = save_State;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5391
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5392 return res;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5393 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5394 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5395
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5396 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5397 get_can_cindent(void)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5398 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5399 return can_cindent;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5400 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5401
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5402 void
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5403 set_can_cindent(int val)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5404 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5405 can_cindent = val;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5406 }
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5407
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5408 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5409 * Trigger "event" and take care of fixing undo.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5410 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5411 int
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5412 ins_apply_autocmds(event_T event)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5413 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5414 varnumber_T tick = CHANGEDTICK(curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5415 int r;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5416
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5417 r = apply_autocmds(event, NULL, NULL, FALSE, curbuf);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5418
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5419 // If u_savesub() was called then we are not prepared to start
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5420 // a new line. Call u_save() with no contents to fix that.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5421 // Except when leaving Insert mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5422 if (event != EVENT_INSERTLEAVE && tick != CHANGEDTICK(curbuf))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5423 u_save(curwin->w_cursor.lnum, (linenr_T)(curwin->w_cursor.lnum + 1));
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5424
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5425 return r;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32535
diff changeset
5426 }