Mercurial > vim
annotate src/edit.c @ 25108:de29f9a76233 v8.2.3091
patch 8.2.3091: Vim9: default argument expr. cannot use previous argument
Commit: https://github.com/vim/vim/commit/e28d9b3bd4de2c7288add83ec35dc001ba280617
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jul 3 18:56:53 2021 +0200
patch 8.2.3091: Vim9: default argument expr. cannot use previous argument
Problem: Vim9: default argument expression cannot use previous argument
Solution: Correct argument index. (closes https://github.com/vim/vim/issues/8496)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 03 Jul 2021 19:00:04 +0200 |
parents | aa55d6d17625 |
children | 078edc1821bf |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9852
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * edit.c: functions for Insert mode | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 | |
16 #define BACKSPACE_CHAR 1 | |
17 #define BACKSPACE_WORD 2 | |
18 #define BACKSPACE_WORD_NOT_SPACE 3 | |
19 #define BACKSPACE_LINE 4 | |
20 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
21 // Set when doing something for completion that may call edit() recursively, |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
22 // which is not allowed. |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
23 static int compl_busy = FALSE; |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
24 |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
25 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
26 static void ins_ctrl_v(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
27 static void insert_special(int, int, int); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
28 static void redo_literal(int c); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
29 static void start_arrow_common(pos_T *end_insert_pos, int change); |
744 | 30 #ifdef FEAT_SPELL |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
31 static void check_spell_redraw(void); |
221 | 32 #endif |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
33 static void stop_insert(pos_T *end_insert_pos, int esc, int nomove); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
34 static int echeck_abbr(int); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
35 static void mb_replace_pop_ins(int cc); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
36 static void replace_flush(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
37 static void replace_do_bs(int limit_col); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
38 static int del_char_after_col(int limit_col); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
39 static void ins_reg(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
40 static void ins_ctrl_g(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
41 static void ins_ctrl_hat(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
42 static int ins_esc(long *count, int cmdchar, int nomove); |
7 | 43 #ifdef FEAT_RIGHTLEFT |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
44 static void ins_ctrl_(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
45 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
46 static int ins_start_select(int c); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
47 static void ins_insert(int replaceState); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
48 static void ins_ctrl_o(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
49 static void ins_shift(int c, int lastc); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
50 static void ins_del(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
51 static int ins_bs(int c, int mode, int *inserted_space_p); |
692 | 52 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
53 static void ins_tabline(int c); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
54 #endif |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
55 static void ins_left(void); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
56 static void ins_home(int c); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
57 static void ins_end(int c); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
58 static void ins_s_left(void); |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
59 static void ins_right(void); |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
60 static void ins_s_right(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
61 static void ins_up(int startcol); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
62 static void ins_pageup(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
63 static void ins_down(int startcol); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
64 static void ins_pagedown(void); |
7 | 65 #ifdef FEAT_DND |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
66 static void ins_drop(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
67 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
68 static int ins_tab(void); |
7 | 69 #ifdef FEAT_DIGRAPHS |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
70 static int ins_digraph(void); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
71 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
72 static int ins_ctrl_ey(int tc); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
73 #if defined(FEAT_EVAL) |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
74 static char_u *do_insert_char_pre(int c); |
3390 | 75 #endif |
7 | 76 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
77 static colnr_T Insstart_textlen; // length of line when insert started |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
78 static colnr_T Insstart_blank_vcol; // vcol for first inserted blank |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
79 static int update_Insstart_orig = TRUE; // set Insstart_orig to Insstart |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
80 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
81 static char_u *last_insert = NULL; // the text of the previous insert, |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
82 // K_SPECIAL and CSI are escaped |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
83 static int last_insert_skip; // nr of chars in front of previous insert |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
84 static int new_insert_skip; // nr of chars in front of current insert |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
85 static int did_restart_edit; // "restart_edit" when calling edit() |
7 | 86 |
87 #ifdef FEAT_CINDENT | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
88 static int can_cindent; // may do cindenting on this line |
7 | 89 #endif |
90 | |
91 #ifdef FEAT_RIGHTLEFT | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
92 static int revins_on; // reverse insert mode on |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
93 static int revins_chars; // how much to skip after edit |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
94 static int revins_legal; // was the last char 'legal'? |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
95 static int revins_scol; // start column of revins session |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
96 #endif |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
97 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
98 static int ins_need_undo; // call u_save() before inserting a |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
99 // char. Set when edit() is called. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
100 // after that arrow_used is used. |
7 | 101 |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
102 static int dont_sync_undo = FALSE; // CTRL-G U prevents syncing undo for |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
103 // the next left/right cursor key |
7 | 104 |
105 /* | |
106 * edit(): Start inserting text. | |
107 * | |
108 * "cmdchar" can be: | |
109 * 'i' normal insert command | |
110 * 'a' normal append command | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
111 * K_PS bracketed paste |
7 | 112 * 'R' replace command |
113 * 'r' "r<CR>" command: insert one <CR>. Note: count can be > 1, for redo, | |
114 * but still only one <CR> is inserted. The <Esc> is not used for redo. | |
115 * 'g' "gI" command. | |
116 * 'V' "gR" command for Virtual Replace mode. | |
117 * 'v' "gr" command for single character Virtual Replace mode. | |
118 * | |
119 * This function is not called recursively. For CTRL-O commands, it returns | |
120 * and lets the caller handle the Normal-mode command. | |
121 * | |
122 * Return TRUE if a CTRL-O command caused the return (insert mode pending). | |
123 */ | |
124 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
125 edit( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
126 int cmdchar, |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
127 int startln, // if set, insert at start of line |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
128 long count) |
7 | 129 { |
130 int c = 0; | |
131 char_u *ptr; | |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
132 int lastc = 0; |
1869 | 133 int mincol; |
7 | 134 static linenr_T o_lnum = 0; |
135 int i; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
136 int did_backspace = TRUE; // previous char was backspace |
7 | 137 #ifdef FEAT_CINDENT |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
138 int line_is_white = FALSE; // line is empty before insert |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
139 #endif |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
140 linenr_T old_topline = 0; // topline before insertion |
7 | 141 #ifdef FEAT_DIFF |
142 int old_topfill = -1; | |
143 #endif | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
144 int inserted_space = FALSE; // just inserted a space |
7 | 145 int replaceState = REPLACE; |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
146 int nomove = FALSE; // don't move cursor on return |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
147 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
148 int cmdchar_todo = cmdchar; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
149 #endif |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
150 #ifdef FEAT_CONCEAL |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
151 int cursor_line_was_concealed; |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
152 #endif |
7 | 153 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
154 // Remember whether editing was restarted after CTRL-O. |
603 | 155 did_restart_edit = restart_edit; |
156 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
157 // sleep before redrawing, needed for "CTRL-O :" that results in an |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
158 // error message |
7 | 159 check_for_delay(TRUE); |
160 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
161 // set Insstart_orig to Insstart |
5680 | 162 update_Insstart_orig = TRUE; |
163 | |
7 | 164 #ifdef HAVE_SANDBOX |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
165 // Don't allow inserting in the sandbox. |
7 | 166 if (sandbox != 0) |
167 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15440
diff
changeset
|
168 emsg(_(e_sandbox)); |
7 | 169 return FALSE; |
170 } | |
171 #endif | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
172 // Don't allow changes in the buffer while editing the cmdline. The |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
173 // caller of getcmdline() may get confused. |
20118
252d2bb90394
patch 8.2.0614: get ml_get error when deleting a line in 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20069
diff
changeset
|
174 // Don't allow recursive insert mode when busy with completion. |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20187
diff
changeset
|
175 if (textwinlock != 0 || textlock != 0 |
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20187
diff
changeset
|
176 || ins_compl_active() || compl_busy || pum_visible()) |
632 | 177 { |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20187
diff
changeset
|
178 emsg(_(e_textwinlock)); |
844 | 179 return FALSE; |
180 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
181 ins_compl_clear(); // clear stuff for CTRL-X mode |
7 | 182 |
11 | 183 /* |
184 * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx". | |
185 */ | |
186 if (cmdchar != 'r' && cmdchar != 'v') | |
187 { | |
4027 | 188 pos_T save_cursor = curwin->w_cursor; |
189 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
190 #ifdef FEAT_EVAL |
11 | 191 if (cmdchar == 'R') |
192 ptr = (char_u *)"r"; | |
193 else if (cmdchar == 'V') | |
194 ptr = (char_u *)"v"; | |
195 else | |
196 ptr = (char_u *)"i"; | |
197 set_vim_var_string(VV_INSERTMODE, ptr, 1); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
198 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
199 #endif |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
200 ins_apply_autocmds(EVENT_INSERTENTER); |
4027 | 201 |
23754
c425989fe7ac
patch 8.2.2418: color not changed if ModeMsg highlight is set in InsertEnter
Bram Moolenaar <Bram@vim.org>
parents:
23664
diff
changeset
|
202 // Check for changed highlighting, e.g. for ModeMsg. |
c425989fe7ac
patch 8.2.2418: color not changed if ModeMsg highlight is set in InsertEnter
Bram Moolenaar <Bram@vim.org>
parents:
23664
diff
changeset
|
203 if (need_highlight_changed) |
c425989fe7ac
patch 8.2.2418: color not changed if ModeMsg highlight is set in InsertEnter
Bram Moolenaar <Bram@vim.org>
parents:
23664
diff
changeset
|
204 highlight_changed(); |
c425989fe7ac
patch 8.2.2418: color not changed if ModeMsg highlight is set in InsertEnter
Bram Moolenaar <Bram@vim.org>
parents:
23664
diff
changeset
|
205 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
206 // Make sure the cursor didn't move. Do call check_cursor_col() in |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
207 // case the text was modified. Since Insert mode was not started yet |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
208 // a call to check_cursor_col() may move the cursor, especially with |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
209 // the "A" command, thus set State to avoid that. Also check that the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
210 // line number is still valid (lines may have been deleted). |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
211 // Do not restore if v:char was set to a non-empty string. |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11105
diff
changeset
|
212 if (!EQUAL_POS(curwin->w_cursor, save_cursor) |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
213 #ifdef FEAT_EVAL |
4448 | 214 && *get_vim_var_str(VV_CHAR) == NUL |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
215 #endif |
4448 | 216 && save_cursor.lnum <= curbuf->b_ml.ml_line_count) |
4027 | 217 { |
218 int save_state = State; | |
219 | |
220 curwin->w_cursor = save_cursor; | |
221 State = INSERT; | |
222 check_cursor_col(); | |
223 State = save_state; | |
224 } | |
11 | 225 } |
226 | |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
227 #ifdef FEAT_CONCEAL |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
228 // Check if the cursor line was concealed before changing State. |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
229 cursor_line_was_concealed = curwin->w_p_cole > 0 |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
230 && conceal_cursor_line(curwin); |
2378
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
231 #endif |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2348
diff
changeset
|
232 |
7 | 233 /* |
234 * When doing a paste with the middle mouse button, Insstart is set to | |
235 * where the paste started. | |
236 */ | |
237 if (where_paste_started.lnum != 0) | |
238 Insstart = where_paste_started; | |
239 else | |
240 { | |
241 Insstart = curwin->w_cursor; | |
242 if (startln) | |
243 Insstart.col = 0; | |
244 } | |
1869 | 245 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline()); |
7 | 246 Insstart_blank_vcol = MAXCOL; |
247 if (!did_ai) | |
248 ai_col = 0; | |
249 | |
250 if (cmdchar != NUL && restart_edit == 0) | |
251 { | |
252 ResetRedobuff(); | |
253 AppendNumberToRedobuff(count); | |
254 if (cmdchar == 'V' || cmdchar == 'v') | |
255 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
256 // "gR" or "gr" command |
7 | 257 AppendCharToRedobuff('g'); |
258 AppendCharToRedobuff((cmdchar == 'v') ? 'r' : 'R'); | |
259 } | |
260 else | |
261 { | |
10682
d564e73ff9ee
patch 8.0.0231: bracketed paste mode is not tested
Christian Brabandt <cb@256bit.org>
parents:
10680
diff
changeset
|
262 if (cmdchar == K_PS) |
d564e73ff9ee
patch 8.0.0231: bracketed paste mode is not tested
Christian Brabandt <cb@256bit.org>
parents:
10680
diff
changeset
|
263 AppendCharToRedobuff('a'); |
d564e73ff9ee
patch 8.0.0231: bracketed paste mode is not tested
Christian Brabandt <cb@256bit.org>
parents:
10680
diff
changeset
|
264 else |
d564e73ff9ee
patch 8.0.0231: bracketed paste mode is not tested
Christian Brabandt <cb@256bit.org>
parents:
10680
diff
changeset
|
265 AppendCharToRedobuff(cmdchar); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
266 if (cmdchar == 'g') // "gI" command |
7 | 267 AppendCharToRedobuff('I'); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
268 else if (cmdchar == 'r') // "r<CR>" command |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
269 count = 1; // insert only one <CR> |
7 | 270 } |
271 } | |
272 | |
273 if (cmdchar == 'R') | |
274 { | |
275 State = REPLACE; | |
276 } | |
277 else if (cmdchar == 'V' || cmdchar == 'v') | |
278 { | |
279 State = VREPLACE; | |
280 replaceState = VREPLACE; | |
281 orig_line_count = curbuf->b_ml.ml_line_count; | |
282 vr_lines_changed = 1; | |
283 } | |
284 else | |
285 State = INSERT; | |
286 | |
287 stop_insert_mode = FALSE; | |
288 | |
25074
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
289 #ifdef FEAT_CONCEAL |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
290 // Check if the cursor line needs redrawing after changing State. If |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
291 // 'concealcursor' is "n" it needs to be redrawn without concealing. |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
292 conceal_check_cursor_line(cursor_line_was_concealed); |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
293 #endif |
aa55d6d17625
patch 8.2.3074: popup_atcursor() uses wrong position with concealing
Bram Moolenaar <Bram@vim.org>
parents:
23754
diff
changeset
|
294 |
7 | 295 /* |
296 * Need to recompute the cursor position, it might move when the cursor is | |
297 * on a TAB or special character. | |
298 */ | |
299 curs_columns(TRUE); | |
300 | |
301 /* | |
302 * Enable langmap or IME, indicated by 'iminsert'. | |
303 * Note that IME may enabled/disabled without us noticing here, thus the | |
304 * 'iminsert' value may not reflect what is actually used. It is updated | |
305 * when hitting <Esc>. | |
306 */ | |
307 if (curbuf->b_p_iminsert == B_IMODE_LMAP) | |
308 State |= LANGMAP; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
309 #ifdef HAVE_INPUT_METHOD |
7 | 310 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM); |
311 #endif | |
312 | |
313 setmouse(); | |
314 #ifdef FEAT_CMDL_INFO | |
315 clear_showcmd(); | |
316 #endif | |
317 #ifdef FEAT_RIGHTLEFT | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
318 // there is no reverse replace mode |
7 | 319 revins_on = (State == INSERT && p_ri); |
320 if (revins_on) | |
321 undisplay_dollar(); | |
322 revins_chars = 0; | |
323 revins_legal = 0; | |
324 revins_scol = -1; | |
325 #endif | |
10684
83a36d655a74
patch 8.0.0232: paste does not work when 'esckeys' is off
Christian Brabandt <cb@256bit.org>
parents:
10682
diff
changeset
|
326 if (!p_ek) |
18534
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
327 { |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22077
diff
changeset
|
328 #ifdef FEAT_JOB_CHANNEL |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22077
diff
changeset
|
329 ch_log_output = TRUE; |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22077
diff
changeset
|
330 #endif |
18534
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
331 // Disable bracketed paste mode, we won't recognize the escape |
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
332 // sequences. |
10684
83a36d655a74
patch 8.0.0232: paste does not work when 'esckeys' is off
Christian Brabandt <cb@256bit.org>
parents:
10682
diff
changeset
|
333 out_str(T_BD); |
7 | 334 |
18534
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
335 // Disable modifyOtherKeys, keys with modifiers would cause exiting |
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
336 // Insert mode. |
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
337 out_str(T_CTE); |
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
338 } |
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
339 |
7 | 340 /* |
341 * Handle restarting Insert mode. | |
11073
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11002
diff
changeset
|
342 * Don't do this for "CTRL-O ." (repeat an insert): In that case we get |
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11002
diff
changeset
|
343 * here with something in the stuff buffer. |
7 | 344 */ |
345 if (restart_edit != 0 && stuff_empty()) | |
346 { | |
347 /* | |
348 * After a paste we consider text typed to be part of the insert for | |
349 * the pasted text. You can backspace over the pasted text too. | |
350 */ | |
351 if (where_paste_started.lnum) | |
352 arrow_used = FALSE; | |
353 else | |
354 arrow_used = TRUE; | |
355 restart_edit = 0; | |
356 | |
357 /* | |
358 * If the cursor was after the end-of-line before the CTRL-O and it is | |
359 * now at the end-of-line, put it after the end-of-line (this is not | |
360 * correct in very rare cases). | |
361 * Also do this if curswant is greater than the current virtual | |
362 * column. Eg after "^O$" or "^O80|". | |
363 */ | |
364 validate_virtcol(); | |
365 update_curswant(); | |
230 | 366 if (((ins_at_eol && curwin->w_cursor.lnum == o_lnum) |
7 | 367 || curwin->w_curswant > curwin->w_virtcol) |
368 && *(ptr = ml_get_curline() + curwin->w_cursor.col) != NUL) | |
369 { | |
370 if (ptr[1] == NUL) | |
371 ++curwin->w_cursor.col; | |
372 else if (has_mbyte) | |
373 { | |
474 | 374 i = (*mb_ptr2len)(ptr); |
7 | 375 if (ptr[i] == NUL) |
376 curwin->w_cursor.col += i; | |
377 } | |
378 } | |
230 | 379 ins_at_eol = FALSE; |
7 | 380 } |
381 else | |
382 arrow_used = FALSE; | |
383 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
384 // we are in insert mode now, don't need to start it anymore |
7 | 385 need_start_insertmode = FALSE; |
386 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
387 // Need to save the line for undo before inserting the first char. |
7 | 388 ins_need_undo = TRUE; |
389 | |
390 where_paste_started.lnum = 0; | |
391 #ifdef FEAT_CINDENT | |
392 can_cindent = TRUE; | |
393 #endif | |
394 #ifdef FEAT_FOLDING | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
395 // The cursor line is not in a closed fold, unless 'insertmode' is set or |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
396 // restarting. |
7 | 397 if (!p_im && did_restart_edit == 0) |
398 foldOpenCursor(); | |
399 #endif | |
400 | |
401 /* | |
402 * If 'showmode' is set, show the current (insert/replace/..) mode. | |
403 * A warning message for changing a readonly file is given here, before | |
404 * actually changing anything. It's put after the mode, if any. | |
405 */ | |
406 i = 0; | |
644 | 407 if (p_smd && msg_silent == 0) |
7 | 408 i = showmode(); |
409 | |
410 if (!p_im && did_restart_edit == 0) | |
1473 | 411 change_warning(i == 0 ? 0 : i + 1); |
7 | 412 |
413 #ifdef CURSOR_SHAPE | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
414 ui_cursor_shape(); // may show different cursor shape |
7 | 415 #endif |
416 #ifdef FEAT_DIGRAPHS | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
417 do_digraph(-1); // clear digraphs |
7 | 418 #endif |
419 | |
603 | 420 /* |
421 * Get the current length of the redo buffer, those characters have to be | |
422 * skipped if we want to get to the inserted characters. | |
423 */ | |
7 | 424 ptr = get_inserted(); |
425 if (ptr == NULL) | |
426 new_insert_skip = 0; | |
427 else | |
428 { | |
429 new_insert_skip = (int)STRLEN(ptr); | |
430 vim_free(ptr); | |
431 } | |
432 | |
433 old_indent = 0; | |
434 | |
435 /* | |
436 * Main loop in Insert mode: repeat until Insert mode is left. | |
437 */ | |
438 for (;;) | |
439 { | |
440 #ifdef FEAT_RIGHTLEFT | |
441 if (!revins_legal) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
442 revins_scol = -1; // reset on illegal motions |
7 | 443 else |
444 revins_legal = 0; | |
445 #endif | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
446 if (arrow_used) // don't repeat insert when arrow key used |
7 | 447 count = 0; |
448 | |
5680 | 449 if (update_Insstart_orig) |
450 Insstart_orig = Insstart; | |
451 | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
452 if (stop_insert_mode && !pum_visible()) |
7 | 453 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
454 // ":stopinsert" used or 'insertmode' reset |
7 | 455 count = 0; |
456 goto doESCkey; | |
457 } | |
458 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
459 // set curwin->w_curswant for next K_DOWN or K_UP |
7 | 460 if (!arrow_used) |
461 curwin->w_set_curswant = TRUE; | |
462 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
463 // If there is no typeahead may check for timestamps (e.g., for when a |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
464 // menu invoked a shell command). |
7 | 465 if (stuff_empty()) |
466 { | |
467 did_check_timestamps = FALSE; | |
468 if (need_check_timestamps) | |
469 check_timestamps(FALSE); | |
470 } | |
471 | |
472 /* | |
473 * When emsg() was called msg_scroll will have been set. | |
474 */ | |
475 msg_scroll = FALSE; | |
476 | |
477 #ifdef FEAT_GUI | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
478 // When 'mousefocus' is set a mouse movement may have taken us to |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
479 // another window. "need_mouse_correct" may then be set because of an |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
480 // autocommand. |
7 | 481 if (need_mouse_correct) |
482 gui_mouse_correct(); | |
483 #endif | |
484 | |
485 #ifdef FEAT_FOLDING | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
486 // Open fold at the cursor line, according to 'foldopen'. |
7 | 487 if (fdo_flags & FDO_INSERT) |
488 foldOpenCursor(); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
489 // Close folds where the cursor isn't, according to 'foldclose' |
7 | 490 if (!char_avail()) |
491 foldCheckClose(); | |
492 #endif | |
493 | |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
494 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
495 if (bt_prompt(curbuf)) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
496 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
497 init_prompt(cmdchar_todo); |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
498 cmdchar_todo = NUL; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
499 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
500 #endif |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
501 |
7 | 502 /* |
503 * If we inserted a character at the last position of the last line in | |
504 * the window, scroll the window one line up. This avoids an extra | |
505 * redraw. | |
506 * This is detected when the cursor column is smaller after inserting | |
507 * something. | |
508 * Don't do this when the topline changed already, it has | |
509 * already been adjusted (by insertchar() calling open_line())). | |
510 */ | |
511 if (curbuf->b_mod_set | |
512 && curwin->w_p_wrap | |
513 && !did_backspace | |
514 && curwin->w_topline == old_topline | |
515 #ifdef FEAT_DIFF | |
516 && curwin->w_topfill == old_topfill | |
517 #endif | |
518 ) | |
519 { | |
520 mincol = curwin->w_wcol; | |
521 validate_cursor_col(); | |
522 | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
523 if ( |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
524 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
525 (int)curwin->w_wcol < mincol - tabstop_at( |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
526 get_nolist_virtcol(), curbuf->b_p_ts, |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
527 curbuf->b_p_vts_array) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
528 #else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
529 (int)curwin->w_wcol < mincol - curbuf->b_p_ts |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
530 #endif |
7 | 531 && curwin->w_wrow == W_WINROW(curwin) |
15713
ad8b2c109b22
patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents:
15705
diff
changeset
|
532 + curwin->w_height - 1 - get_scrolloff_value() |
7 | 533 && (curwin->w_cursor.lnum != curwin->w_topline |
534 #ifdef FEAT_DIFF | |
535 || curwin->w_topfill > 0 | |
536 #endif | |
537 )) | |
538 { | |
539 #ifdef FEAT_DIFF | |
540 if (curwin->w_topfill > 0) | |
541 --curwin->w_topfill; | |
542 else | |
543 #endif | |
544 #ifdef FEAT_FOLDING | |
545 if (hasFolding(curwin->w_topline, NULL, &old_topline)) | |
546 set_topline(curwin, old_topline + 1); | |
547 else | |
548 #endif | |
549 set_topline(curwin, curwin->w_topline + 1); | |
550 } | |
551 } | |
552 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
553 // May need to adjust w_topline to show the cursor. |
7 | 554 update_topline(); |
555 | |
556 did_backspace = FALSE; | |
557 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
558 validate_cursor(); // may set must_redraw |
7 | 559 |
560 /* | |
561 * Redraw the display when no characters are waiting. | |
562 * Also shows mode, ruler and positions cursor. | |
563 */ | |
661 | 564 ins_redraw(TRUE); |
7 | 565 |
566 if (curwin->w_p_scb) | |
567 do_check_scrollbind(TRUE); | |
13384
6740c499de13
patch 8.0.1566: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
568 |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2227
diff
changeset
|
569 if (curwin->w_p_crb) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2227
diff
changeset
|
570 do_check_cursorbind(); |
7 | 571 update_curswant(); |
572 old_topline = curwin->w_topline; | |
573 #ifdef FEAT_DIFF | |
574 old_topfill = curwin->w_topfill; | |
575 #endif | |
576 | |
577 #ifdef USE_ON_FLY_SCROLL | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
578 dont_scroll = FALSE; // allow scrolling here |
7 | 579 #endif |
580 | |
581 /* | |
12960
004bc78c88e6
patch 8.0.1356: using simalt in a GUIEnter autocommand inserts characters
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
582 * Get a character for Insert mode. Ignore K_IGNORE and K_NOP. |
7 | 583 */ |
6673 | 584 if (c != K_CURSORHOLD) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
585 lastc = c; // remember the previous char for CTRL-D |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
586 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
587 // After using CTRL-G U the next cursor key will not break undo. |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
588 if (dont_sync_undo == MAYBE) |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
589 dont_sync_undo = TRUE; |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
590 else |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
591 dont_sync_undo = FALSE; |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
592 if (cmdchar == K_PS) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
593 // Got here from normal mode when bracketed paste started. |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
594 c = K_PS; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
595 else |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
596 do |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
597 { |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
598 c = safe_vgetc(); |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
599 |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
600 if (stop_insert_mode) |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
601 { |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
602 // Insert mode ended, possibly from a callback. |
22427
58cdc5d7f143
patch 8.2.1762: when a timer uses :stopinsert completion isn't stopped
Bram Moolenaar <Bram@vim.org>
parents:
22176
diff
changeset
|
603 if (c != K_IGNORE && c != K_NOP) |
58cdc5d7f143
patch 8.2.1762: when a timer uses :stopinsert completion isn't stopped
Bram Moolenaar <Bram@vim.org>
parents:
22176
diff
changeset
|
604 vungetc(c); |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
605 count = 0; |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
606 nomove = TRUE; |
22427
58cdc5d7f143
patch 8.2.1762: when a timer uses :stopinsert completion isn't stopped
Bram Moolenaar <Bram@vim.org>
parents:
22176
diff
changeset
|
607 ins_compl_prep(ESC); |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
608 goto doESCkey; |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
609 } |
12960
004bc78c88e6
patch 8.0.1356: using simalt in a GUIEnter autocommand inserts characters
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
610 } while (c == K_IGNORE || c == K_NOP); |
7 | 611 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
612 // Don't want K_CURSORHOLD for the second key, e.g., after CTRL-V. |
978 | 613 did_cursorhold = TRUE; |
614 | |
7 | 615 #ifdef FEAT_RIGHTLEFT |
616 if (p_hkmap && KeyTyped) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
617 c = hkmap(c); // Hebrew mode mapping |
7 | 618 #endif |
619 | |
659 | 620 /* |
621 * Special handling of keys while the popup menu is visible or wanted | |
897 | 622 * and the cursor is still in the completed word. Only when there is |
623 * a match, skip this when no matches were found. | |
659 | 624 */ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
625 if (ins_compl_active() |
897 | 626 && pum_wanted() |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
627 && curwin->w_cursor.col >= ins_compl_col() |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
628 && ins_compl_has_shown_match()) |
659 | 629 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
630 // BS: Delete one character from "compl_leader". |
659 | 631 if ((c == K_BS || c == Ctrl_H) |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
632 && curwin->w_cursor.col > ins_compl_col() |
836 | 633 && (c = ins_compl_bs()) == NUL) |
657 | 634 continue; |
635 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
636 // When no match was selected or it was edited. |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
637 if (!ins_compl_used_match()) |
657 | 638 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
639 // CTRL-L: Add one character from the current match to |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
640 // "compl_leader". Except when at the original match and |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
641 // there is nothing to add, CTRL-L works like CTRL-P then. |
836 | 642 if (c == Ctrl_L |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
643 && (!ctrl_x_mode_line_or_eval() |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
644 || ins_compl_long_shown_match())) |
659 | 645 { |
646 ins_compl_addfrommatch(); | |
647 continue; | |
648 } | |
649 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
650 // A non-white character that fits in with the current |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
651 // completion: Add to "compl_leader". |
1430 | 652 if (ins_compl_accept_char(c)) |
659 | 653 { |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
654 #if defined(FEAT_EVAL) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
655 // Trigger InsertCharPre. |
3390 | 656 char_u *str = do_insert_char_pre(c); |
657 char_u *p; | |
658 | |
659 if (str != NULL) | |
660 { | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
661 for (p = str; *p != NUL; MB_PTR_ADV(p)) |
3390 | 662 ins_compl_addleader(PTR2CHAR(p)); |
663 vim_free(str); | |
664 } | |
665 else | |
666 #endif | |
667 ins_compl_addleader(c); | |
659 | 668 continue; |
669 } | |
665 | 670 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
671 // Pressing CTRL-Y selects the current match. When |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
672 // ins_compl_enter_selects() is set the Enter key does the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
673 // same. |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
674 if ((c == Ctrl_Y || (ins_compl_enter_selects() |
10291
d9bd03a0d70f
commit https://github.com/vim/vim/commit/cbd3bd6cbed5baf418b037b17ad46e339ff59174
Christian Brabandt <cb@256bit.org>
parents:
10289
diff
changeset
|
675 && (c == CAR || c == K_KENTER || c == NL))) |
d9bd03a0d70f
commit https://github.com/vim/vim/commit/cbd3bd6cbed5baf418b037b17ad46e339ff59174
Christian Brabandt <cb@256bit.org>
parents:
10289
diff
changeset
|
676 && stop_arrow() == OK) |
665 | 677 { |
678 ins_compl_delete(); | |
10277
154d5a2e7395
commit https://github.com/vim/vim/commit/472e85970ee3a80abd824bef510df12e9cfe9e96
Christian Brabandt <cb@256bit.org>
parents:
10120
diff
changeset
|
679 ins_compl_insert(FALSE); |
665 | 680 } |
657 | 681 } |
682 } | |
683 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
684 // Prepare for or stop CTRL-X mode. This doesn't do completion, but |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
685 // it does fix up the text when finishing completion. |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
686 ins_compl_init_get_longest(); |
1526 | 687 if (ins_compl_prep(c)) |
657 | 688 continue; |
7 | 689 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
690 // CTRL-\ CTRL-N goes to Normal mode, |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
691 // CTRL-\ CTRL-G goes to mode selected with 'insertmode', |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
692 // CTRL-\ CTRL-O is like CTRL-O but without moving the cursor. |
7 | 693 if (c == Ctrl_BSL) |
694 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
695 // may need to redraw when no more chars available now |
661 | 696 ins_redraw(FALSE); |
7 | 697 ++no_mapping; |
698 ++allow_keys; | |
1389 | 699 c = plain_vgetc(); |
7 | 700 --no_mapping; |
701 --allow_keys; | |
477 | 702 if (c != Ctrl_N && c != Ctrl_G && c != Ctrl_O) |
7 | 703 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
704 // it's something else |
7 | 705 vungetc(c); |
706 c = Ctrl_BSL; | |
707 } | |
708 else if (c == Ctrl_G && p_im) | |
709 continue; | |
710 else | |
711 { | |
477 | 712 if (c == Ctrl_O) |
713 { | |
714 ins_ctrl_o(); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
715 ins_at_eol = FALSE; // cursor keeps its column |
477 | 716 nomove = TRUE; |
717 } | |
7 | 718 count = 0; |
719 goto doESCkey; | |
720 } | |
721 } | |
722 | |
723 #ifdef FEAT_DIGRAPHS | |
724 c = do_digraph(c); | |
725 #endif | |
726 | |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
727 if ((c == Ctrl_V || c == Ctrl_Q) && ctrl_x_mode_cmdline()) |
7 | 728 goto docomplete; |
729 if (c == Ctrl_V || c == Ctrl_Q) | |
730 { | |
731 ins_ctrl_v(); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
732 c = Ctrl_V; // pretend CTRL-V is last typed character |
7 | 733 continue; |
734 } | |
735 | |
736 #ifdef FEAT_CINDENT | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
737 if (cindent_on() && ctrl_x_mode_none()) |
7 | 738 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
739 // A key name preceded by a bang means this key is not to be |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
740 // inserted. Skip ahead to the re-indenting below. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
741 // A key name preceded by a star means that indenting has to be |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
742 // done before inserting the key. |
7 | 743 line_is_white = inindent(0); |
744 if (in_cinkeys(c, '!', line_is_white)) | |
745 goto force_cindent; | |
746 if (can_cindent && in_cinkeys(c, '*', line_is_white) | |
747 && stop_arrow() == OK) | |
748 do_c_expr_indent(); | |
749 } | |
750 #endif | |
751 | |
752 #ifdef FEAT_RIGHTLEFT | |
753 if (curwin->w_p_rl) | |
754 switch (c) | |
755 { | |
756 case K_LEFT: c = K_RIGHT; break; | |
757 case K_S_LEFT: c = K_S_RIGHT; break; | |
758 case K_C_LEFT: c = K_C_RIGHT; break; | |
759 case K_RIGHT: c = K_LEFT; break; | |
760 case K_S_RIGHT: c = K_S_LEFT; break; | |
761 case K_C_RIGHT: c = K_C_LEFT; break; | |
762 } | |
763 #endif | |
764 | |
765 /* | |
766 * If 'keymodel' contains "startsel", may start selection. If it | |
767 * does, a CTRL-O and c will be stuffed, we need to get these | |
768 * characters. | |
769 */ | |
770 if (ins_start_select(c)) | |
771 continue; | |
772 | |
773 /* | |
774 * The big switch to handle a character in insert mode. | |
775 */ | |
776 switch (c) | |
777 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
778 case ESC: // End input mode |
7 | 779 if (echeck_abbr(ESC + ABBR_OFF)) |
780 break; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
781 // FALLTHROUGH |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
782 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
783 case Ctrl_C: // End input mode |
7 | 784 #ifdef FEAT_CMDWIN |
785 if (c == Ctrl_C && cmdwin_type != 0) | |
786 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
787 // Close the cmdline window. |
7 | 788 cmdwin_result = K_IGNORE; |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
789 got_int = FALSE; // don't stop executing autocommands et al. |
929 | 790 nomove = TRUE; |
7 | 791 goto doESCkey; |
792 } | |
793 #endif | |
14103
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
794 #ifdef FEAT_JOB_CHANNEL |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
795 if (c == Ctrl_C && bt_prompt(curbuf)) |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
796 { |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
797 if (invoke_prompt_interrupt()) |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
798 { |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
799 if (!bt_prompt(curbuf)) |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
800 // buffer changed to a non-prompt buffer, get out of |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
801 // Insert mode |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
802 goto doESCkey; |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
803 break; |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
804 } |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
805 } |
d053ec57d886
patch 8.1.0069: cannot handle pressing CTRL-C in a prompt buffer
Christian Brabandt <cb@256bit.org>
parents:
14093
diff
changeset
|
806 #endif |
7 | 807 |
808 #ifdef UNIX | |
809 do_intr: | |
810 #endif | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
811 // when 'insertmode' set, and not halfway a mapping, don't leave |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
812 // Insert mode |
7 | 813 if (goto_im()) |
814 { | |
815 if (got_int) | |
816 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
817 (void)vgetc(); // flush all buffers |
7 | 818 got_int = FALSE; |
819 } | |
820 else | |
6949 | 821 vim_beep(BO_IM); |
7 | 822 break; |
823 } | |
824 doESCkey: | |
825 /* | |
826 * This is the ONLY return from edit()! | |
827 */ | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
828 // Always update o_lnum, so that a "CTRL-O ." that adds a line |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
829 // still puts the cursor back after the inserted text. |
230 | 830 if (ins_at_eol && gchar_cursor() == NUL) |
7 | 831 o_lnum = curwin->w_cursor.lnum; |
832 | |
477 | 833 if (ins_esc(&count, cmdchar, nomove)) |
11 | 834 { |
14985
4ebda55537a5
patch 8.1.0504: when CTRL-C is mapped it triggers InsertLeave
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
835 // When CTRL-C was typed got_int will be set, with the result |
4ebda55537a5
patch 8.1.0504: when CTRL-C is mapped it triggers InsertLeave
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
836 // that the autocommands won't be executed. When mapped got_int |
4ebda55537a5
patch 8.1.0504: when CTRL-C is mapped it triggers InsertLeave
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
837 // is not set, but let's keep the behavior the same. |
4ebda55537a5
patch 8.1.0504: when CTRL-C is mapped it triggers InsertLeave
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
838 if (cmdchar != 'r' && cmdchar != 'v' && c != Ctrl_C) |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
839 ins_apply_autocmds(EVENT_INSERTLEAVE); |
993 | 840 did_cursorhold = FALSE; |
7 | 841 return (c == Ctrl_O); |
11 | 842 } |
7 | 843 continue; |
844 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
845 case Ctrl_Z: // suspend when 'insertmode' set |
449 | 846 if (!p_im) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
847 goto normalchar; // insert CTRL-Z as normal char |
10636
3db97def0f35
patch 8.0.0208: internally used commands end up in history
Christian Brabandt <cb@256bit.org>
parents:
10468
diff
changeset
|
848 do_cmdline_cmd((char_u *)"stop"); |
10980
5362b4b6042c
patch 8.0.0379: CTRL-Z and mouse click use CTRL-O unnecessary
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
849 #ifdef CURSOR_SHAPE |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
850 ui_cursor_shape(); // may need to update cursor shape |
10980
5362b4b6042c
patch 8.0.0379: CTRL-Z and mouse click use CTRL-O unnecessary
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
851 #endif |
5362b4b6042c
patch 8.0.0379: CTRL-Z and mouse click use CTRL-O unnecessary
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
852 continue; |
449 | 853 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
854 case Ctrl_O: // execute one command |
502 | 855 #ifdef FEAT_COMPL_FUNC |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
856 if (ctrl_x_mode_omni()) |
449 | 857 goto docomplete; |
858 #endif | |
859 if (echeck_abbr(Ctrl_O + ABBR_OFF)) | |
860 break; | |
861 ins_ctrl_o(); | |
853 | 862 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
863 // don't move the cursor left when 'virtualedit' has "onemore". |
853 | 864 if (ve_flags & VE_ONEMORE) |
865 { | |
866 ins_at_eol = FALSE; | |
867 nomove = TRUE; | |
868 } | |
449 | 869 count = 0; |
870 goto doESCkey; | |
871 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
872 case K_INS: // toggle insert/replace mode |
464 | 873 case K_KINS: |
874 ins_insert(replaceState); | |
875 break; | |
876 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
877 case K_SELECT: // end of Select mode mapping - ignore |
464 | 878 break; |
879 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
880 case K_HELP: // Help key works like <ESC> <Help> |
449 | 881 case K_F1: |
882 case K_XF1: | |
883 stuffcharReadbuff(K_HELP); | |
884 if (p_im) | |
885 need_start_insertmode = TRUE; | |
886 goto doESCkey; | |
887 | |
888 #ifdef FEAT_NETBEANS_INTG | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
889 case K_F21: // NetBeans command |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
890 ++no_mapping; // don't map the next key hits |
1389 | 891 i = plain_vgetc(); |
449 | 892 --no_mapping; |
893 netbeans_keycommand(i); | |
894 break; | |
895 #endif | |
896 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
897 case K_ZERO: // Insert the previously inserted text. |
7 | 898 case NUL: |
899 case Ctrl_A: | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
900 // For ^@ the trailing ESC will end the insert, unless there is an |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
901 // error. |
7 | 902 if (stuff_inserted(NUL, 1L, (c == Ctrl_A)) == FAIL |
903 && c != Ctrl_A && !p_im) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
904 goto doESCkey; // quit insert mode |
7 | 905 inserted_space = FALSE; |
906 break; | |
907 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
908 case Ctrl_R: // insert the contents of a register |
7 | 909 ins_reg(); |
910 auto_format(FALSE, TRUE); | |
911 inserted_space = FALSE; | |
912 break; | |
913 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
914 case Ctrl_G: // commands starting with CTRL-G |
7 | 915 ins_ctrl_g(); |
916 break; | |
917 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
918 case Ctrl_HAT: // switch input mode and/or langmap |
449 | 919 ins_ctrl_hat(); |
7 | 920 break; |
921 | |
922 #ifdef FEAT_RIGHTLEFT | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
923 case Ctrl__: // switch between languages |
7 | 924 if (!p_ari) |
925 goto normalchar; | |
926 ins_ctrl_(); | |
927 break; | |
928 #endif | |
929 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
930 case Ctrl_D: // Make indent one shiftwidth smaller. |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
931 #if defined(FEAT_FIND_ID) |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
932 if (ctrl_x_mode_path_defines()) |
7 | 933 goto docomplete; |
934 #endif | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
935 // FALLTHROUGH |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
936 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
937 case Ctrl_T: // Make indent one shiftwidth greater. |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
938 if (c == Ctrl_T && ctrl_x_mode_thesaurus()) |
7 | 939 { |
449 | 940 if (has_compl_option(FALSE)) |
941 goto docomplete; | |
942 break; | |
7 | 943 } |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
944 |
7 | 945 ins_shift(c, lastc); |
946 auto_format(FALSE, TRUE); | |
947 inserted_space = FALSE; | |
948 break; | |
949 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
950 case K_DEL: // delete character under the cursor |
7 | 951 case K_KDEL: |
952 ins_del(); | |
953 auto_format(FALSE, TRUE); | |
954 break; | |
955 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
956 case K_BS: // delete character before the cursor |
7 | 957 case Ctrl_H: |
958 did_backspace = ins_bs(c, BACKSPACE_CHAR, &inserted_space); | |
959 auto_format(FALSE, TRUE); | |
960 break; | |
961 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
962 case Ctrl_W: // delete word before the cursor |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
963 #ifdef FEAT_JOB_CHANNEL |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
964 if (bt_prompt(curbuf) && (mod_mask & MOD_MASK_SHIFT) == 0) |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
965 { |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
966 // In a prompt window CTRL-W is used for window commands. |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
967 // Use Shift-CTRL-W to delete a word. |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
968 stuffcharReadbuff(Ctrl_W); |
14093
a9d94f10ecef
patch 8.1.0064: typing CTRL-W in a prompt buffer shows mode "-- --"
Christian Brabandt <cb@256bit.org>
parents:
14079
diff
changeset
|
969 restart_edit = 'A'; |
14035
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
970 nomove = TRUE; |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
971 count = 0; |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
972 goto doESCkey; |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
973 } |
bccd66fa00c1
patch 8.1.0035: not easy to switch between prompt buffer and other windows
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
974 #endif |
7 | 975 did_backspace = ins_bs(c, BACKSPACE_WORD, &inserted_space); |
976 auto_format(FALSE, TRUE); | |
977 break; | |
978 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
979 case Ctrl_U: // delete all inserted text in current line |
12 | 980 # ifdef FEAT_COMPL_FUNC |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
981 // CTRL-X CTRL-U completes with 'completefunc'. |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
982 if (ctrl_x_mode_function()) |
12 | 983 goto docomplete; |
984 # endif | |
7 | 985 did_backspace = ins_bs(c, BACKSPACE_LINE, &inserted_space); |
986 auto_format(FALSE, TRUE); | |
987 inserted_space = FALSE; | |
988 break; | |
989 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
990 case K_LEFTMOUSE: // mouse keys |
7 | 991 case K_LEFTMOUSE_NM: |
992 case K_LEFTDRAG: | |
993 case K_LEFTRELEASE: | |
994 case K_LEFTRELEASE_NM: | |
12865
ebb4f6c93598
patch 8.0.1309: cannot use 'balloonexpr' in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
995 case K_MOUSEMOVE: |
7 | 996 case K_MIDDLEMOUSE: |
997 case K_MIDDLEDRAG: | |
998 case K_MIDDLERELEASE: | |
999 case K_RIGHTMOUSE: | |
1000 case K_RIGHTDRAG: | |
1001 case K_RIGHTRELEASE: | |
1002 case K_X1MOUSE: | |
1003 case K_X1DRAG: | |
1004 case K_X1RELEASE: | |
1005 case K_X2MOUSE: | |
1006 case K_X2DRAG: | |
1007 case K_X2RELEASE: | |
1008 ins_mouse(c); | |
1009 break; | |
1010 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1011 case K_MOUSEDOWN: // Default action for scroll wheel up: scroll up |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1012 ins_mousescroll(MSCR_DOWN); |
7 | 1013 break; |
1014 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1015 case K_MOUSEUP: // Default action for scroll wheel down: scroll down |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1016 ins_mousescroll(MSCR_UP); |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1017 break; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1018 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1019 case K_MOUSELEFT: // Scroll wheel left |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1020 ins_mousescroll(MSCR_LEFT); |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1021 break; |
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1022 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1023 case K_MOUSERIGHT: // Scroll wheel right |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
1024 ins_mousescroll(MSCR_RIGHT); |
7 | 1025 break; |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
1026 |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1027 case K_PS: |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1028 bracketed_paste(PASTE_INSERT, FALSE, NULL); |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1029 if (cmdchar == K_PS) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1030 // invoked from normal mode, bail out |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1031 goto doESCkey; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1032 break; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1033 case K_PE: |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1034 // Got K_PE without K_PS, ignore. |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1035 break; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
1036 |
692 | 1037 #ifdef FEAT_GUI_TABLINE |
1038 case K_TABLINE: | |
1039 case K_TABMENU: | |
1040 ins_tabline(c); | |
1041 break; | |
1042 #endif | |
7 | 1043 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1044 case K_IGNORE: // Something mapped to nothing |
7 | 1045 break; |
1046 | |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22858
diff
changeset
|
1047 case K_COMMAND: // <Cmd>command<CR> |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22858
diff
changeset
|
1048 do_cmdline(NULL, getcmdkeycmd, NULL, 0); |
22882
be7f52838056
patch 8.2.1988: still in Insert mode when opening terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1049 #ifdef FEAT_TERMINAL |
be7f52838056
patch 8.2.1988: still in Insert mode when opening terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1050 if (term_use_loop()) |
be7f52838056
patch 8.2.1988: still in Insert mode when opening terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1051 // Started a terminal that gets the input, exit Insert mode. |
be7f52838056
patch 8.2.1988: still in Insert mode when opening terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1052 goto doESCkey; |
be7f52838056
patch 8.2.1988: still in Insert mode when opening terminal popup
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
1053 #endif |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22858
diff
changeset
|
1054 break; |
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22858
diff
changeset
|
1055 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1056 case K_CURSORHOLD: // Didn't type something for a while. |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1057 ins_apply_autocmds(EVENT_CURSORHOLDI); |
661 | 1058 did_cursorhold = TRUE; |
1059 break; | |
1060 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1061 #ifdef FEAT_GUI_MSWIN |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1062 // On MS-Windows ignore <M-F4>, we get it when closing the window |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1063 // was cancelled. |
625 | 1064 case K_F4: |
1065 if (mod_mask != MOD_MASK_ALT) | |
1066 goto normalchar; | |
1067 break; | |
1068 #endif | |
1069 | |
7 | 1070 #ifdef FEAT_GUI |
1071 case K_VER_SCROLLBAR: | |
1072 ins_scroll(); | |
1073 break; | |
1074 | |
1075 case K_HOR_SCROLLBAR: | |
1076 ins_horscroll(); | |
1077 break; | |
1078 #endif | |
1079 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1080 case K_HOME: // <Home> |
7 | 1081 case K_KHOME: |
1082 case K_S_HOME: | |
1083 case K_C_HOME: | |
1084 ins_home(c); | |
1085 break; | |
1086 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1087 case K_END: // <End> |
7 | 1088 case K_KEND: |
1089 case K_S_END: | |
1090 case K_C_END: | |
1091 ins_end(c); | |
1092 break; | |
1093 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1094 case K_LEFT: // <Left> |
180 | 1095 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)) |
1096 ins_s_left(); | |
1097 else | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1098 ins_left(); |
7 | 1099 break; |
1100 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1101 case K_S_LEFT: // <S-Left> |
7 | 1102 case K_C_LEFT: |
1103 ins_s_left(); | |
1104 break; | |
1105 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1106 case K_RIGHT: // <Right> |
180 | 1107 if (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL)) |
1108 ins_s_right(); | |
1109 else | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
1110 ins_right(); |
7 | 1111 break; |
1112 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1113 case K_S_RIGHT: // <S-Right> |
7 | 1114 case K_C_RIGHT: |
1115 ins_s_right(); | |
1116 break; | |
1117 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1118 case K_UP: // <Up> |
665 | 1119 if (pum_visible()) |
1120 goto docomplete; | |
180 | 1121 if (mod_mask & MOD_MASK_SHIFT) |
1122 ins_pageup(); | |
1123 else | |
1124 ins_up(FALSE); | |
7 | 1125 break; |
1126 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1127 case K_S_UP: // <S-Up> |
7 | 1128 case K_PAGEUP: |
1129 case K_KPAGEUP: | |
610 | 1130 if (pum_visible()) |
1131 goto docomplete; | |
7 | 1132 ins_pageup(); |
1133 break; | |
1134 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1135 case K_DOWN: // <Down> |
665 | 1136 if (pum_visible()) |
1137 goto docomplete; | |
180 | 1138 if (mod_mask & MOD_MASK_SHIFT) |
1139 ins_pagedown(); | |
1140 else | |
1141 ins_down(FALSE); | |
7 | 1142 break; |
1143 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1144 case K_S_DOWN: // <S-Down> |
7 | 1145 case K_PAGEDOWN: |
1146 case K_KPAGEDOWN: | |
610 | 1147 if (pum_visible()) |
1148 goto docomplete; | |
7 | 1149 ins_pagedown(); |
1150 break; | |
1151 | |
1152 #ifdef FEAT_DND | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1153 case K_DROP: // drag-n-drop event |
7 | 1154 ins_drop(); |
1155 break; | |
1156 #endif | |
1157 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1158 case K_S_TAB: // When not mapped, use like a normal TAB |
7 | 1159 c = TAB; |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1160 // FALLTHROUGH |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1161 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1162 case TAB: // TAB or Complete patterns along path |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
1163 #if defined(FEAT_FIND_ID) |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1164 if (ctrl_x_mode_path_patterns()) |
7 | 1165 goto docomplete; |
1166 #endif | |
1167 inserted_space = FALSE; | |
1168 if (ins_tab()) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1169 goto normalchar; // insert TAB as a normal char |
7 | 1170 auto_format(FALSE, TRUE); |
1171 break; | |
1172 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1173 case K_KENTER: // <Enter> |
7 | 1174 c = CAR; |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1175 // FALLTHROUGH |
7 | 1176 case CAR: |
1177 case NL: | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
1178 #if defined(FEAT_QUICKFIX) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1179 // In a quickfix window a <CR> jumps to the error under the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1180 // cursor. |
7 | 1181 if (bt_quickfix(curbuf) && c == CAR) |
1182 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1183 if (curwin->w_llist_ref == NULL) // quickfix window |
644 | 1184 do_cmdline_cmd((char_u *)".cc"); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1185 else // location list window |
644 | 1186 do_cmdline_cmd((char_u *)".ll"); |
7 | 1187 break; |
1188 } | |
1189 #endif | |
1190 #ifdef FEAT_CMDWIN | |
1191 if (cmdwin_type != 0) | |
1192 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1193 // Execute the command in the cmdline window. |
7 | 1194 cmdwin_result = CAR; |
1195 goto doESCkey; | |
1196 } | |
1197 #endif | |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1198 #ifdef FEAT_JOB_CHANNEL |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1199 if (bt_prompt(curbuf)) |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1200 { |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1201 invoke_prompt_callback(); |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
1202 if (!bt_prompt(curbuf)) |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
1203 // buffer changed to a non-prompt buffer, get out of |
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
1204 // Insert mode |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1205 goto doESCkey; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1206 break; |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1207 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1208 #endif |
13772
cc21507ee4b1
patch 8.0.1758: open_line() returns TRUE/FALSE for success/failure
Christian Brabandt <cb@256bit.org>
parents:
13718
diff
changeset
|
1209 if (ins_eol(c) == FAIL && !p_im) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1210 goto doESCkey; // out of memory |
7 | 1211 auto_format(FALSE, FALSE); |
1212 inserted_space = FALSE; | |
1213 break; | |
1214 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1215 case Ctrl_K: // digraph or keyword completion |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1216 if (ctrl_x_mode_dictionary()) |
7 | 1217 { |
449 | 1218 if (has_compl_option(TRUE)) |
1219 goto docomplete; | |
1220 break; | |
7 | 1221 } |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
1222 #ifdef FEAT_DIGRAPHS |
7 | 1223 c = ins_digraph(); |
1224 if (c == NUL) | |
1225 break; | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
1226 #endif |
7 | 1227 goto normalchar; |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
1228 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1229 case Ctrl_X: // Enter CTRL-X mode |
464 | 1230 ins_ctrl_x(); |
1231 break; | |
1232 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1233 case Ctrl_RSB: // Tag name completion after ^X |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1234 if (!ctrl_x_mode_tags()) |
7 | 1235 goto normalchar; |
1236 goto docomplete; | |
1237 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1238 case Ctrl_F: // File name completion after ^X |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1239 if (!ctrl_x_mode_files()) |
7 | 1240 goto normalchar; |
1241 goto docomplete; | |
477 | 1242 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1243 case 's': // Spelling completion after ^X |
477 | 1244 case Ctrl_S: |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1245 if (!ctrl_x_mode_spell()) |
477 | 1246 goto normalchar; |
1247 goto docomplete; | |
7 | 1248 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1249 case Ctrl_L: // Whole line completion after ^X |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1250 if (!ctrl_x_mode_whole_line()) |
7 | 1251 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1252 // CTRL-L with 'insertmode' set: Leave Insert mode |
7 | 1253 if (p_im) |
1254 { | |
1255 if (echeck_abbr(Ctrl_L + ABBR_OFF)) | |
1256 break; | |
1257 goto doESCkey; | |
1258 } | |
1259 goto normalchar; | |
1260 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1261 // FALLTHROUGH |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1262 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1263 case Ctrl_P: // Do previous/next pattern completion |
7 | 1264 case Ctrl_N: |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1265 // if 'complete' is empty then plain ^P is no longer special, |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1266 // but it is under other ^X modes |
7 | 1267 if (*curbuf->b_p_cpt == NUL |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1268 && (ctrl_x_mode_normal() || ctrl_x_mode_whole_line()) |
449 | 1269 && !(compl_cont_status & CONT_LOCAL)) |
7 | 1270 goto normalchar; |
1271 | |
1272 docomplete: | |
1927 | 1273 compl_busy = TRUE; |
11073
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11002
diff
changeset
|
1274 #ifdef FEAT_FOLDING |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1275 disable_fold_update++; // don't redraw folds here |
11073
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11002
diff
changeset
|
1276 #endif |
8224
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1277 if (ins_complete(c, TRUE) == FAIL) |
449 | 1278 compl_cont_status = 0; |
11073
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11002
diff
changeset
|
1279 #ifdef FEAT_FOLDING |
8891
d7ba3f9b9ba6
commit https://github.com/vim/vim/commit/429fcfbf9a9275367fe9441a50a3dcd773497d84
Christian Brabandt <cb@256bit.org>
parents:
8362
diff
changeset
|
1280 disable_fold_update--; |
11073
d2178a6cc9f3
patch 8.0.0425: build errors when building without folding
Christian Brabandt <cb@256bit.org>
parents:
11002
diff
changeset
|
1281 #endif |
1927 | 1282 compl_busy = FALSE; |
7 | 1283 break; |
1284 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1285 case Ctrl_Y: // copy from previous line or scroll down |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1286 case Ctrl_E: // copy from next line or scroll up |
449 | 1287 c = ins_ctrl_ey(c); |
7 | 1288 break; |
1289 | |
1290 default: | |
1291 #ifdef UNIX | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1292 if (c == intr_char) // special interrupt char |
7 | 1293 goto do_intr; |
1294 #endif | |
1295 | |
2845 | 1296 normalchar: |
7 | 1297 /* |
4352 | 1298 * Insert a normal character. |
7 | 1299 */ |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1300 #if defined(FEAT_EVAL) |
2845 | 1301 if (!p_paste) |
1302 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1303 // Trigger InsertCharPre. |
3390 | 1304 char_u *str = do_insert_char_pre(c); |
1305 char_u *p; | |
1306 | |
1307 if (str != NULL) | |
2845 | 1308 { |
3390 | 1309 if (*str != NUL && stop_arrow() != FAIL) |
2845 | 1310 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1311 // Insert the new value of v:char literally. |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1312 for (p = str; *p != NUL; MB_PTR_ADV(p)) |
2845 | 1313 { |
3390 | 1314 c = PTR2CHAR(p); |
1315 if (c == CAR || c == K_KENTER || c == NL) | |
1316 ins_eol(c); | |
1317 else | |
1318 ins_char(c); | |
2845 | 1319 } |
3390 | 1320 AppendToRedobuffLit(str, -1); |
2845 | 1321 } |
3390 | 1322 vim_free(str); |
1323 c = NUL; | |
2845 | 1324 } |
1325 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1326 // If the new value is already inserted or an empty string |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1327 // then don't insert any character. |
2845 | 1328 if (c == NUL) |
1329 break; | |
1330 } | |
1331 #endif | |
7 | 1332 #ifdef FEAT_SMARTINDENT |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1333 // Try to perform smart-indenting. |
7 | 1334 ins_try_si(c); |
1335 #endif | |
1336 | |
1337 if (c == ' ') | |
1338 { | |
1339 inserted_space = TRUE; | |
1340 #ifdef FEAT_CINDENT | |
1341 if (inindent(0)) | |
1342 can_cindent = FALSE; | |
1343 #endif | |
1344 if (Insstart_blank_vcol == MAXCOL | |
1345 && curwin->w_cursor.lnum == Insstart.lnum) | |
1346 Insstart_blank_vcol = get_nolist_virtcol(); | |
1347 } | |
1348 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1349 // Insert a normal character and check for abbreviations on a |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1350 // special character. Let CTRL-] expand abbreviations without |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1351 // inserting it. |
3448 | 1352 if (vim_iswordc(c) || (!echeck_abbr( |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
1353 // Add ABBR_OFF for characters above 0x100, this is |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
1354 // what check_abbr() expects. |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
1355 (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : c) |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
1356 && c != Ctrl_RSB)) |
7 | 1357 { |
1358 insert_special(c, FALSE, FALSE); | |
1359 #ifdef FEAT_RIGHTLEFT | |
1360 revins_legal++; | |
1361 revins_chars++; | |
1362 #endif | |
1363 } | |
1364 | |
1365 auto_format(FALSE, TRUE); | |
1366 | |
1367 #ifdef FEAT_FOLDING | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1368 // When inserting a character the cursor line must never be in a |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1369 // closed fold. |
7 | 1370 foldOpenCursor(); |
1371 #endif | |
1372 break; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1373 } // end of switch (c) |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1374 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1375 // If typed something may trigger CursorHoldI again. |
8945
a3060addc328
commit https://github.com/vim/vim/commit/245c41070c7f37d52be43cce0cb140bd3ade6c7e
Christian Brabandt <cb@256bit.org>
parents:
8943
diff
changeset
|
1376 if (c != K_CURSORHOLD |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1377 #ifdef FEAT_COMPL_FUNC |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1378 // but not in CTRL-X mode, a script can't restore the state |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1379 && ctrl_x_mode_normal() |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1380 #endif |
8945
a3060addc328
commit https://github.com/vim/vim/commit/245c41070c7f37d52be43cce0cb140bd3ade6c7e
Christian Brabandt <cb@256bit.org>
parents:
8943
diff
changeset
|
1381 ) |
978 | 1382 did_cursorhold = FALSE; |
1383 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1384 // If the cursor was moved we didn't just insert a space |
7 | 1385 if (arrow_used) |
1386 inserted_space = FALSE; | |
1387 | |
1388 #ifdef FEAT_CINDENT | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
1389 if (can_cindent && cindent_on() && ctrl_x_mode_normal()) |
7 | 1390 { |
1391 force_cindent: | |
1392 /* | |
1393 * Indent now if a key was typed that is in 'cinkeys'. | |
1394 */ | |
1395 if (in_cinkeys(c, ' ', line_is_white)) | |
1396 { | |
1397 if (stop_arrow() == OK) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1398 // re-indent the current line |
7 | 1399 do_c_expr_indent(); |
1400 } | |
1401 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1402 #endif // FEAT_CINDENT |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1403 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1404 } // for (;;) |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1405 // NOTREACHED |
7 | 1406 } |
1407 | |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1408 int |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1409 ins_need_undo_get(void) |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1410 { |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1411 return ins_need_undo; |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1412 } |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1413 |
7 | 1414 /* |
1415 * Redraw for Insert mode. | |
1416 * This is postponed until getting the next character to make '$' in the 'cpo' | |
1417 * option work correctly. | |
1418 * Only redraw when there are no characters available. This speeds up | |
1419 * inserting sequences of characters (e.g., for CTRL-R). | |
1420 */ | |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
1421 void |
16904
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1422 ins_redraw(int ready) // not busy with something |
7 | 1423 { |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
1424 #ifdef FEAT_CONCEAL |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
1425 linenr_T conceal_old_cursor_line = 0; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
1426 linenr_T conceal_new_cursor_line = 0; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
1427 int conceal_update_lines = FALSE; |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
1428 #endif |
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
1429 |
5592 | 1430 if (char_avail()) |
1431 return; | |
1432 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1433 // Trigger CursorMoved if the cursor moved. Not when the popup menu is |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1434 // visible, the command might delete it. |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1435 if (ready && (has_cursormovedI() |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1436 # ifdef FEAT_PROP_POPUP |
16904
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1437 || popup_visible |
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1438 # endif |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1439 # if defined(FEAT_CONCEAL) |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1440 || curwin->w_p_cole > 0 |
5592 | 1441 # endif |
1442 ) | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1443 && !EQUAL_POS(last_cursormoved, curwin->w_cursor) |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
1444 && !pum_visible()) |
5592 | 1445 { |
1446 # ifdef FEAT_SYN_HL | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1447 // Need to update the screen first, to make sure syntax |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1448 // highlighting is correct after making a change (e.g., inserting |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1449 // a "(". The autocommand may also require a redraw, so it's done |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1450 // again below, unfortunately. |
5592 | 1451 if (syntax_present(curwin) && must_redraw) |
1452 update_screen(0); | |
2282
a888ed7ba375
Make updating text for conceal mode simpler. A few compiler warning fixes.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
1453 # endif |
5592 | 1454 if (has_cursormovedI()) |
8003
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
1455 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1456 // Make sure curswant is correct, an autocommand may call |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1457 // getcurpos(). |
8003
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
1458 update_curswant(); |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1459 ins_apply_autocmds(EVENT_CURSORMOVEDI); |
8003
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
1460 } |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
1461 #ifdef FEAT_PROP_POPUP |
16904
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1462 if (popup_visible) |
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1463 popup_check_cursor_pos(); |
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1464 #endif |
5592 | 1465 # ifdef FEAT_CONCEAL |
1466 if (curwin->w_p_cole > 0) | |
1467 { | |
1468 conceal_old_cursor_line = last_cursormoved.lnum; | |
1469 conceal_new_cursor_line = curwin->w_cursor.lnum; | |
1470 conceal_update_lines = TRUE; | |
1471 } | |
1472 # endif | |
1473 last_cursormoved = curwin->w_cursor; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1474 } |
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1475 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1476 // Trigger TextChangedI if b_changedtick differs. |
5592 | 1477 if (ready && has_textchangedI() |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1478 && curbuf->b_last_changedtick != CHANGEDTICK(curbuf) |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
1479 && !pum_visible()) |
5592 | 1480 { |
14079
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1481 aco_save_T aco; |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1482 varnumber_T tick = CHANGEDTICK(curbuf); |
14463
3b87daa5c37a
patch 8.1.0245: calling setline() in TextChangedI autocmd breaks undo
Christian Brabandt <cb@256bit.org>
parents:
14457
diff
changeset
|
1483 |
14079
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1484 // save and restore curwin and curbuf, in case the autocmd changes them |
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1485 aucmd_prepbuf(&aco, curbuf); |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1486 apply_autocmds(EVENT_TEXTCHANGEDI, NULL, NULL, FALSE, curbuf); |
14079
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1487 aucmd_restbuf(&aco); |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1488 curbuf->b_last_changedtick = CHANGEDTICK(curbuf); |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1489 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds() |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1490 u_save(curwin->w_cursor.lnum, |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1491 (linenr_T)(curwin->w_cursor.lnum + 1)); |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1492 } |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1493 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1494 // Trigger TextChangedP if b_changedtick differs. When the popupmenu closes |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1495 // TextChangedI will need to trigger for backwards compatibility, thus use |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1496 // different b_last_changedtick* variables. |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1497 if (ready && has_textchangedP() |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1498 && curbuf->b_last_changedtick_pum != CHANGEDTICK(curbuf) |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1499 && pum_visible()) |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1500 { |
14079
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1501 aco_save_T aco; |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1502 varnumber_T tick = CHANGEDTICK(curbuf); |
14079
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1503 |
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1504 // save and restore curwin and curbuf, in case the autocmd changes them |
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1505 aucmd_prepbuf(&aco, curbuf); |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1506 apply_autocmds(EVENT_TEXTCHANGEDP, NULL, NULL, FALSE, curbuf); |
14079
b5e43a048878
patch 8.1.0057: popup menu displayed wrong when using autocmd
Christian Brabandt <cb@256bit.org>
parents:
14071
diff
changeset
|
1507 aucmd_restbuf(&aco); |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1508 curbuf->b_last_changedtick_pum = CHANGEDTICK(curbuf); |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1509 if (tick != CHANGEDTICK(curbuf)) // see ins_apply_autocmds() |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1510 u_save(curwin->w_cursor.lnum, |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
1511 (linenr_T)(curwin->w_cursor.lnum + 1)); |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13238
diff
changeset
|
1512 } |
5592 | 1513 |
18098
a2870e6f5b45
patch 8.1.2044: no easy way to process postponed work
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1514 // Trigger SafeState if nothing is pending. |
a2870e6f5b45
patch 8.1.2044: no easy way to process postponed work
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1515 may_trigger_safestate(ready |
a2870e6f5b45
patch 8.1.2044: no easy way to process postponed work
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1516 && !ins_compl_active() |
a2870e6f5b45
patch 8.1.2044: no easy way to process postponed work
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1517 && !pum_visible()); |
a2870e6f5b45
patch 8.1.2044: no easy way to process postponed work
Bram Moolenaar <Bram@vim.org>
parents:
17809
diff
changeset
|
1518 |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1519 #if defined(FEAT_CONCEAL) |
5592 | 1520 if ((conceal_update_lines |
1521 && (conceal_old_cursor_line != conceal_new_cursor_line | |
1522 || conceal_cursor_line(curwin))) | |
1523 || need_cursor_line_redraw) | |
1524 { | |
1525 if (conceal_old_cursor_line != conceal_new_cursor_line) | |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1526 redrawWinline(curwin, conceal_old_cursor_line); |
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1527 redrawWinline(curwin, conceal_new_cursor_line == 0 |
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1528 ? curwin->w_cursor.lnum : conceal_new_cursor_line); |
5592 | 1529 curwin->w_valid &= ~VALID_CROW; |
15436
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1530 need_cursor_line_redraw = FALSE; |
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1531 } |
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1532 #endif |
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1533 if (must_redraw) |
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1534 update_screen(0); |
29f3d59bb6f0
patch 8.1.0726: redrawing specifically for conceal feature
Bram Moolenaar <Bram@vim.org>
parents:
15416
diff
changeset
|
1535 else if (clear_cmdline || redraw_cmdline) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1536 showmode(); // clear cmdline and show mode |
5592 | 1537 showruler(FALSE); |
1538 setcursor(); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1539 emsg_on_display = FALSE; // may remove error message now |
7 | 1540 } |
1541 | |
1542 /* | |
1543 * Handle a CTRL-V or CTRL-Q typed in Insert mode. | |
1544 */ | |
1545 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1546 ins_ctrl_v(void) |
7 | 1547 { |
1548 int c; | |
2811 | 1549 int did_putchar = FALSE; |
7 | 1550 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1551 // may need to redraw when no more chars available now |
661 | 1552 ins_redraw(FALSE); |
7 | 1553 |
1554 if (redrawing() && !char_avail()) | |
2811 | 1555 { |
7 | 1556 edit_putchar('^', TRUE); |
2811 | 1557 did_putchar = TRUE; |
1558 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1559 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V |
7 | 1560 |
1561 #ifdef FEAT_CMDL_INFO | |
1562 add_to_showcmd_c(Ctrl_V); | |
1563 #endif | |
1564 | |
23076
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1565 // Do not change any modifyOtherKeys ESC sequence to a normal key for |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1566 // CTRL-SHIFT-V. |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1567 c = get_literal(mod_mask & MOD_MASK_SHIFT); |
2811 | 1568 if (did_putchar) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1569 // when the line fits in 'columns' the '^' is at the start of the next |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1570 // line and will not removed by the redraw |
2811 | 1571 edit_unputchar(); |
7 | 1572 #ifdef FEAT_CMDL_INFO |
1573 clear_showcmd(); | |
1574 #endif | |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1575 |
7 | 1576 insert_special(c, FALSE, TRUE); |
1577 #ifdef FEAT_RIGHTLEFT | |
1578 revins_chars++; | |
1579 revins_legal++; | |
1580 #endif | |
1581 } | |
1582 | |
1583 /* | |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1584 * After getting an ESC or CSI for a literal key: If the typeahead buffer |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1585 * contains a modifyOtherKeys sequence then decode it and return the result. |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1586 * Otherwise return "c". |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1587 * Note that this doesn't wait for characters, they must be in the typeahead |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1588 * buffer already. |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1589 */ |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1590 int |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1591 decodeModifyOtherKeys(int c) |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1592 { |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1593 char_u *p = typebuf.tb_buf + typebuf.tb_off; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1594 int idx; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1595 int form = 0; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1596 int argidx = 0; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1597 int arg[2] = {0, 0}; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1598 |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1599 // Recognize: |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1600 // form 0: {lead}{key};{modifier}u |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1601 // form 1: {lead}27;{modifier};{key}~ |
23664
aa8fa32cdca3
patch 8.2.2374: accessing uninitialized memory in test_undo
Bram Moolenaar <Bram@vim.org>
parents:
23076
diff
changeset
|
1602 if (typebuf.tb_len >= 4 && (c == CSI || (c == ESC && *p == '['))) |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1603 { |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1604 idx = (*p == '['); |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1605 if (p[idx] == '2' && p[idx + 1] == '7' && p[idx + 2] == ';') |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1606 { |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1607 form = 1; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1608 idx += 3; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1609 } |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1610 while (idx < typebuf.tb_len && argidx < 2) |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1611 { |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1612 if (p[idx] == ';') |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1613 ++argidx; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1614 else if (VIM_ISDIGIT(p[idx])) |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1615 arg[argidx] = arg[argidx] * 10 + (p[idx] - '0'); |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1616 else |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1617 break; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1618 ++idx; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1619 } |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1620 if (idx < typebuf.tb_len |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1621 && p[idx] == (form == 1 ? '~' : 'u') |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1622 && argidx == 1) |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1623 { |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1624 // Match, consume the code. |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1625 typebuf.tb_off += idx + 1; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1626 typebuf.tb_len -= idx + 1; |
19627
6b1564fcab92
patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents:
19151
diff
changeset
|
1627 #if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL) |
6b1564fcab92
patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents:
19151
diff
changeset
|
1628 if (typebuf.tb_len == 0) |
6b1564fcab92
patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents:
19151
diff
changeset
|
1629 typebuf_was_filled = FALSE; |
6b1564fcab92
patch 8.2.0370: the typebuf_was_filled flag is sometimes not reset
Bram Moolenaar <Bram@vim.org>
parents:
19151
diff
changeset
|
1630 #endif |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1631 |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1632 mod_mask = decode_modifiers(arg[!form]); |
20727
5ffe112b1afd
patch 8.2.0916: mapping with partly modifyOtherKeys code does not work
Bram Moolenaar <Bram@vim.org>
parents:
20237
diff
changeset
|
1633 c = merge_modifyOtherKeys(arg[form], &mod_mask); |
18717
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1634 } |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1635 } |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1636 |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1637 return c; |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1638 } |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1639 |
14d2a210fab1
patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18709
diff
changeset
|
1640 /* |
7 | 1641 * Put a character directly onto the screen. It's not stored in a buffer. |
1642 * Used while handling CTRL-K, CTRL-V, etc. in Insert mode. | |
1643 */ | |
1644 static int pc_status; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1645 #define PC_STATUS_UNSET 0 // pc_bytes was not set |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1646 #define PC_STATUS_RIGHT 1 // right halve of double-wide char |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1647 #define PC_STATUS_LEFT 2 // left halve of double-wide char |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1648 #define PC_STATUS_SET 3 // pc_bytes was filled |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1649 static char_u pc_bytes[MB_MAXBYTES + 1]; // saved bytes |
7 | 1650 static int pc_attr; |
1651 static int pc_row; | |
1652 static int pc_col; | |
1653 | |
1654 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1655 edit_putchar(int c, int highlight) |
7 | 1656 { |
1657 int attr; | |
1658 | |
1659 if (ScreenLines != NULL) | |
1660 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1661 update_topline(); // just in case w_topline isn't valid |
7 | 1662 validate_cursor(); |
1663 if (highlight) | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1664 attr = HL_ATTR(HLF_8); |
7 | 1665 else |
1666 attr = 0; | |
1667 pc_row = W_WINROW(curwin) + curwin->w_wrow; | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1668 pc_col = curwin->w_wincol; |
7 | 1669 pc_status = PC_STATUS_UNSET; |
1670 #ifdef FEAT_RIGHTLEFT | |
1671 if (curwin->w_p_rl) | |
1672 { | |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1673 pc_col += curwin->w_width - 1 - curwin->w_wcol; |
7 | 1674 if (has_mbyte) |
1675 { | |
1676 int fix_col = mb_fix_col(pc_col, pc_row); | |
1677 | |
1678 if (fix_col != pc_col) | |
1679 { | |
1680 screen_putchar(' ', pc_row, fix_col, attr); | |
1681 --curwin->w_wcol; | |
1682 pc_status = PC_STATUS_RIGHT; | |
1683 } | |
1684 } | |
1685 } | |
1686 else | |
1687 #endif | |
1688 { | |
1689 pc_col += curwin->w_wcol; | |
1690 if (mb_lefthalve(pc_row, pc_col)) | |
1691 pc_status = PC_STATUS_LEFT; | |
1692 } | |
1693 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1694 // save the character to be able to put it back |
7 | 1695 if (pc_status == PC_STATUS_UNSET) |
1696 { | |
1697 screen_getbytes(pc_row, pc_col, pc_bytes, &pc_attr); | |
1698 pc_status = PC_STATUS_SET; | |
1699 } | |
1700 screen_putchar(c, pc_row, pc_col, attr); | |
1701 } | |
1702 } | |
1703 | |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1704 /* |
22095
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1705 * Set the insert start position for when using a prompt buffer. |
22077
335365fcbb60
patch 8.2.1588: cannot read back the prompt of a prompt buffer
Bram Moolenaar <Bram@vim.org>
parents:
20727
diff
changeset
|
1706 */ |
22095
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1707 void |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1708 set_insstart(linenr_T lnum, int col) |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1709 { |
22095
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1710 Insstart.lnum = lnum; |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1711 Insstart.col = col; |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1712 Insstart_orig = Insstart; |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1713 Insstart_textlen = Insstart.col; |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1714 Insstart_blank_vcol = MAXCOL; |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
22091
diff
changeset
|
1715 arrow_used = FALSE; |
14019
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1716 } |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1717 |
dc67449d648c
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents:
14004
diff
changeset
|
1718 /* |
7 | 1719 * Undo the previous edit_putchar(). |
1720 */ | |
1721 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1722 edit_unputchar(void) |
7 | 1723 { |
1724 if (pc_status != PC_STATUS_UNSET && pc_row >= msg_scrolled) | |
1725 { | |
1726 if (pc_status == PC_STATUS_RIGHT) | |
1727 ++curwin->w_wcol; | |
1728 if (pc_status == PC_STATUS_RIGHT || pc_status == PC_STATUS_LEFT) | |
15400
ac5542aadd9c
patch 8.1.0708: third argument for redrawWinline() is always FALSE
Bram Moolenaar <Bram@vim.org>
parents:
15382
diff
changeset
|
1729 redrawWinline(curwin, curwin->w_cursor.lnum); |
7 | 1730 else |
1731 screen_puts(pc_bytes, pc_row - msg_scrolled, pc_col, pc_attr); | |
1732 } | |
1733 } | |
1734 | |
1735 /* | |
1736 * Called when p_dollar is set: display a '$' at the end of the changed text | |
1737 * Only works when cursor is in the line that changes. | |
1738 */ | |
1739 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1740 display_dollar(colnr_T col) |
7 | 1741 { |
1742 colnr_T save_col; | |
1743 | |
1744 if (!redrawing()) | |
1745 return; | |
1746 | |
1747 cursor_off(); | |
1748 save_col = curwin->w_cursor.col; | |
1749 curwin->w_cursor.col = col; | |
1750 if (has_mbyte) | |
1751 { | |
1752 char_u *p; | |
1753 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1754 // If on the last byte of a multi-byte move to the first byte. |
7 | 1755 p = ml_get_curline(); |
1756 curwin->w_cursor.col -= (*mb_head_off)(p, p + col); | |
1757 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1758 curs_columns(FALSE); // recompute w_wrow and w_wcol |
12515
972ea22c946f
patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1759 if (curwin->w_wcol < curwin->w_width) |
7 | 1760 { |
1761 edit_putchar('$', FALSE); | |
1762 dollar_vcol = curwin->w_virtcol; | |
1763 } | |
1764 curwin->w_cursor.col = save_col; | |
1765 } | |
1766 | |
1767 /* | |
1768 * Call this function before moving the cursor from the normal insert position | |
1769 * in insert mode. | |
1770 */ | |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18098
diff
changeset
|
1771 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1772 undisplay_dollar(void) |
7 | 1773 { |
3318 | 1774 if (dollar_vcol >= 0) |
1775 { | |
1776 dollar_vcol = -1; | |
15400
ac5542aadd9c
patch 8.1.0708: third argument for redrawWinline() is always FALSE
Bram Moolenaar <Bram@vim.org>
parents:
15382
diff
changeset
|
1777 redrawWinline(curwin, curwin->w_cursor.lnum); |
7 | 1778 } |
1779 } | |
1780 | |
1781 /* | |
1782 * Truncate the space at the end of a line. This is to be used only in an | |
1783 * insert mode. It handles fixing the replace stack for REPLACE and VREPLACE | |
1784 * modes. | |
1785 */ | |
1786 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1787 truncate_spaces(char_u *line) |
7 | 1788 { |
1789 int i; | |
1790 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1791 // find start of trailing white space |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1792 for (i = (int)STRLEN(line) - 1; i >= 0 && VIM_ISWHITE(line[i]); i--) |
7 | 1793 { |
1794 if (State & REPLACE_FLAG) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1795 replace_join(0); // remove a NUL from the replace stack |
7 | 1796 } |
1797 line[i + 1] = NUL; | |
1798 } | |
1799 | |
1800 /* | |
1801 * Backspace the cursor until the given column. Handles REPLACE and VREPLACE | |
1802 * modes correctly. May also be used when not in insert mode at all. | |
1782 | 1803 * Will attempt not to go before "col" even when there is a composing |
1804 * character. | |
7 | 1805 */ |
1806 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1807 backspace_until_column(int col) |
7 | 1808 { |
1809 while ((int)curwin->w_cursor.col > col) | |
1810 { | |
1811 curwin->w_cursor.col--; | |
1812 if (State & REPLACE_FLAG) | |
1782 | 1813 replace_do_bs(col); |
1814 else if (!del_char_after_col(col)) | |
1815 break; | |
1816 } | |
1817 } | |
1818 | |
1819 /* | |
1820 * Like del_char(), but make sure not to go before column "limit_col". | |
1821 * Only matters when there are composing characters. | |
1822 * Return TRUE when something was deleted. | |
1823 */ | |
1824 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1825 del_char_after_col(int limit_col UNUSED) |
1782 | 1826 { |
1827 if (enc_utf8 && limit_col >= 0) | |
1828 { | |
1869 | 1829 colnr_T ecol = curwin->w_cursor.col + 1; |
1782 | 1830 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1831 // Make sure the cursor is at the start of a character, but |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1832 // skip forward again when going too far back because of a |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1833 // composing character. |
1782 | 1834 mb_adjust_cursor(); |
1796 | 1835 while (curwin->w_cursor.col < (colnr_T)limit_col) |
1782 | 1836 { |
1837 int l = utf_ptr2len(ml_get_cursor()); | |
1838 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1839 if (l == 0) // end of line |
1782 | 1840 break; |
1841 curwin->w_cursor.col += l; | |
1842 } | |
1843 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol) | |
1844 return FALSE; | |
1869 | 1845 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE); |
1782 | 1846 } |
1847 else | |
1848 (void)del_char(FALSE); | |
1849 return TRUE; | |
1850 } | |
7 | 1851 |
1852 /* | |
1853 * Next character is interpreted literally. | |
1854 * A one, two or three digit decimal number is interpreted as its byte value. | |
1855 * If one or two digits are entered, the next character is given to vungetc(). | |
1856 * For Unicode a character > 255 may be returned. | |
23076
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1857 * If "noReduceKeys" is TRUE do not change any modifyOtherKeys ESC sequence |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1858 * into a normal key, return ESC. |
7 | 1859 */ |
1860 int | |
23076
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1861 get_literal(int noReduceKeys) |
7 | 1862 { |
1863 int cc; | |
1864 int nc; | |
1865 int i; | |
1866 int hex = FALSE; | |
1867 int octal = FALSE; | |
1868 int unicode = 0; | |
1869 | |
1870 if (got_int) | |
1871 return Ctrl_C; | |
1872 | |
1873 #ifdef FEAT_GUI | |
1874 /* | |
1875 * In GUI there is no point inserting the internal code for a special key. | |
1876 * It is more useful to insert the string "<KEY>" instead. This would | |
1877 * probably be useful in a text window too, but it would not be | |
1878 * vi-compatible (maybe there should be an option for it?) -- webb | |
1879 */ | |
1880 if (gui.in_use) | |
1881 ++allow_keys; | |
1882 #endif | |
1883 #ifdef USE_ON_FLY_SCROLL | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1884 dont_scroll = TRUE; // disallow scrolling here |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1885 #endif |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1886 ++no_mapping; // don't map the next key hits |
7 | 1887 cc = 0; |
1888 i = 0; | |
1889 for (;;) | |
1890 { | |
1389 | 1891 nc = plain_vgetc(); |
23076
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1892 if ((nc == ESC || nc == CSI) && !noReduceKeys) |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1893 nc = decodeModifyOtherKeys(nc); |
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
1894 |
7 | 1895 #ifdef FEAT_CMDL_INFO |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
1896 if (!(State & CMDLINE) && MB_BYTE2LEN_CHECK(nc) == 1) |
7 | 1897 add_to_showcmd(nc); |
1898 #endif | |
1899 if (nc == 'x' || nc == 'X') | |
1900 hex = TRUE; | |
1901 else if (nc == 'o' || nc == 'O') | |
1902 octal = TRUE; | |
1903 else if (nc == 'u' || nc == 'U') | |
1904 unicode = nc; | |
1905 else | |
1906 { | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
1907 if (hex || unicode != 0) |
7 | 1908 { |
1909 if (!vim_isxdigit(nc)) | |
1910 break; | |
1911 cc = cc * 16 + hex2nr(nc); | |
1912 } | |
1913 else if (octal) | |
1914 { | |
1915 if (nc < '0' || nc > '7') | |
1916 break; | |
1917 cc = cc * 8 + nc - '0'; | |
1918 } | |
1919 else | |
1920 { | |
1921 if (!VIM_ISDIGIT(nc)) | |
1922 break; | |
1923 cc = cc * 10 + nc - '0'; | |
1924 } | |
1925 | |
1926 ++i; | |
1927 } | |
1928 | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
1929 if (cc > 255 && unicode == 0) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1930 cc = 255; // limit range to 0-255 |
7 | 1931 nc = 0; |
1932 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1933 if (hex) // hex: up to two chars |
7 | 1934 { |
1935 if (i >= 2) | |
1936 break; | |
1937 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1938 else if (unicode) // Unicode: up to four or eight chars |
7 | 1939 { |
1940 if ((unicode == 'u' && i >= 4) || (unicode == 'U' && i >= 8)) | |
1941 break; | |
1942 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1943 else if (i >= 3) // decimal or octal: up to three chars |
7 | 1944 break; |
1945 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1946 if (i == 0) // no number entered |
7 | 1947 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1948 if (nc == K_ZERO) // NUL is stored as NL |
7 | 1949 { |
1950 cc = '\n'; | |
1951 nc = 0; | |
1952 } | |
1953 else | |
1954 { | |
1955 cc = nc; | |
1956 nc = 0; | |
1957 } | |
1958 } | |
1959 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1960 if (cc == 0) // NUL is stored as NL |
7 | 1961 cc = '\n'; |
221 | 1962 if (enc_dbcs && (cc & 0xff) == 0) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1963 cc = '?'; // don't accept an illegal DBCS char, the NUL in the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1964 // second byte will cause trouble! |
7 | 1965 |
1966 --no_mapping; | |
1967 #ifdef FEAT_GUI | |
1968 if (gui.in_use) | |
1969 --allow_keys; | |
1970 #endif | |
1971 if (nc) | |
1972 vungetc(nc); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1973 got_int = FALSE; // CTRL-C typed after CTRL-V is not an interrupt |
7 | 1974 return cc; |
1975 } | |
1976 | |
1977 /* | |
1978 * Insert character, taking care of special keys and mod_mask | |
1979 */ | |
1980 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1981 insert_special( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1982 int c, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1983 int allow_modmask, |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1984 int ctrlv) // c was typed after CTRL-V |
7 | 1985 { |
1986 char_u *p; | |
1987 int len; | |
1988 | |
1989 /* | |
1990 * Special function key, translate into "<Key>". Up to the last '>' is | |
1991 * inserted with ins_str(), so as not to replace characters in replace | |
1992 * mode. | |
1993 * Only use mod_mask for special keys, to avoid things like <S-Space>, | |
1994 * unless 'allow_modmask' is TRUE. | |
1995 */ | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1996 #ifdef MACOS_X |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
1997 // Command-key never produces a normal key |
7 | 1998 if (mod_mask & MOD_MASK_CMD) |
1999 allow_modmask = TRUE; | |
2000 #endif | |
2001 if (IS_SPECIAL(c) || (mod_mask && allow_modmask)) | |
2002 { | |
2003 p = get_special_key_name(c, mod_mask); | |
2004 len = (int)STRLEN(p); | |
2005 c = p[len - 1]; | |
2006 if (len > 2) | |
2007 { | |
2008 if (stop_arrow() == FAIL) | |
2009 return; | |
2010 p[len - 1] = NUL; | |
2011 ins_str(p); | |
620 | 2012 AppendToRedobuffLit(p, -1); |
7 | 2013 ctrlv = FALSE; |
2014 } | |
2015 } | |
2016 if (stop_arrow() == OK) | |
2017 insertchar(c, ctrlv ? INSCHAR_CTRLV : 0, -1); | |
2018 } | |
2019 | |
2020 /* | |
2021 * Special characters in this context are those that need processing other | |
2022 * than the simple insertion that can be performed here. This includes ESC | |
2023 * which terminates the insert, and CR/NL which need special processing to | |
2024 * open up a new line. This routine tries to optimize insertions performed by | |
2025 * the "redo", "undo" or "put" commands, so it needs to know when it should | |
2026 * stop and defer processing to the "normal" mechanism. | |
2027 * '0' and '^' are special, because they can be followed by CTRL-D. | |
2028 */ | |
2029 #ifdef EBCDIC | |
2030 # define ISSPECIAL(c) ((c) < ' ' || (c) == '0' || (c) == '^') | |
2031 #else | |
2032 # define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^') | |
2033 #endif | |
2034 | |
3584 | 2035 /* |
2036 * "flags": INSCHAR_FORMAT - force formatting | |
2037 * INSCHAR_CTRLV - char typed just after CTRL-V | |
2038 * INSCHAR_NO_FEX - don't use 'formatexpr' | |
2039 * | |
2040 * NOTE: passes the flags value straight through to internal_format() which, | |
2041 * beside INSCHAR_FORMAT (above), is also looking for these: | |
2042 * INSCHAR_DO_COM - format comments | |
2043 * INSCHAR_COM_LIST - format comments with num list or 2nd line indent | |
2044 */ | |
7 | 2045 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2046 insertchar( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2047 int c, // character to insert or NUL |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2048 int flags, // INSCHAR_FORMAT, etc. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2049 int second_indent) // indent for second line if >= 0 |
7 | 2050 { |
2051 int textwidth; | |
2052 char_u *p; | |
2053 int fo_ins_blank; | |
6667 | 2054 int force_format = flags & INSCHAR_FORMAT; |
2055 | |
2056 textwidth = comp_textwidth(force_format); | |
7 | 2057 fo_ins_blank = has_format_option(FO_INS_BLANK); |
2058 | |
2059 /* | |
2060 * Try to break the line in two or more pieces when: | |
2061 * - Always do this if we have been called to do formatting only. | |
2062 * - Always do this when 'formatoptions' has the 'a' flag and the line | |
2063 * ends in white space. | |
2064 * - Otherwise: | |
2065 * - Don't do this if inserting a blank | |
2066 * - Don't do this if an existing character is being replaced, unless | |
2067 * we're in VREPLACE mode. | |
2068 * - Do this if the cursor is not on the line where insert started | |
2069 * or - 'formatoptions' doesn't have 'l' or the line was not too long | |
2070 * before the insert. | |
2071 * - 'formatoptions' doesn't have 'b' or a blank was inserted at or | |
2072 * before 'textwidth' | |
2073 */ | |
667 | 2074 if (textwidth > 0 |
6667 | 2075 && (force_format |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2076 || (!VIM_ISWHITE(c) |
7 | 2077 && !((State & REPLACE_FLAG) |
2078 && !(State & VREPLACE_FLAG) | |
2079 && *ml_get_cursor() != NUL) | |
2080 && (curwin->w_cursor.lnum != Insstart.lnum | |
2081 || ((!has_format_option(FO_INS_LONG) | |
2082 || Insstart_textlen <= (colnr_T)textwidth) | |
2083 && (!fo_ins_blank | |
2084 || Insstart_blank_vcol <= (colnr_T)textwidth | |
2085 )))))) | |
2086 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2087 // Format with 'formatexpr' when it's set. Use internal formatting |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2088 // when 'formatexpr' isn't set or it returns non-zero. |
667 | 2089 #if defined(FEAT_EVAL) |
6667 | 2090 int do_internal = TRUE; |
2091 colnr_T virtcol = get_nolist_virtcol() | |
2092 + char2cells(c != NUL ? c : gchar_cursor()); | |
2093 | |
2094 if (*curbuf->b_p_fex != NUL && (flags & INSCHAR_NO_FEX) == 0 | |
2095 && (force_format || virtcol > (colnr_T)textwidth)) | |
1000 | 2096 { |
2097 do_internal = (fex_format(curwin->w_cursor.lnum, 1L, c) != 0); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2098 // It may be required to save for undo again, e.g. when setline() |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2099 // was called. |
1000 | 2100 ins_need_undo = TRUE; |
2101 } | |
2102 if (do_internal) | |
667 | 2103 #endif |
2004 | 2104 internal_format(textwidth, second_indent, flags, c == NUL, c); |
667 | 2105 } |
2106 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2107 if (c == NUL) // only formatting was wanted |
7 | 2108 return; |
2109 | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2110 // Check whether this character should end a comment. |
7 | 2111 if (did_ai && (int)c == end_comment_pending) |
2112 { | |
2113 char_u *line; | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2114 char_u lead_end[COM_MAX_LEN]; // end-comment string |
7 | 2115 int middle_len, end_len; |
2116 int i; | |
2117 | |
2118 /* | |
2119 * Need to remove existing (middle) comment leader and insert end | |
2120 * comment leader. First, check what comment leader we can find. | |
2121 */ | |
3562 | 2122 i = get_leader_len(line = ml_get_curline(), &p, FALSE, TRUE); |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2123 if (i > 0 && vim_strchr(p, COM_MIDDLE) != NULL) // Just checking |
7 | 2124 { |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2125 // Skip middle-comment string |
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2126 while (*p && p[-1] != ':') // find end of middle flags |
7 | 2127 ++p; |
2128 middle_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ","); | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2129 // Don't count trailing white space for middle_len |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2130 while (middle_len > 0 && VIM_ISWHITE(lead_end[middle_len - 1])) |
7 | 2131 --middle_len; |
2132 | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2133 // Find the end-comment string |
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2134 while (*p && p[-1] != ':') // find end of end flags |
7 | 2135 ++p; |
2136 end_len = copy_option_part(&p, lead_end, COM_MAX_LEN, ","); | |
2137 | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2138 // Skip white space before the cursor |
7 | 2139 i = curwin->w_cursor.col; |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2140 while (--i >= 0 && VIM_ISWHITE(line[i])) |
7 | 2141 ; |
2142 i++; | |
2143 | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2144 // Skip to before the middle leader |
7 | 2145 i -= middle_len; |
2146 | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2147 // Check some expected things before we go on |
7 | 2148 if (i >= 0 && lead_end[end_len - 1] == end_comment_pending) |
2149 { | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2150 // Backspace over all the stuff we want to replace |
7 | 2151 backspace_until_column(i); |
2152 | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2153 // Insert the end-comment string, except for the last |
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
2154 // character, which will get inserted as normal later. |
7 | 2155 ins_bytes_len(lead_end, end_len - 1); |
2156 } | |
2157 } | |
2158 } | |
2159 end_comment_pending = NUL; | |
2160 | |
2161 did_ai = FALSE; | |
2162 #ifdef FEAT_SMARTINDENT | |
2163 did_si = FALSE; | |
2164 can_si = FALSE; | |
2165 can_si_back = FALSE; | |
2166 #endif | |
2167 | |
2168 /* | |
2169 * If there's any pending input, grab up to INPUT_BUFLEN at once. | |
2170 * This speeds up normal text input considerably. | |
2171 * Don't do this when 'cindent' or 'indentexpr' is set, because we might | |
2172 * need to re-indent at a ':', or any other character (but not what | |
2173 * 'paste' is set).. | |
3390 | 2174 * Don't do this when there an InsertCharPre autocommand is defined, |
2175 * because we need to fire the event for every character. | |
13870
08370aad873d
patch 8.0.1806: InsertCharPre causes problems for autocomplete
Christian Brabandt <cb@256bit.org>
parents:
13788
diff
changeset
|
2176 * Do the check for InsertCharPre before the call to vpeekc() because the |
08370aad873d
patch 8.0.1806: InsertCharPre causes problems for autocomplete
Christian Brabandt <cb@256bit.org>
parents:
13788
diff
changeset
|
2177 * InsertCharPre autocommand could change the input buffer. |
7 | 2178 */ |
2179 #ifdef USE_ON_FLY_SCROLL | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2180 dont_scroll = FALSE; // allow scrolling here |
7 | 2181 #endif |
2182 | |
2183 if ( !ISSPECIAL(c) | |
2184 && (!has_mbyte || (*mb_char2len)(c) == 1) | |
13870
08370aad873d
patch 8.0.1806: InsertCharPre causes problems for autocomplete
Christian Brabandt <cb@256bit.org>
parents:
13788
diff
changeset
|
2185 && !has_insertcharpre() |
7 | 2186 && vpeekc() != NUL |
2187 && !(State & REPLACE_FLAG) | |
2188 #ifdef FEAT_CINDENT | |
2189 && !cindent_on() | |
2190 #endif | |
2191 #ifdef FEAT_RIGHTLEFT | |
2192 && !p_ri | |
2193 #endif | |
13870
08370aad873d
patch 8.0.1806: InsertCharPre causes problems for autocomplete
Christian Brabandt <cb@256bit.org>
parents:
13788
diff
changeset
|
2194 ) |
7 | 2195 { |
2196 #define INPUT_BUFLEN 100 | |
2197 char_u buf[INPUT_BUFLEN + 1]; | |
2198 int i; | |
2199 colnr_T virtcol = 0; | |
2200 | |
2201 buf[0] = c; | |
2202 i = 1; | |
667 | 2203 if (textwidth > 0) |
7 | 2204 virtcol = get_nolist_virtcol(); |
2205 /* | |
2206 * Stop the string when: | |
2207 * - no more chars available | |
2208 * - finding a special character (command key) | |
2209 * - buffer is full | |
2210 * - running into the 'textwidth' boundary | |
2211 * - need to check for abbreviation: A non-word char after a word-char | |
2212 */ | |
2213 while ( (c = vpeekc()) != NUL | |
2214 && !ISSPECIAL(c) | |
2215 && (!has_mbyte || MB_BYTE2LEN_CHECK(c) == 1) | |
2216 && i < INPUT_BUFLEN | |
2217 && (textwidth == 0 | |
2218 || (virtcol += byte2cells(buf[i - 1])) < (colnr_T)textwidth) | |
2219 && !(!no_abbr && !vim_iswordc(c) && vim_iswordc(buf[i - 1]))) | |
2220 { | |
2221 #ifdef FEAT_RIGHTLEFT | |
2222 c = vgetc(); | |
2223 if (p_hkmap && KeyTyped) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2224 c = hkmap(c); // Hebrew mode mapping |
7 | 2225 buf[i++] = c; |
2226 #else | |
2227 buf[i++] = vgetc(); | |
2228 #endif | |
2229 } | |
2230 | |
2231 #ifdef FEAT_DIGRAPHS | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2232 do_digraph(-1); // clear digraphs |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2233 do_digraph(buf[i-1]); // may be the start of a digraph |
7 | 2234 #endif |
2235 buf[i] = NUL; | |
2236 ins_str(buf); | |
2237 if (flags & INSCHAR_CTRLV) | |
2238 { | |
2239 redo_literal(*buf); | |
2240 i = 1; | |
2241 } | |
2242 else | |
2243 i = 0; | |
2244 if (buf[i] != NUL) | |
620 | 2245 AppendToRedobuffLit(buf + i, -1); |
7 | 2246 } |
2247 else | |
2248 { | |
667 | 2249 int cc; |
2250 | |
7 | 2251 if (has_mbyte && (cc = (*mb_char2len)(c)) > 1) |
2252 { | |
2253 char_u buf[MB_MAXBYTES + 1]; | |
2254 | |
2255 (*mb_char2bytes)(c, buf); | |
2256 buf[cc] = NUL; | |
2257 ins_char_bytes(buf, cc); | |
2258 AppendCharToRedobuff(c); | |
2259 } | |
2260 else | |
2261 { | |
2262 ins_char(c); | |
2263 if (flags & INSCHAR_CTRLV) | |
2264 redo_literal(c); | |
2265 else | |
2266 AppendCharToRedobuff(c); | |
2267 } | |
2268 } | |
2269 } | |
2270 | |
2271 /* | |
2272 * Put a character in the redo buffer, for when just after a CTRL-V. | |
2273 */ | |
2274 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2275 redo_literal(int c) |
7 | 2276 { |
2277 char_u buf[10]; | |
2278 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2279 // Only digits need special treatment. Translate them into a string of |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2280 // three digits. |
7 | 2281 if (VIM_ISDIGIT(c)) |
2282 { | |
1872 | 2283 vim_snprintf((char *)buf, sizeof(buf), "%03d", c); |
7 | 2284 AppendToRedobuff(buf); |
2285 } | |
2286 else | |
2287 AppendCharToRedobuff(c); | |
2288 } | |
2289 | |
2290 /* | |
2291 * start_arrow() is called when an arrow key is used in insert mode. | |
484 | 2292 * For undo/redo it resembles hitting the <ESC> key. |
7 | 2293 */ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
2294 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2295 start_arrow( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2296 pos_T *end_insert_pos) // can be NULL |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2297 { |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2298 start_arrow_common(end_insert_pos, TRUE); |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2299 } |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2300 |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2301 /* |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2302 * Like start_arrow() but with end_change argument. |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2303 * Will prepare for redo of CTRL-G U if "end_change" is FALSE. |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2304 */ |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2305 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2306 start_arrow_with_change( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2307 pos_T *end_insert_pos, // can be NULL |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2308 int end_change) // end undoable change |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2309 { |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2310 start_arrow_common(end_insert_pos, end_change); |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2311 if (!end_change) |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2312 { |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2313 AppendCharToRedobuff(Ctrl_G); |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2314 AppendCharToRedobuff('U'); |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2315 } |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2316 } |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2317 |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2318 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2319 start_arrow_common( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2320 pos_T *end_insert_pos, // can be NULL |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2321 int end_change) // end undoable change |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
2322 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2323 if (!arrow_used && end_change) // something has been inserted |
7 | 2324 { |
2325 AppendToRedobuff(ESC_STR); | |
5434 | 2326 stop_insert(end_insert_pos, FALSE, FALSE); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2327 arrow_used = TRUE; // this means we stopped the current insert |
7 | 2328 } |
744 | 2329 #ifdef FEAT_SPELL |
221 | 2330 check_spell_redraw(); |
2331 #endif | |
7 | 2332 } |
2333 | |
744 | 2334 #ifdef FEAT_SPELL |
221 | 2335 /* |
2336 * If we skipped highlighting word at cursor, do it now. | |
2337 * It may be skipped again, thus reset spell_redraw_lnum first. | |
2338 */ | |
2339 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2340 check_spell_redraw(void) |
221 | 2341 { |
2342 if (spell_redraw_lnum != 0) | |
2343 { | |
2344 linenr_T lnum = spell_redraw_lnum; | |
2345 | |
2346 spell_redraw_lnum = 0; | |
15400
ac5542aadd9c
patch 8.1.0708: third argument for redrawWinline() is always FALSE
Bram Moolenaar <Bram@vim.org>
parents:
15382
diff
changeset
|
2347 redrawWinline(curwin, lnum); |
221 | 2348 } |
2349 } | |
484 | 2350 |
221 | 2351 #endif |
2352 | |
7 | 2353 /* |
2354 * stop_arrow() is called before a change is made in insert mode. | |
2355 * If an arrow key has been used, start a new insertion. | |
2356 * Returns FAIL if undo is impossible, shouldn't insert then. | |
2357 */ | |
2358 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2359 stop_arrow(void) |
7 | 2360 { |
2361 if (arrow_used) | |
2362 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2363 Insstart = curwin->w_cursor; // new insertion starts here |
6138 | 2364 if (Insstart.col > Insstart_orig.col && !ins_need_undo) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2365 // Don't update the original insert position when moved to the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2366 // right, except when nothing was inserted yet. |
6138 | 2367 update_Insstart_orig = FALSE; |
2368 Insstart_textlen = (colnr_T)linetabsize(ml_get_curline()); | |
2369 | |
7 | 2370 if (u_save_cursor() == OK) |
2371 { | |
2372 arrow_used = FALSE; | |
2373 ins_need_undo = FALSE; | |
2374 } | |
6138 | 2375 |
7 | 2376 ai_col = 0; |
2377 if (State & VREPLACE_FLAG) | |
2378 { | |
2379 orig_line_count = curbuf->b_ml.ml_line_count; | |
2380 vr_lines_changed = 1; | |
2381 } | |
2382 ResetRedobuff(); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2383 AppendToRedobuff((char_u *)"1i"); // pretend we start an insertion |
613 | 2384 new_insert_skip = 2; |
7 | 2385 } |
2386 else if (ins_need_undo) | |
2387 { | |
2388 if (u_save_cursor() == OK) | |
2389 ins_need_undo = FALSE; | |
2390 } | |
2391 | |
2392 #ifdef FEAT_FOLDING | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2393 // Always open fold at the cursor line when inserting something. |
7 | 2394 foldOpenCursor(); |
2395 #endif | |
2396 | |
2397 return (arrow_used || ins_need_undo ? FAIL : OK); | |
2398 } | |
2399 | |
2400 /* | |
840 | 2401 * Do a few things to stop inserting. |
2402 * "end_insert_pos" is where insert ended. It is NULL when we already jumped | |
2403 * to another window/buffer. | |
7 | 2404 */ |
2405 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2406 stop_insert( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2407 pos_T *end_insert_pos, |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2408 int esc, // called by ins_esc() |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2409 int nomove) // <c-\><c-o>, don't move cursor |
7 | 2410 { |
603 | 2411 int cc; |
2412 char_u *ptr; | |
7 | 2413 |
2414 stop_redo_ins(); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2415 replace_flush(); // abandon replace stack |
7 | 2416 |
2417 /* | |
603 | 2418 * Save the inserted text for later redo with ^@ and CTRL-A. |
2419 * Don't do it when "restart_edit" was set and nothing was inserted, | |
2420 * otherwise CTRL-O w and then <Left> will clear "last_insert". | |
7 | 2421 */ |
603 | 2422 ptr = get_inserted(); |
615 | 2423 if (did_restart_edit == 0 || (ptr != NULL |
2424 && (int)STRLEN(ptr) > new_insert_skip)) | |
603 | 2425 { |
2426 vim_free(last_insert); | |
2427 last_insert = ptr; | |
2428 last_insert_skip = new_insert_skip; | |
2429 } | |
2430 else | |
2431 vim_free(ptr); | |
7 | 2432 |
840 | 2433 if (!arrow_used && end_insert_pos != NULL) |
7 | 2434 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2435 // Auto-format now. It may seem strange to do this when stopping an |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2436 // insertion (or moving the cursor), but it's required when appending |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2437 // a line and having it end in a space. But only do it when something |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2438 // was actually inserted, otherwise undo won't work. |
10 | 2439 if (!ins_need_undo && has_format_option(FO_AUTO)) |
7 | 2440 { |
10 | 2441 pos_T tpos = curwin->w_cursor; |
2442 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2443 // When the cursor is at the end of the line after a space the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2444 // formatting will move it to the following word. Avoid that by |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2445 // moving the cursor onto the space. |
7 | 2446 cc = 'x'; |
2447 if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL) | |
2448 { | |
2449 dec_cursor(); | |
2450 cc = gchar_cursor(); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2451 if (!VIM_ISWHITE(cc)) |
10 | 2452 curwin->w_cursor = tpos; |
7 | 2453 } |
2454 | |
2455 auto_format(TRUE, FALSE); | |
2456 | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2457 if (VIM_ISWHITE(cc)) |
10 | 2458 { |
2459 if (gchar_cursor() != NUL) | |
2460 inc_cursor(); | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
2461 // If the cursor is still at the same character, also keep |
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
2462 // the "coladd". |
10 | 2463 if (gchar_cursor() == NUL |
2464 && curwin->w_cursor.lnum == tpos.lnum | |
2465 && curwin->w_cursor.col == tpos.col) | |
2466 curwin->w_cursor.coladd = tpos.coladd; | |
2467 } | |
7 | 2468 } |
2469 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2470 // If a space was inserted for auto-formatting, remove it now. |
7 | 2471 check_auto_format(TRUE); |
2472 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2473 // If we just did an auto-indent, remove the white space from the end |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2474 // of the line, and put the cursor back. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2475 // Do this when ESC was used or moving the cursor up/down. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2476 // Check for the old position still being valid, just in case the text |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2477 // got changed unexpectedly. |
5434 | 2478 if (!nomove && did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL |
1892 | 2479 && curwin->w_cursor.lnum != end_insert_pos->lnum)) |
2480 && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count) | |
7 | 2481 { |
10 | 2482 pos_T tpos = curwin->w_cursor; |
2483 | |
2484 curwin->w_cursor = *end_insert_pos; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2485 check_cursor_col(); // make sure it is not past the line |
786 | 2486 for (;;) |
2487 { | |
2488 if (gchar_cursor() == NUL && curwin->w_cursor.col > 0) | |
2489 --curwin->w_cursor.col; | |
2490 cc = gchar_cursor(); | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2491 if (!VIM_ISWHITE(cc)) |
786 | 2492 break; |
1892 | 2493 if (del_char(TRUE) == FAIL) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2494 break; // should not happen |
786 | 2495 } |
10 | 2496 if (curwin->w_cursor.lnum != tpos.lnum) |
2497 curwin->w_cursor = tpos; | |
6318 | 2498 else |
2499 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2500 // reset tpos, could have been invalidated in the loop above |
6363 | 2501 tpos = curwin->w_cursor; |
6318 | 2502 tpos.col++; |
2503 if (cc != NUL && gchar_pos(&tpos) == NUL) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2504 ++curwin->w_cursor.col; // put cursor back on the NUL |
6318 | 2505 } |
7 | 2506 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2507 // <C-S-Right> may have started Visual mode, adjust the position for |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2508 // deleted characters. |
7 | 2509 if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum) |
2510 { | |
1872 | 2511 int len = (int)STRLEN(ml_get_curline()); |
2512 | |
2513 if (VIsual.col > len) | |
7 | 2514 { |
1872 | 2515 VIsual.col = len; |
7 | 2516 VIsual.coladd = 0; |
2517 } | |
2518 } | |
2519 } | |
2520 } | |
2521 did_ai = FALSE; | |
2522 #ifdef FEAT_SMARTINDENT | |
2523 did_si = FALSE; | |
2524 can_si = FALSE; | |
2525 can_si_back = FALSE; | |
2526 #endif | |
2527 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2528 // Set '[ and '] to the inserted text. When end_insert_pos is NULL we are |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2529 // now in a different buffer. |
840 | 2530 if (end_insert_pos != NULL) |
2531 { | |
2532 curbuf->b_op_start = Insstart; | |
5680 | 2533 curbuf->b_op_start_orig = Insstart_orig; |
840 | 2534 curbuf->b_op_end = *end_insert_pos; |
2535 } | |
7 | 2536 } |
2537 | |
2538 /* | |
2539 * Set the last inserted text to a single character. | |
2540 * Used for the replace command. | |
2541 */ | |
2542 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2543 set_last_insert(int c) |
7 | 2544 { |
2545 char_u *s; | |
2546 | |
2547 vim_free(last_insert); | |
2548 last_insert = alloc(MB_MAXBYTES * 3 + 5); | |
2549 if (last_insert != NULL) | |
2550 { | |
2551 s = last_insert; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2552 // Use the CTRL-V only when entering a special char |
7 | 2553 if (c < ' ' || c == DEL) |
2554 *s++ = Ctrl_V; | |
2555 s = add_char2buf(c, s); | |
2556 *s++ = ESC; | |
2557 *s++ = NUL; | |
2558 last_insert_skip = 0; | |
2559 } | |
2560 } | |
2561 | |
359 | 2562 #if defined(EXITFREE) || defined(PROTO) |
2563 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2564 free_last_insert(void) |
359 | 2565 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13240
diff
changeset
|
2566 VIM_CLEAR(last_insert); |
359 | 2567 } |
2568 #endif | |
2569 | |
7 | 2570 /* |
2571 * Add character "c" to buffer "s". Escape the special meaning of K_SPECIAL | |
2572 * and CSI. Handle multi-byte characters. | |
2573 * Returns a pointer to after the added bytes. | |
2574 */ | |
2575 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2576 add_char2buf(int c, char_u *s) |
7 | 2577 { |
3549 | 2578 char_u temp[MB_MAXBYTES + 1]; |
7 | 2579 int i; |
2580 int len; | |
2581 | |
2582 len = (*mb_char2bytes)(c, temp); | |
2583 for (i = 0; i < len; ++i) | |
2584 { | |
2585 c = temp[i]; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2586 // Need to escape K_SPECIAL and CSI like in the typeahead buffer. |
7 | 2587 if (c == K_SPECIAL) |
2588 { | |
2589 *s++ = K_SPECIAL; | |
2590 *s++ = KS_SPECIAL; | |
2591 *s++ = KE_FILLER; | |
2592 } | |
2593 #ifdef FEAT_GUI | |
2594 else if (c == CSI) | |
2595 { | |
2596 *s++ = CSI; | |
2597 *s++ = KS_EXTRA; | |
2598 *s++ = (int)KE_CSI; | |
2599 } | |
2600 #endif | |
2601 else | |
2602 *s++ = c; | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
2603 } |
7 | 2604 return s; |
2605 } | |
2606 | |
2607 /* | |
2608 * move cursor to start of line | |
2609 * if flags & BL_WHITE move to first non-white | |
2610 * if flags & BL_SOL move to first non-white if startofline is set, | |
2611 * otherwise keep "curswant" column | |
2612 * if flags & BL_FIX don't leave the cursor on a NUL. | |
2613 */ | |
2614 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2615 beginline(int flags) |
7 | 2616 { |
2617 if ((flags & BL_SOL) && !p_sol) | |
2618 coladvance(curwin->w_curswant); | |
2619 else | |
2620 { | |
2621 curwin->w_cursor.col = 0; | |
2622 curwin->w_cursor.coladd = 0; | |
2623 | |
2624 if (flags & (BL_WHITE | BL_SOL)) | |
2625 { | |
2626 char_u *ptr; | |
2627 | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2628 for (ptr = ml_get_curline(); VIM_ISWHITE(*ptr) |
7 | 2629 && !((flags & BL_FIX) && ptr[1] == NUL); ++ptr) |
2630 ++curwin->w_cursor.col; | |
2631 } | |
2632 curwin->w_set_curswant = TRUE; | |
2633 } | |
2634 } | |
2635 | |
2636 /* | |
2637 * oneright oneleft cursor_down cursor_up | |
2638 * | |
2639 * Move one char {right,left,down,up}. | |
773 | 2640 * Doesn't move onto the NUL past the end of the line, unless it is allowed. |
7 | 2641 * Return OK when successful, FAIL when we hit a line of file boundary. |
2642 */ | |
2643 | |
2644 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2645 oneright(void) |
7 | 2646 { |
2647 char_u *ptr; | |
2648 int l; | |
2649 | |
2650 if (virtual_active()) | |
2651 { | |
2652 pos_T prevpos = curwin->w_cursor; | |
2653 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2654 // Adjust for multi-wide char (excluding TAB) |
7 | 2655 ptr = ml_get_cursor(); |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
2656 coladvance(getviscol() + ((*ptr != TAB |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
2657 && vim_isprintc((*mb_ptr2char)(ptr))) |
7 | 2658 ? ptr2cells(ptr) : 1)); |
2659 curwin->w_set_curswant = TRUE; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2660 // Return OK if the cursor moved, FAIL otherwise (at window edge). |
7 | 2661 return (prevpos.col != curwin->w_cursor.col |
2662 || prevpos.coladd != curwin->w_cursor.coladd) ? OK : FAIL; | |
2663 } | |
2664 | |
2665 ptr = ml_get_cursor(); | |
773 | 2666 if (*ptr == NUL) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2667 return FAIL; // already at the very end |
773 | 2668 |
2669 if (has_mbyte) | |
2670 l = (*mb_ptr2len)(ptr); | |
7 | 2671 else |
773 | 2672 l = 1; |
2673 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2674 // move "l" bytes right, but don't end up on the NUL, unless 'virtualedit' |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2675 // contains "onemore". |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
2676 if (ptr[l] == NUL && (ve_flags & VE_ONEMORE) == 0) |
773 | 2677 return FAIL; |
2678 curwin->w_cursor.col += l; | |
7 | 2679 |
2680 curwin->w_set_curswant = TRUE; | |
2681 return OK; | |
2682 } | |
2683 | |
2684 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2685 oneleft(void) |
7 | 2686 { |
2687 if (virtual_active()) | |
2688 { | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
2689 #ifdef FEAT_LINEBREAK |
7 | 2690 int width; |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
2691 #endif |
7 | 2692 int v = getviscol(); |
2693 | |
2694 if (v == 0) | |
2695 return FAIL; | |
2696 | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
2697 #ifdef FEAT_LINEBREAK |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2698 // We might get stuck on 'showbreak', skip over it. |
7 | 2699 width = 1; |
2700 for (;;) | |
2701 { | |
2702 coladvance(v - width); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2703 // getviscol() is slow, skip it when 'showbreak' is empty, |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2704 // 'breakindent' is not set and there are no multi-byte |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2705 // characters |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18534
diff
changeset
|
2706 if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
2707 && !has_mbyte) || getviscol() < v) |
7 | 2708 break; |
2709 ++width; | |
2710 } | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
2711 #else |
7 | 2712 coladvance(v - 1); |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
2713 #endif |
7 | 2714 |
2715 if (curwin->w_cursor.coladd == 1) | |
2716 { | |
2717 char_u *ptr; | |
2718 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2719 // Adjust for multi-wide char (not a TAB) |
7 | 2720 ptr = ml_get_cursor(); |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
2721 if (*ptr != TAB && vim_isprintc((*mb_ptr2char)(ptr)) |
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
2722 && ptr2cells(ptr) > 1) |
7 | 2723 curwin->w_cursor.coladd = 0; |
2724 } | |
2725 | |
2726 curwin->w_set_curswant = TRUE; | |
2727 return OK; | |
2728 } | |
2729 | |
2730 if (curwin->w_cursor.col == 0) | |
2731 return FAIL; | |
2732 | |
2733 curwin->w_set_curswant = TRUE; | |
2734 --curwin->w_cursor.col; | |
2735 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2736 // if the character on the left of the current cursor is a multi-byte |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2737 // character, move to its first byte |
7 | 2738 if (has_mbyte) |
2739 mb_adjust_cursor(); | |
2740 return OK; | |
2741 } | |
2742 | |
2743 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2744 cursor_up( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2745 long n, |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2746 int upd_topline) // When TRUE: update topline |
7 | 2747 { |
2748 linenr_T lnum; | |
2749 | |
2750 if (n > 0) | |
2751 { | |
2752 lnum = curwin->w_cursor.lnum; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2753 // This fails if the cursor is already in the first line or the count |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2754 // is larger than the line number and '-' is in 'cpoptions' |
161 | 2755 if (lnum <= 1 || (n >= lnum && vim_strchr(p_cpo, CPO_MINUS) != NULL)) |
7 | 2756 return FAIL; |
2757 if (n >= lnum) | |
2758 lnum = 1; | |
2759 else | |
2760 #ifdef FEAT_FOLDING | |
2761 if (hasAnyFolding(curwin)) | |
2762 { | |
2763 /* | |
2764 * Count each sequence of folded lines as one logical line. | |
2765 */ | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2766 // go to the start of the current fold |
7 | 2767 (void)hasFolding(lnum, &lnum, NULL); |
2768 | |
2769 while (n--) | |
2770 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2771 // move up one line |
7 | 2772 --lnum; |
2773 if (lnum <= 1) | |
2774 break; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2775 // If we entered a fold, move to the beginning, unless in |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2776 // Insert mode or when 'foldopen' contains "all": it will open |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2777 // in a moment. |
7 | 2778 if (n > 0 || !((State & INSERT) || (fdo_flags & FDO_ALL))) |
2779 (void)hasFolding(lnum, &lnum, NULL); | |
2780 } | |
2781 if (lnum < 1) | |
2782 lnum = 1; | |
2783 } | |
2784 else | |
2785 #endif | |
2786 lnum -= n; | |
2787 curwin->w_cursor.lnum = lnum; | |
2788 } | |
2789 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2790 // try to advance to the column we want to be at |
7 | 2791 coladvance(curwin->w_curswant); |
2792 | |
2793 if (upd_topline) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2794 update_topline(); // make sure curwin->w_topline is valid |
7 | 2795 |
2796 return OK; | |
2797 } | |
2798 | |
2799 /* | |
2800 * Cursor down a number of logical lines. | |
2801 */ | |
2802 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2803 cursor_down( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2804 long n, |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2805 int upd_topline) // When TRUE: update topline |
7 | 2806 { |
2807 linenr_T lnum; | |
2808 | |
2809 if (n > 0) | |
2810 { | |
2811 lnum = curwin->w_cursor.lnum; | |
2812 #ifdef FEAT_FOLDING | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2813 // Move to last line of fold, will fail if it's the end-of-file. |
7 | 2814 (void)hasFolding(lnum, NULL, &lnum); |
2815 #endif | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2816 // This fails if the cursor is already in the last line or would move |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2817 // beyond the last line and '-' is in 'cpoptions' |
161 | 2818 if (lnum >= curbuf->b_ml.ml_line_count |
2819 || (lnum + n > curbuf->b_ml.ml_line_count | |
2820 && vim_strchr(p_cpo, CPO_MINUS) != NULL)) | |
7 | 2821 return FAIL; |
2822 if (lnum + n >= curbuf->b_ml.ml_line_count) | |
2823 lnum = curbuf->b_ml.ml_line_count; | |
2824 else | |
2825 #ifdef FEAT_FOLDING | |
2826 if (hasAnyFolding(curwin)) | |
2827 { | |
2828 linenr_T last; | |
2829 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2830 // count each sequence of folded lines as one logical line |
7 | 2831 while (n--) |
2832 { | |
2833 if (hasFolding(lnum, NULL, &last)) | |
2834 lnum = last + 1; | |
2835 else | |
2836 ++lnum; | |
2837 if (lnum >= curbuf->b_ml.ml_line_count) | |
2838 break; | |
2839 } | |
2840 if (lnum > curbuf->b_ml.ml_line_count) | |
2841 lnum = curbuf->b_ml.ml_line_count; | |
2842 } | |
2843 else | |
2844 #endif | |
2845 lnum += n; | |
2846 curwin->w_cursor.lnum = lnum; | |
2847 } | |
2848 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2849 // try to advance to the column we want to be at |
7 | 2850 coladvance(curwin->w_curswant); |
2851 | |
2852 if (upd_topline) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2853 update_topline(); // make sure curwin->w_topline is valid |
7 | 2854 |
2855 return OK; | |
2856 } | |
2857 | |
2858 /* | |
2859 * Stuff the last inserted text in the read buffer. | |
2860 * Last_insert actually is a copy of the redo buffer, so we | |
2861 * first have to remove the command. | |
2862 */ | |
2863 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2864 stuff_inserted( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2865 int c, // Command character to be inserted |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2866 long count, // Repeat this many times |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2867 int no_esc) // Don't add an ESC at the end |
7 | 2868 { |
2869 char_u *esc_ptr; | |
2870 char_u *ptr; | |
2871 char_u *last_ptr; | |
2872 char_u last = NUL; | |
2873 | |
2874 ptr = get_last_insert(); | |
2875 if (ptr == NULL) | |
2876 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15440
diff
changeset
|
2877 emsg(_(e_noinstext)); |
7 | 2878 return FAIL; |
2879 } | |
2880 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2881 // may want to stuff the command character, to start Insert mode |
7 | 2882 if (c != NUL) |
2883 stuffcharReadbuff(c); | |
2884 if ((esc_ptr = (char_u *)vim_strrchr(ptr, ESC)) != NULL) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2885 *esc_ptr = NUL; // remove the ESC |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2886 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2887 // when the last char is either "0" or "^" it will be quoted if no ESC |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2888 // comes after it OR if it will inserted more than once and "ptr" |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2889 // starts with ^D. -- Acevedo |
7 | 2890 last_ptr = (esc_ptr ? esc_ptr : ptr + STRLEN(ptr)) - 1; |
2891 if (last_ptr >= ptr && (*last_ptr == '0' || *last_ptr == '^') | |
2892 && (no_esc || (*ptr == Ctrl_D && count > 1))) | |
2893 { | |
2894 last = *last_ptr; | |
2895 *last_ptr = NUL; | |
2896 } | |
2897 | |
2898 do | |
2899 { | |
2900 stuffReadbuff(ptr); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2901 // a trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^" |
7 | 2902 if (last) |
2903 stuffReadbuff((char_u *)(last == '0' | |
2904 ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0") | |
2905 : IF_EB("\026^", CTRL_V_STR "^"))); | |
2906 } | |
2907 while (--count > 0); | |
2908 | |
2909 if (last) | |
2910 *last_ptr = last; | |
2911 | |
2912 if (esc_ptr != NULL) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2913 *esc_ptr = ESC; // put the ESC back |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2914 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2915 // may want to stuff a trailing ESC, to get out of Insert mode |
7 | 2916 if (!no_esc) |
2917 stuffcharReadbuff(ESC); | |
2918 | |
2919 return OK; | |
2920 } | |
2921 | |
2922 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2923 get_last_insert(void) |
7 | 2924 { |
2925 if (last_insert == NULL) | |
2926 return NULL; | |
2927 return last_insert + last_insert_skip; | |
2928 } | |
2929 | |
2930 /* | |
2931 * Get last inserted string, and remove trailing <Esc>. | |
2932 * Returns pointer to allocated memory (must be freed) or NULL. | |
2933 */ | |
2934 char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2935 get_last_insert_save(void) |
7 | 2936 { |
2937 char_u *s; | |
2938 int len; | |
2939 | |
2940 if (last_insert == NULL) | |
2941 return NULL; | |
2942 s = vim_strsave(last_insert + last_insert_skip); | |
2943 if (s != NULL) | |
2944 { | |
2945 len = (int)STRLEN(s); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2946 if (len > 0 && s[len - 1] == ESC) // remove trailing ESC |
7 | 2947 s[len - 1] = NUL; |
2948 } | |
2949 return s; | |
2950 } | |
2951 | |
2952 /* | |
2953 * Check the word in front of the cursor for an abbreviation. | |
2954 * Called when the non-id character "c" has been entered. | |
2955 * When an abbreviation is recognized it is removed from the text and | |
2956 * the replacement string is inserted in typebuf.tb_buf[], followed by "c". | |
2957 */ | |
2958 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2959 echeck_abbr(int c) |
7 | 2960 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2961 // Don't check for abbreviation in paste mode, when disabled and just |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2962 // after moving around with cursor keys. |
7 | 2963 if (p_paste || no_abbr || arrow_used) |
2964 return FALSE; | |
2965 | |
2966 return check_abbr(c, ml_get_curline(), curwin->w_cursor.col, | |
2967 curwin->w_cursor.lnum == Insstart.lnum ? Insstart.col : 0); | |
2968 } | |
2969 | |
2970 /* | |
2971 * replace-stack functions | |
2972 * | |
2973 * When replacing characters, the replaced characters are remembered for each | |
2974 * new character. This is used to re-insert the old text when backspacing. | |
2975 * | |
2976 * There is a NUL headed list of characters for each character that is | |
2977 * currently in the file after the insertion point. When BS is used, one NUL | |
2978 * headed list is put back for the deleted character. | |
2979 * | |
2980 * For a newline, there are two NUL headed lists. One contains the characters | |
2981 * that the NL replaced. The extra one stores the characters after the cursor | |
2982 * that were deleted (always white space). | |
2983 * | |
2984 * Replace_offset is normally 0, in which case replace_push will add a new | |
2985 * character at the end of the stack. If replace_offset is not 0, that many | |
2986 * characters will be left on the stack above the newly inserted character. | |
2987 */ | |
2988 | |
298 | 2989 static char_u *replace_stack = NULL; |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2990 static long replace_stack_nr = 0; // next entry in replace stack |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2991 static long replace_stack_len = 0; // max. number of entries |
7 | 2992 |
2993 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2994 replace_push( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2995 int c) // character that is replaced (NUL is none) |
7 | 2996 { |
2997 char_u *p; | |
2998 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
2999 if (replace_stack_nr < replace_offset) // nothing to do |
7 | 3000 return; |
3001 if (replace_stack_len <= replace_stack_nr) | |
3002 { | |
3003 replace_stack_len += 50; | |
16904
9138e2c60bf1
patch 8.1.1453: popup window "moved" property not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3004 p = ALLOC_MULT(char_u, replace_stack_len); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3005 if (p == NULL) // out of memory |
7 | 3006 { |
3007 replace_stack_len -= 50; | |
3008 return; | |
3009 } | |
3010 if (replace_stack != NULL) | |
3011 { | |
3012 mch_memmove(p, replace_stack, | |
3013 (size_t)(replace_stack_nr * sizeof(char_u))); | |
3014 vim_free(replace_stack); | |
3015 } | |
3016 replace_stack = p; | |
3017 } | |
3018 p = replace_stack + replace_stack_nr - replace_offset; | |
3019 if (replace_offset) | |
3020 mch_memmove(p + 1, p, (size_t)(replace_offset * sizeof(char_u))); | |
3021 *p = c; | |
3022 ++replace_stack_nr; | |
3023 } | |
3024 | |
1470 | 3025 /* |
3026 * Push a character onto the replace stack. Handles a multi-byte character in | |
3027 * reverse byte order, so that the first byte is popped off first. | |
3028 * Return the number of bytes done (includes composing characters). | |
3029 */ | |
3030 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3031 replace_push_mb(char_u *p) |
1470 | 3032 { |
3033 int l = (*mb_ptr2len)(p); | |
3034 int j; | |
3035 | |
3036 for (j = l - 1; j >= 0; --j) | |
3037 replace_push(p[j]); | |
3038 return l; | |
3039 } | |
3040 | |
7 | 3041 /* |
3042 * Pop one item from the replace stack. | |
3043 * return -1 if stack empty | |
3044 * return replaced character or NUL otherwise | |
3045 */ | |
3046 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3047 replace_pop(void) |
7 | 3048 { |
3049 if (replace_stack_nr == 0) | |
3050 return -1; | |
3051 return (int)replace_stack[--replace_stack_nr]; | |
3052 } | |
3053 | |
3054 /* | |
3055 * Join the top two items on the replace stack. This removes to "off"'th NUL | |
3056 * encountered. | |
3057 */ | |
18265
fe5afdc03bd2
patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
3058 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3059 replace_join( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3060 int off) // offset for which NUL to remove |
7 | 3061 { |
3062 int i; | |
3063 | |
3064 for (i = replace_stack_nr; --i >= 0; ) | |
3065 if (replace_stack[i] == NUL && off-- <= 0) | |
3066 { | |
3067 --replace_stack_nr; | |
3068 mch_memmove(replace_stack + i, replace_stack + i + 1, | |
3069 (size_t)(replace_stack_nr - i)); | |
3070 return; | |
3071 } | |
3072 } | |
3073 | |
3074 /* | |
3075 * Pop bytes from the replace stack until a NUL is found, and insert them | |
3076 * before the cursor. Can only be used in REPLACE or VREPLACE mode. | |
3077 */ | |
3078 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3079 replace_pop_ins(void) |
7 | 3080 { |
3081 int cc; | |
3082 int oldState = State; | |
3083 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3084 State = NORMAL; // don't want REPLACE here |
7 | 3085 while ((cc = replace_pop()) > 0) |
3086 { | |
3087 mb_replace_pop_ins(cc); | |
3088 dec_cursor(); | |
3089 } | |
3090 State = oldState; | |
3091 } | |
3092 | |
3093 /* | |
3094 * Insert bytes popped from the replace stack. "cc" is the first byte. If it | |
3095 * indicates a multi-byte char, pop the other bytes too. | |
3096 */ | |
3097 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3098 mb_replace_pop_ins(int cc) |
7 | 3099 { |
3100 int n; | |
3549 | 3101 char_u buf[MB_MAXBYTES + 1]; |
7 | 3102 int i; |
3103 int c; | |
3104 | |
3105 if (has_mbyte && (n = MB_BYTE2LEN(cc)) > 1) | |
3106 { | |
3107 buf[0] = cc; | |
3108 for (i = 1; i < n; ++i) | |
3109 buf[i] = replace_pop(); | |
3110 ins_bytes_len(buf, n); | |
3111 } | |
3112 else | |
3113 ins_char(cc); | |
3114 | |
3115 if (enc_utf8) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3116 // Handle composing chars. |
7 | 3117 for (;;) |
3118 { | |
3119 c = replace_pop(); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3120 if (c == -1) // stack empty |
7 | 3121 break; |
3122 if ((n = MB_BYTE2LEN(c)) == 1) | |
3123 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3124 // Not a multi-byte char, put it back. |
7 | 3125 replace_push(c); |
3126 break; | |
3127 } | |
3128 else | |
3129 { | |
3130 buf[0] = c; | |
3131 for (i = 1; i < n; ++i) | |
3132 buf[i] = replace_pop(); | |
3133 if (utf_iscomposing(utf_ptr2char(buf))) | |
3134 ins_bytes_len(buf, n); | |
3135 else | |
3136 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3137 // Not a composing char, put it back. |
7 | 3138 for (i = n - 1; i >= 0; --i) |
3139 replace_push(buf[i]); | |
3140 break; | |
3141 } | |
3142 } | |
3143 } | |
3144 } | |
3145 | |
3146 /* | |
3147 * make the replace stack empty | |
3148 * (called when exiting replace mode) | |
3149 */ | |
3150 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3151 replace_flush(void) |
7 | 3152 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13240
diff
changeset
|
3153 VIM_CLEAR(replace_stack); |
7 | 3154 replace_stack_len = 0; |
3155 replace_stack_nr = 0; | |
3156 } | |
3157 | |
3158 /* | |
3159 * Handle doing a BS for one character. | |
3160 * cc < 0: replace stack empty, just move cursor | |
3161 * cc == 0: character was inserted, delete it | |
3162 * cc > 0: character was replaced, put cc (first byte of original char) back | |
3163 * and check for more characters to be put back | |
1782 | 3164 * When "limit_col" is >= 0, don't delete before this column. Matters when |
3165 * using composing characters, use del_char_after_col() instead of del_char(). | |
7 | 3166 */ |
3167 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3168 replace_do_bs(int limit_col) |
7 | 3169 { |
3170 int cc; | |
3171 int orig_len = 0; | |
3172 int ins_len; | |
3173 int orig_vcols = 0; | |
3174 colnr_T start_vcol; | |
3175 char_u *p; | |
3176 int i; | |
3177 int vcol; | |
3178 | |
3179 cc = replace_pop(); | |
3180 if (cc > 0) | |
3181 { | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3182 #ifdef FEAT_PROP_POPUP |
15382
87a0e3c3734c
patch 8.1.0699: compiler warning for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents:
15377
diff
changeset
|
3183 size_t len_before = 0; // init to shut up GCC |
15349
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3184 |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3185 if (curbuf->b_has_textprop) |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3186 { |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3187 // Do not adjust text properties for individual delete and insert |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3188 // operations, do it afterwards on the resulting text. |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3189 len_before = STRLEN(ml_get_curline()); |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3190 ++text_prop_frozen; |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3191 } |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3192 #endif |
7 | 3193 if (State & VREPLACE_FLAG) |
3194 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3195 // Get the number of screen cells used by the character we are |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3196 // going to delete. |
7 | 3197 getvcol(curwin, &curwin->w_cursor, NULL, &start_vcol, NULL); |
3198 orig_vcols = chartabsize(ml_get_cursor(), start_vcol); | |
3199 } | |
3200 if (has_mbyte) | |
3201 { | |
1782 | 3202 (void)del_char_after_col(limit_col); |
7 | 3203 if (State & VREPLACE_FLAG) |
835 | 3204 orig_len = (int)STRLEN(ml_get_cursor()); |
7 | 3205 replace_push(cc); |
3206 } | |
3207 else | |
3208 { | |
3209 pchar_cursor(cc); | |
3210 if (State & VREPLACE_FLAG) | |
835 | 3211 orig_len = (int)STRLEN(ml_get_cursor()) - 1; |
7 | 3212 } |
3213 replace_pop_ins(); | |
3214 | |
3215 if (State & VREPLACE_FLAG) | |
3216 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3217 // Get the number of screen cells used by the inserted characters |
7 | 3218 p = ml_get_cursor(); |
835 | 3219 ins_len = (int)STRLEN(p) - orig_len; |
7 | 3220 vcol = start_vcol; |
3221 for (i = 0; i < ins_len; ++i) | |
3222 { | |
3223 vcol += chartabsize(p + i, vcol); | |
474 | 3224 i += (*mb_ptr2len)(p) - 1; |
7 | 3225 } |
3226 vcol -= start_vcol; | |
3227 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3228 // Delete spaces that were inserted after the cursor to keep the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3229 // text aligned. |
7 | 3230 curwin->w_cursor.col += ins_len; |
3231 while (vcol > orig_vcols && gchar_cursor() == ' ') | |
3232 { | |
3233 del_char(FALSE); | |
3234 ++orig_vcols; | |
3235 } | |
3236 curwin->w_cursor.col -= ins_len; | |
3237 } | |
3238 | |
15349
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3239 // mark the buffer as changed and prepare for displaying |
7 | 3240 changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col); |
15349
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3241 |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
3242 #ifdef FEAT_PROP_POPUP |
15349
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3243 if (curbuf->b_has_textprop) |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3244 { |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3245 size_t len_now = STRLEN(ml_get_curline()); |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3246 |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3247 --text_prop_frozen; |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3248 adjust_prop_columns(curwin->w_cursor.lnum, curwin->w_cursor.col, |
16714
ba592f30c082
patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents:
16698
diff
changeset
|
3249 (int)(len_now - len_before), 0); |
15349
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3250 } |
6abee072b93c
patch 8.1.0682: text properties not adjusted when backspacing replaced text
Bram Moolenaar <Bram@vim.org>
parents:
15347
diff
changeset
|
3251 #endif |
7 | 3252 } |
3253 else if (cc == 0) | |
1782 | 3254 (void)del_char_after_col(limit_col); |
7 | 3255 } |
3256 | |
3257 #if defined(FEAT_RIGHTLEFT) || defined(PROTO) | |
3258 /* | |
3259 * Map Hebrew keyboard when in hkmap mode. | |
3260 */ | |
3261 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3262 hkmap(int c) |
7 | 3263 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3264 if (p_hkmapp) // phonetic mapping, by Ilya Dogolazky |
7 | 3265 { |
3266 enum {hALEF=0, BET, GIMEL, DALET, HEI, VAV, ZAIN, HET, TET, IUD, | |
3267 KAFsofit, hKAF, LAMED, MEMsofit, MEM, NUNsofit, NUN, SAMEH, AIN, | |
3268 PEIsofit, PEI, ZADIsofit, ZADI, KOF, RESH, hSHIN, TAV}; | |
3269 static char_u map[26] = | |
3270 {(char_u)hALEF/*a*/, (char_u)BET /*b*/, (char_u)hKAF /*c*/, | |
3271 (char_u)DALET/*d*/, (char_u)-1 /*e*/, (char_u)PEIsofit/*f*/, | |
3272 (char_u)GIMEL/*g*/, (char_u)HEI /*h*/, (char_u)IUD /*i*/, | |
3273 (char_u)HET /*j*/, (char_u)KOF /*k*/, (char_u)LAMED /*l*/, | |
3274 (char_u)MEM /*m*/, (char_u)NUN /*n*/, (char_u)SAMEH /*o*/, | |
3275 (char_u)PEI /*p*/, (char_u)-1 /*q*/, (char_u)RESH /*r*/, | |
3276 (char_u)ZAIN /*s*/, (char_u)TAV /*t*/, (char_u)TET /*u*/, | |
3277 (char_u)VAV /*v*/, (char_u)hSHIN/*w*/, (char_u)-1 /*x*/, | |
3278 (char_u)AIN /*y*/, (char_u)ZADI /*z*/}; | |
3279 | |
3280 if (c == 'N' || c == 'M' || c == 'P' || c == 'C' || c == 'Z') | |
3281 return (int)(map[CharOrd(c)] - 1 + p_aleph); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3282 // '-1'='sofit' |
7 | 3283 else if (c == 'x') |
3284 return 'X'; | |
3285 else if (c == 'q') | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3286 return '\''; // {geresh}={'} |
7 | 3287 else if (c == 246) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3288 return ' '; // \"o --> ' ' for a german keyboard |
7 | 3289 else if (c == 228) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3290 return ' '; // \"a --> ' ' -- / -- |
7 | 3291 else if (c == 252) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3292 return ' '; // \"u --> ' ' -- / -- |
7 | 3293 #ifdef EBCDIC |
3294 else if (islower(c)) | |
3295 #else | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3296 // NOTE: islower() does not do the right thing for us on Linux so we |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3297 // do this the same was as 5.7 and previous, so it works correctly on |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3298 // all systems. Specifically, the e.g. Delete and Arrow keys are |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3299 // munged and won't work if e.g. searching for Hebrew text. |
7 | 3300 else if (c >= 'a' && c <= 'z') |
3301 #endif | |
3302 return (int)(map[CharOrdLow(c)] + p_aleph); | |
3303 else | |
3304 return c; | |
3305 } | |
3306 else | |
3307 { | |
3308 switch (c) | |
3309 { | |
3310 case '`': return ';'; | |
3311 case '/': return '.'; | |
3312 case '\'': return ','; | |
3313 case 'q': return '/'; | |
3314 case 'w': return '\''; | |
3315 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3316 // Hebrew letters - set offset from 'a' |
7 | 3317 case ',': c = '{'; break; |
3318 case '.': c = 'v'; break; | |
3319 case ';': c = 't'; break; | |
3320 default: { | |
3321 static char str[] = "zqbcxlsjphmkwonu ydafe rig"; | |
3322 | |
3323 #ifdef EBCDIC | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3324 // see note about islower() above |
7 | 3325 if (!islower(c)) |
3326 #else | |
3327 if (c < 'a' || c > 'z') | |
3328 #endif | |
3329 return c; | |
3330 c = str[CharOrdLow(c)]; | |
3331 break; | |
3332 } | |
3333 } | |
3334 | |
3335 return (int)(CharOrdLow(c) + p_aleph); | |
3336 } | |
3337 } | |
3338 #endif | |
3339 | |
3340 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3341 ins_reg(void) |
7 | 3342 { |
3343 int need_redraw = FALSE; | |
3344 int regname; | |
3345 int literally = 0; | |
844 | 3346 int vis_active = VIsual_active; |
7 | 3347 |
3348 /* | |
3349 * If we are going to wait for a character, show a '"'. | |
3350 */ | |
3351 pc_status = PC_STATUS_UNSET; | |
3352 if (redrawing() && !char_avail()) | |
3353 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3354 // may need to redraw when no more chars available now |
661 | 3355 ins_redraw(FALSE); |
7 | 3356 |
3357 edit_putchar('"', TRUE); | |
3358 #ifdef FEAT_CMDL_INFO | |
3359 add_to_showcmd_c(Ctrl_R); | |
3360 #endif | |
3361 } | |
3362 | |
3363 #ifdef USE_ON_FLY_SCROLL | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3364 dont_scroll = TRUE; // disallow scrolling here |
7 | 3365 #endif |
3366 | |
3367 /* | |
3368 * Don't map the register name. This also prevents the mode message to be | |
3369 * deleted when ESC is hit. | |
3370 */ | |
3371 ++no_mapping; | |
18709
ac08c7ad9d37
patch 8.1.2346: CTRL-R CTRL-R doesn't work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3372 ++allow_keys; |
1389 | 3373 regname = plain_vgetc(); |
7 | 3374 LANGMAP_ADJUST(regname, TRUE); |
3375 if (regname == Ctrl_R || regname == Ctrl_O || regname == Ctrl_P) | |
3376 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3377 // Get a third key for literal register insertion |
7 | 3378 literally = regname; |
3379 #ifdef FEAT_CMDL_INFO | |
3380 add_to_showcmd_c(literally); | |
3381 #endif | |
1389 | 3382 regname = plain_vgetc(); |
7 | 3383 LANGMAP_ADJUST(regname, TRUE); |
3384 } | |
3385 --no_mapping; | |
18709
ac08c7ad9d37
patch 8.1.2346: CTRL-R CTRL-R doesn't work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3386 --allow_keys; |
7 | 3387 |
3388 #ifdef FEAT_EVAL | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3389 // Don't call u_sync() while typing the expression or giving an error |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3390 // message for it. Only call it explicitly. |
7 | 3391 ++no_u_sync; |
3392 if (regname == '=') | |
3393 { | |
15569
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3394 pos_T curpos = curwin->w_cursor; |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3395 # ifdef HAVE_INPUT_METHOD |
7 | 3396 int im_on = im_get_status(); |
133 | 3397 # endif |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3398 // Sync undo when evaluating the expression calls setline() or |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3399 // append(), so that it can be undone separately. |
5120
6e611380b4cf
updated for version 7.3.1303
Bram Moolenaar <bram@vim.org>
parents:
5094
diff
changeset
|
3400 u_sync_once = 2; |
5018
d6a7dea44a86
updated for version 7.3.1253
Bram Moolenaar <bram@vim.org>
parents:
4909
diff
changeset
|
3401 |
7 | 3402 regname = get_expr_register(); |
15569
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3403 |
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3404 // Cursor may be moved back a column. |
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3405 curwin->w_cursor = curpos; |
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3406 check_cursor(); |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3407 # ifdef HAVE_INPUT_METHOD |
15569
43fa814a7977
patch 8.1.0792: bad display if opening cmdline window from Insert completion
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
3408 // Restore the Input Method. |
7 | 3409 if (im_on) |
3410 im_set_active(TRUE); | |
133 | 3411 # endif |
7 | 3412 } |
140 | 3413 if (regname == NUL || !valid_yank_reg(regname, FALSE)) |
3414 { | |
6949 | 3415 vim_beep(BO_REG); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3416 need_redraw = TRUE; // remove the '"' |
140 | 3417 } |
7 | 3418 else |
3419 { | |
3420 #endif | |
3421 if (literally == Ctrl_O || literally == Ctrl_P) | |
3422 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3423 // Append the command to the redo buffer. |
7 | 3424 AppendCharToRedobuff(Ctrl_R); |
3425 AppendCharToRedobuff(literally); | |
3426 AppendCharToRedobuff(regname); | |
3427 | |
22176
6941d3205be9
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
22095
diff
changeset
|
3428 do_put(regname, NULL, BACKWARD, 1L, |
7 | 3429 (literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND); |
3430 } | |
3431 else if (insert_reg(regname, literally) == FAIL) | |
3432 { | |
6949 | 3433 vim_beep(BO_REG); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3434 need_redraw = TRUE; // remove the '"' |
7 | 3435 } |
133 | 3436 else if (stop_insert_mode) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3437 // When the '=' register was used and a function was invoked that |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3438 // did ":stopinsert" then stuff_empty() returns FALSE but we won't |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3439 // insert anything, need to remove the '"' |
133 | 3440 need_redraw = TRUE; |
3441 | |
7 | 3442 #ifdef FEAT_EVAL |
3443 } | |
3444 --no_u_sync; | |
5120
6e611380b4cf
updated for version 7.3.1303
Bram Moolenaar <bram@vim.org>
parents:
5094
diff
changeset
|
3445 if (u_sync_once == 1) |
6e611380b4cf
updated for version 7.3.1303
Bram Moolenaar <bram@vim.org>
parents:
5094
diff
changeset
|
3446 ins_need_undo = TRUE; |
6e611380b4cf
updated for version 7.3.1303
Bram Moolenaar <bram@vim.org>
parents:
5094
diff
changeset
|
3447 u_sync_once = 0; |
7 | 3448 #endif |
3449 #ifdef FEAT_CMDL_INFO | |
3450 clear_showcmd(); | |
3451 #endif | |
3452 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3453 // If the inserted register is empty, we need to remove the '"' |
7 | 3454 if (need_redraw || stuff_empty()) |
3455 edit_unputchar(); | |
844 | 3456 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3457 // Disallow starting Visual mode here, would get a weird mode. |
844 | 3458 if (!vis_active && VIsual_active) |
3459 end_visual_mode(); | |
7 | 3460 } |
3461 | |
3462 /* | |
3463 * CTRL-G commands in Insert mode. | |
3464 */ | |
3465 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3466 ins_ctrl_g(void) |
7 | 3467 { |
3468 int c; | |
3469 | |
17809
59f8948b7590
patch 8.1.1901: the +insert_expand feature is not always available
Bram Moolenaar <Bram@vim.org>
parents:
17775
diff
changeset
|
3470 // Right after CTRL-X the cursor will be after the ruler. |
7 | 3471 setcursor(); |
3472 | |
3473 /* | |
3474 * Don't map the second key. This also prevents the mode message to be | |
3475 * deleted when ESC is hit. | |
3476 */ | |
3477 ++no_mapping; | |
18709
ac08c7ad9d37
patch 8.1.2346: CTRL-R CTRL-R doesn't work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3478 ++allow_keys; |
1389 | 3479 c = plain_vgetc(); |
7 | 3480 --no_mapping; |
18709
ac08c7ad9d37
patch 8.1.2346: CTRL-R CTRL-R doesn't work with modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18671
diff
changeset
|
3481 --allow_keys; |
7 | 3482 switch (c) |
3483 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3484 // CTRL-G k and CTRL-G <Up>: cursor up to Insstart.col |
7 | 3485 case K_UP: |
3486 case Ctrl_K: | |
3487 case 'k': ins_up(TRUE); | |
3488 break; | |
3489 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3490 // CTRL-G j and CTRL-G <Down>: cursor down to Insstart.col |
7 | 3491 case K_DOWN: |
3492 case Ctrl_J: | |
3493 case 'j': ins_down(TRUE); | |
3494 break; | |
3495 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3496 // CTRL-G u: start new undoable edit |
825 | 3497 case 'u': u_sync(TRUE); |
7 | 3498 ins_need_undo = TRUE; |
626 | 3499 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3500 // Need to reset Insstart, esp. because a BS that joins |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3501 // a line to the previous one must save for undo. |
5680 | 3502 update_Insstart_orig = FALSE; |
626 | 3503 Insstart = curwin->w_cursor; |
7 | 3504 break; |
3505 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3506 // CTRL-G U: do not break undo with the next char |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
3507 case 'U': |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3508 // Allow one left/right cursor movement with the next char, |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3509 // without breaking undo. |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
3510 dont_sync_undo = MAYBE; |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
3511 break; |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
3512 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3513 // Unknown CTRL-G command, reserved for future expansion. |
6949 | 3514 default: vim_beep(BO_CTRLG); |
7 | 3515 } |
3516 } | |
3517 | |
3518 /* | |
449 | 3519 * CTRL-^ in Insert mode. |
3520 */ | |
3521 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3522 ins_ctrl_hat(void) |
449 | 3523 { |
782 | 3524 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE)) |
449 | 3525 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3526 // ":lmap" mappings exists, Toggle use of ":lmap" mappings. |
449 | 3527 if (State & LANGMAP) |
3528 { | |
3529 curbuf->b_p_iminsert = B_IMODE_NONE; | |
3530 State &= ~LANGMAP; | |
3531 } | |
3532 else | |
3533 { | |
3534 curbuf->b_p_iminsert = B_IMODE_LMAP; | |
3535 State |= LANGMAP; | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3536 #ifdef HAVE_INPUT_METHOD |
449 | 3537 im_set_active(FALSE); |
3538 #endif | |
3539 } | |
3540 } | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3541 #ifdef HAVE_INPUT_METHOD |
449 | 3542 else |
3543 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3544 // There are no ":lmap" mappings, toggle IM |
449 | 3545 if (im_get_status()) |
3546 { | |
3547 curbuf->b_p_iminsert = B_IMODE_NONE; | |
3548 im_set_active(FALSE); | |
3549 } | |
3550 else | |
3551 { | |
3552 curbuf->b_p_iminsert = B_IMODE_IM; | |
3553 State &= ~LANGMAP; | |
3554 im_set_active(TRUE); | |
3555 } | |
3556 } | |
3557 #endif | |
3558 set_iminsert_global(); | |
3559 showmode(); | |
3560 #ifdef FEAT_GUI | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3561 // may show different cursor shape or color |
449 | 3562 if (gui.in_use) |
3563 gui_update_cursor(TRUE, FALSE); | |
3564 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
3565 #if defined(FEAT_KEYMAP) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3566 // Show/unshow value of 'keymap' in status lines. |
449 | 3567 status_redraw_curbuf(); |
3568 #endif | |
3569 } | |
3570 | |
3571 /* | |
7 | 3572 * Handle ESC in insert mode. |
3573 * Returns TRUE when leaving insert mode, FALSE when going to repeat the | |
3574 * insert. | |
3575 */ | |
3576 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3577 ins_esc( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3578 long *count, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3579 int cmdchar, |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3580 int nomove) // don't move cursor |
7 | 3581 { |
3582 int temp; | |
3583 static int disabled_redraw = FALSE; | |
3584 | |
744 | 3585 #ifdef FEAT_SPELL |
449 | 3586 check_spell_redraw(); |
3587 #endif | |
7 | 3588 |
3589 temp = curwin->w_cursor.col; | |
3590 if (disabled_redraw) | |
3591 { | |
3592 --RedrawingDisabled; | |
3593 disabled_redraw = FALSE; | |
3594 } | |
3595 if (!arrow_used) | |
3596 { | |
3597 /* | |
3598 * Don't append the ESC for "r<CR>" and "grx". | |
75 | 3599 * When 'insertmode' is set only CTRL-L stops Insert mode. Needed for |
3600 * when "count" is non-zero. | |
7 | 3601 */ |
3602 if (cmdchar != 'r' && cmdchar != 'v') | |
75 | 3603 AppendToRedobuff(p_im ? (char_u *)"\014" : ESC_STR); |
7 | 3604 |
3605 /* | |
3606 * Repeating insert may take a long time. Check for | |
3607 * interrupt now and then. | |
3608 */ | |
3609 if (*count > 0) | |
3610 { | |
3611 line_breakcheck(); | |
3612 if (got_int) | |
3613 *count = 0; | |
3614 } | |
3615 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3616 if (--*count > 0) // repeat what was typed |
7 | 3617 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3618 // Vi repeats the insert without replacing characters. |
164 | 3619 if (vim_strchr(p_cpo, CPO_REPLCNT) != NULL) |
3620 State &= ~REPLACE_FLAG; | |
3621 | |
7 | 3622 (void)start_redo_ins(); |
3623 if (cmdchar == 'r' || cmdchar == 'v') | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3624 stuffRedoReadbuff(ESC_STR); // no ESC in redo buffer |
7 | 3625 ++RedrawingDisabled; |
3626 disabled_redraw = TRUE; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3627 return FALSE; // repeat the insert |
7 | 3628 } |
5434 | 3629 stop_insert(&curwin->w_cursor, TRUE, nomove); |
7 | 3630 undisplay_dollar(); |
3631 } | |
3632 | |
22651
fba5ccf33794
patch 8.2.1874: can't do something just before leaving Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
22427
diff
changeset
|
3633 if (cmdchar != 'r' && cmdchar != 'v') |
fba5ccf33794
patch 8.2.1874: can't do something just before leaving Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
22427
diff
changeset
|
3634 ins_apply_autocmds(EVENT_INSERTLEAVEPRE); |
fba5ccf33794
patch 8.2.1874: can't do something just before leaving Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
22427
diff
changeset
|
3635 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3636 // When an autoindent was removed, curswant stays after the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3637 // indent |
7 | 3638 if (restart_edit == NUL && (colnr_T)temp == curwin->w_cursor.col) |
3639 curwin->w_set_curswant = TRUE; | |
3640 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3641 // Remember the last Insert position in the '^ mark. |
22699
e82579016863
patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents:
22651
diff
changeset
|
3642 if ((cmdmod.cmod_flags & CMOD_KEEPJUMPS) == 0) |
7 | 3643 curbuf->b_last_insert = curwin->w_cursor; |
3644 | |
3645 /* | |
3646 * The cursor should end up on the last inserted character. | |
477 | 3647 * Don't do it for CTRL-O, unless past the end of the line. |
7 | 3648 */ |
477 | 3649 if (!nomove |
3650 && (curwin->w_cursor.col != 0 | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
3651 || curwin->w_cursor.coladd > 0) |
477 | 3652 && (restart_edit == NUL |
5735 | 3653 || (gchar_cursor() == NUL && !VIsual_active)) |
7 | 3654 #ifdef FEAT_RIGHTLEFT |
3655 && !revins_on | |
3656 #endif | |
3657 ) | |
3658 { | |
3659 if (curwin->w_cursor.coladd > 0 || ve_flags == VE_ALL) | |
3660 { | |
3661 oneleft(); | |
3662 if (restart_edit != NUL) | |
3663 ++curwin->w_cursor.coladd; | |
3664 } | |
3665 else | |
3666 { | |
3667 --curwin->w_cursor.col; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3668 // Correct cursor for multi-byte character. |
7 | 3669 if (has_mbyte) |
3670 mb_adjust_cursor(); | |
3671 } | |
3672 } | |
3673 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3674 #ifdef HAVE_INPUT_METHOD |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3675 // Disable IM to allow typing English directly for Normal mode commands. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3676 // When ":lmap" is enabled don't change 'iminsert' (IM can be enabled as |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3677 // well). |
7 | 3678 if (!(State & LANGMAP)) |
3679 im_save_status(&curbuf->b_p_iminsert); | |
3680 im_set_active(FALSE); | |
3681 #endif | |
3682 | |
3683 State = NORMAL; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3684 // need to position cursor again (e.g. when on a TAB ) |
7 | 3685 changed_cline_bef_curs(); |
3686 | |
3687 setmouse(); | |
3688 #ifdef CURSOR_SHAPE | |
18534
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3689 ui_cursor_shape(); // may show different cursor shape |
7 | 3690 #endif |
10684
83a36d655a74
patch 8.0.0232: paste does not work when 'esckeys' is off
Christian Brabandt <cb@256bit.org>
parents:
10682
diff
changeset
|
3691 if (!p_ek) |
18534
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3692 { |
22091
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22077
diff
changeset
|
3693 #ifdef FEAT_JOB_CHANNEL |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22077
diff
changeset
|
3694 ch_log_output = TRUE; |
9bb1c984c4da
patch 8.2.1595: cannot easily see what Vim sends to the terminal
Bram Moolenaar <Bram@vim.org>
parents:
22077
diff
changeset
|
3695 #endif |
18534
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3696 // Re-enable bracketed paste mode. |
10684
83a36d655a74
patch 8.0.0232: paste does not work when 'esckeys' is off
Christian Brabandt <cb@256bit.org>
parents:
10682
diff
changeset
|
3697 out_str(T_BE); |
7 | 3698 |
18534
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3699 // Re-enable modifyOtherKeys. |
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3700 out_str(T_CTI); |
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3701 } |
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3702 |
16378
3d6b282e2d6e
patch 8.1.1194: typos and small problems in source files
Bram Moolenaar <Bram@vim.org>
parents:
16368
diff
changeset
|
3703 // When recording or for CTRL-O, need to display the new mode. |
3d6b282e2d6e
patch 8.1.1194: typos and small problems in source files
Bram Moolenaar <Bram@vim.org>
parents:
16368
diff
changeset
|
3704 // Otherwise remove the mode message. |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13876
diff
changeset
|
3705 if (reg_recording != 0 || restart_edit != NUL) |
7 | 3706 showmode(); |
16368
a3b5cbd2effe
patch 8.1.1189: mode is not cleared when leaving Insert mode
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
3707 else if (p_smd && (got_int || !skip_showmode())) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15521
diff
changeset
|
3708 msg(""); |
7 | 3709 |
18534
7dd83b5325e9
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
18354
diff
changeset
|
3710 return TRUE; // exit Insert mode |
7 | 3711 } |
3712 | |
3713 #ifdef FEAT_RIGHTLEFT | |
3714 /* | |
3715 * Toggle language: hkmap and revins_on. | |
3716 * Move to end of reverse inserted text. | |
3717 */ | |
3718 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3719 ins_ctrl_(void) |
7 | 3720 { |
3721 if (revins_on && revins_chars && revins_scol >= 0) | |
3722 { | |
3723 while (gchar_cursor() != NUL && revins_chars--) | |
3724 ++curwin->w_cursor.col; | |
3725 } | |
3726 p_ri = !p_ri; | |
3727 revins_on = (State == INSERT && p_ri); | |
3728 if (revins_on) | |
3729 { | |
3730 revins_scol = curwin->w_cursor.col; | |
3731 revins_legal++; | |
3732 revins_chars = 0; | |
3733 undisplay_dollar(); | |
3734 } | |
3735 else | |
3736 revins_scol = -1; | |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15738
diff
changeset
|
3737 p_hkmap = curwin->w_p_rl ^ p_ri; // be consistent! |
7 | 3738 showmode(); |
3739 } | |
3740 #endif | |
3741 | |
3742 /* | |
3743 * If 'keymodel' contains "startsel", may start selection. | |
3744 * Returns TRUE when a CTRL-O and other keys stuffed. | |
3745 */ | |
3746 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3747 ins_start_select(int c) |
7 | 3748 { |
3749 if (km_startsel) | |
3750 switch (c) | |
3751 { | |
3752 case K_KHOME: | |
3753 case K_KEND: | |
3754 case K_PAGEUP: | |
3755 case K_KPAGEUP: | |
3756 case K_PAGEDOWN: | |
3757 case K_KPAGEDOWN: | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3758 # ifdef MACOS_X |
7 | 3759 case K_LEFT: |
3760 case K_RIGHT: | |
3761 case K_UP: | |
3762 case K_DOWN: | |
3763 case K_END: | |
3764 case K_HOME: | |
3765 # endif | |
3766 if (!(mod_mask & MOD_MASK_SHIFT)) | |
3767 break; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3768 // FALLTHROUGH |
7 | 3769 case K_S_LEFT: |
3770 case K_S_RIGHT: | |
3771 case K_S_UP: | |
3772 case K_S_DOWN: | |
3773 case K_S_END: | |
3774 case K_S_HOME: | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3775 // Start selection right away, the cursor can move with |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3776 // CTRL-O when beyond the end of the line. |
7 | 3777 start_selection(); |
3778 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3779 // Execute the key in (insert) Select mode. |
7 | 3780 stuffcharReadbuff(Ctrl_O); |
3781 if (mod_mask) | |
3782 { | |
3783 char_u buf[4]; | |
3784 | |
3785 buf[0] = K_SPECIAL; | |
3786 buf[1] = KS_MODIFIER; | |
3787 buf[2] = mod_mask; | |
3788 buf[3] = NUL; | |
3789 stuffReadbuff(buf); | |
3790 } | |
3791 stuffcharReadbuff(c); | |
3792 return TRUE; | |
3793 } | |
3794 return FALSE; | |
3795 } | |
3796 | |
3797 /* | |
4352 | 3798 * <Insert> key in Insert mode: toggle insert/replace mode. |
449 | 3799 */ |
3800 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3801 ins_insert(int replaceState) |
449 | 3802 { |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15738
diff
changeset
|
3803 #ifdef FEAT_EVAL |
449 | 3804 set_vim_var_string(VV_INSERTMODE, |
14424
0a69e6e708f9
patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
14419
diff
changeset
|
3805 (char_u *)((State & REPLACE_FLAG) ? "i" |
0a69e6e708f9
patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
14419
diff
changeset
|
3806 : replaceState == VREPLACE ? "v" |
0a69e6e708f9
patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
14419
diff
changeset
|
3807 : "r"), 1); |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15738
diff
changeset
|
3808 #endif |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
3809 ins_apply_autocmds(EVENT_INSERTCHANGE); |
449 | 3810 if (State & REPLACE_FLAG) |
3811 State = INSERT | (State & LANGMAP); | |
3812 else | |
3813 State = replaceState | (State & LANGMAP); | |
3814 AppendCharToRedobuff(K_INS); | |
3815 showmode(); | |
3816 #ifdef CURSOR_SHAPE | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3817 ui_cursor_shape(); // may show different cursor shape |
449 | 3818 #endif |
3819 } | |
3820 | |
3821 /* | |
3822 * Pressed CTRL-O in Insert mode. | |
3823 */ | |
3824 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3825 ins_ctrl_o(void) |
449 | 3826 { |
3827 if (State & VREPLACE_FLAG) | |
3828 restart_edit = 'V'; | |
23076
5fbac68bda23
patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode character
Bram Moolenaar <Bram@vim.org>
parents:
22882
diff
changeset
|
3829 else if (State & REPLACE_FLAG) |
449 | 3830 restart_edit = 'R'; |
3831 else | |
3832 restart_edit = 'I'; | |
3833 if (virtual_active()) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3834 ins_at_eol = FALSE; // cursor always keeps its column |
449 | 3835 else |
3836 ins_at_eol = (gchar_cursor() == NUL); | |
3837 } | |
3838 | |
3839 /* | |
7 | 3840 * If the cursor is on an indent, ^T/^D insert/delete one |
3841 * shiftwidth. Otherwise ^T/^D behave like a "<<" or ">>". | |
1796 | 3842 * Always round the indent to 'shiftwidth', this is compatible |
7 | 3843 * with vi. But vi only supports ^T and ^D after an |
3844 * autoindent, we support it everywhere. | |
3845 */ | |
3846 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3847 ins_shift(int c, int lastc) |
7 | 3848 { |
3849 if (stop_arrow() == FAIL) | |
3850 return; | |
3851 AppendCharToRedobuff(c); | |
3852 | |
3853 /* | |
3854 * 0^D and ^^D: remove all indent. | |
3855 */ | |
1330 | 3856 if (c == Ctrl_D && (lastc == '0' || lastc == '^') |
3857 && curwin->w_cursor.col > 0) | |
7 | 3858 { |
3859 --curwin->w_cursor.col; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3860 (void)del_char(FALSE); // delete the '^' or '0' |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3861 // In Replace mode, restore the characters that '^' or '0' replaced. |
7 | 3862 if (State & REPLACE_FLAG) |
3863 replace_pop_ins(); | |
3864 if (lastc == '^') | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3865 old_indent = get_indent(); // remember curr. indent |
1516 | 3866 change_indent(INDENT_SET, 0, TRUE, 0, TRUE); |
7 | 3867 } |
3868 else | |
1516 | 3869 change_indent(c == Ctrl_D ? INDENT_DEC : INDENT_INC, 0, TRUE, 0, TRUE); |
7 | 3870 |
3871 if (did_ai && *skipwhite(ml_get_curline()) != NUL) | |
3872 did_ai = FALSE; | |
3873 #ifdef FEAT_SMARTINDENT | |
3874 did_si = FALSE; | |
3875 can_si = FALSE; | |
3876 can_si_back = FALSE; | |
3877 #endif | |
3878 #ifdef FEAT_CINDENT | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3879 can_cindent = FALSE; // no cindenting after ^D or ^T |
7 | 3880 #endif |
3881 } | |
3882 | |
3883 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3884 ins_del(void) |
7 | 3885 { |
3886 int temp; | |
3887 | |
3888 if (stop_arrow() == FAIL) | |
3889 return; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3890 if (gchar_cursor() == NUL) // delete newline |
7 | 3891 { |
3892 temp = curwin->w_cursor.col; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3893 if (!can_bs(BS_EOL) // only if "eol" included |
5848 | 3894 || do_join(2, FALSE, TRUE, FALSE, FALSE) == FAIL) |
6949 | 3895 vim_beep(BO_BS); |
7 | 3896 else |
13402
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3897 { |
7 | 3898 curwin->w_cursor.col = temp; |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3899 // Adjust orig_line_count in case more lines have been deleted than |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3900 // have been added. That makes sure, that open_line() later |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3901 // can access all buffer lines correctly |
13402
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3902 if (State & VREPLACE_FLAG && |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3903 orig_line_count > curbuf->b_ml.ml_line_count) |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3904 orig_line_count = curbuf->b_ml.ml_line_count; |
338b15c63e2c
patch 8.0.1575: crash when using virtual replace
Christian Brabandt <cb@256bit.org>
parents:
13384
diff
changeset
|
3905 } |
7 | 3906 } |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3907 else if (del_char(FALSE) == FAIL) // delete char under cursor |
6949 | 3908 vim_beep(BO_BS); |
7 | 3909 did_ai = FALSE; |
3910 #ifdef FEAT_SMARTINDENT | |
3911 did_si = FALSE; | |
3912 can_si = FALSE; | |
3913 can_si_back = FALSE; | |
3914 #endif | |
3915 AppendCharToRedobuff(K_DEL); | |
3916 } | |
3917 | |
1460 | 3918 /* |
3919 * Delete one character for ins_bs(). | |
3920 */ | |
3921 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3922 ins_bs_one(colnr_T *vcolp) |
1460 | 3923 { |
3924 dec_cursor(); | |
3925 getvcol(curwin, &curwin->w_cursor, vcolp, NULL, NULL); | |
3926 if (State & REPLACE_FLAG) | |
3927 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3928 // Don't delete characters before the insert point when in |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3929 // Replace mode |
1460 | 3930 if (curwin->w_cursor.lnum != Insstart.lnum |
3931 || curwin->w_cursor.col >= Insstart.col) | |
1782 | 3932 replace_do_bs(-1); |
1460 | 3933 } |
3934 else | |
3935 (void)del_char(FALSE); | |
3936 } | |
3937 | |
7 | 3938 /* |
3939 * Handle Backspace, delete-word and delete-line in Insert mode. | |
3940 * Return TRUE when backspace was actually used. | |
3941 */ | |
3942 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3943 ins_bs( |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3944 int c, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3945 int mode, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3946 int *inserted_space_p) |
7 | 3947 { |
3948 linenr_T lnum; | |
3949 int cc; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3950 int temp = 0; // init for GCC |
1872 | 3951 colnr_T save_col; |
7 | 3952 colnr_T mincol; |
3953 int did_backspace = FALSE; | |
3954 int in_indent; | |
3955 int oldState; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3956 int cpc[MAX_MCO]; // composing characters |
7 | 3957 |
3958 /* | |
3959 * can't delete anything in an empty file | |
3960 * can't backup past first character in buffer | |
3961 * can't backup past starting point unless 'backspace' > 1 | |
3962 * can backup to a previous line if 'backspace' == 0 | |
3963 */ | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11105
diff
changeset
|
3964 if ( BUFEMPTY() |
7 | 3965 || ( |
3966 #ifdef FEAT_RIGHTLEFT | |
3967 !revins_on && | |
3968 #endif | |
3969 ((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0) | |
3970 || (!can_bs(BS_START) | |
22858
52b5aa2e8c8f
patch 8.2.1976: cannot backspace in prompt buffer after using cursor-left
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3971 && ((arrow_used |
52b5aa2e8c8f
patch 8.2.1976: cannot backspace in prompt buffer after using cursor-left
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3972 #ifdef FEAT_JOB_CHANNEL |
52b5aa2e8c8f
patch 8.2.1976: cannot backspace in prompt buffer after using cursor-left
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3973 && !bt_prompt(curbuf) |
52b5aa2e8c8f
patch 8.2.1976: cannot backspace in prompt buffer after using cursor-left
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3974 #endif |
52b5aa2e8c8f
patch 8.2.1976: cannot backspace in prompt buffer after using cursor-left
Bram Moolenaar <Bram@vim.org>
parents:
22699
diff
changeset
|
3975 ) || (curwin->w_cursor.lnum == Insstart_orig.lnum |
5852 | 3976 && curwin->w_cursor.col <= Insstart_orig.col))) |
7 | 3977 || (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0 |
3978 && curwin->w_cursor.col <= ai_col) | |
3979 || (!can_bs(BS_EOL) && curwin->w_cursor.col == 0)))) | |
3980 { | |
6949 | 3981 vim_beep(BO_BS); |
7 | 3982 return FALSE; |
3983 } | |
3984 | |
3985 if (stop_arrow() == FAIL) | |
3986 return FALSE; | |
3987 in_indent = inindent(0); | |
3988 #ifdef FEAT_CINDENT | |
3989 if (in_indent) | |
3990 can_cindent = FALSE; | |
3991 #endif | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3992 end_comment_pending = NUL; // After BS, don't auto-end comment |
7 | 3993 #ifdef FEAT_RIGHTLEFT |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3994 if (revins_on) // put cursor after last inserted char |
7 | 3995 inc_cursor(); |
3996 #endif | |
3997 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3998 // Virtualedit: |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
3999 // BACKSPACE_CHAR eats a virtual space |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4000 // BACKSPACE_WORD eats all coladd |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4001 // BACKSPACE_LINE eats all coladd and keeps going |
7 | 4002 if (curwin->w_cursor.coladd > 0) |
4003 { | |
4004 if (mode == BACKSPACE_CHAR) | |
4005 { | |
4006 --curwin->w_cursor.coladd; | |
4007 return TRUE; | |
4008 } | |
4009 if (mode == BACKSPACE_WORD) | |
4010 { | |
4011 curwin->w_cursor.coladd = 0; | |
4012 return TRUE; | |
4013 } | |
4014 curwin->w_cursor.coladd = 0; | |
4015 } | |
4016 | |
4017 /* | |
11295
d772bf077b3f
patch 8.0.0533: abbreviation doesn't work after backspacing newline
Christian Brabandt <cb@256bit.org>
parents:
11289
diff
changeset
|
4018 * Delete newline! |
7 | 4019 */ |
4020 if (curwin->w_cursor.col == 0) | |
4021 { | |
6629 | 4022 lnum = Insstart.lnum; |
5852 | 4023 if (curwin->w_cursor.lnum == lnum |
7 | 4024 #ifdef FEAT_RIGHTLEFT |
4025 || revins_on | |
4026 #endif | |
4027 ) | |
4028 { | |
4029 if (u_save((linenr_T)(curwin->w_cursor.lnum - 2), | |
4030 (linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL) | |
4031 return FALSE; | |
6629 | 4032 --Insstart.lnum; |
11311
be499043ca70
patch 8.0.0541: compiler warning on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11295
diff
changeset
|
4033 Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum)); |
7 | 4034 } |
4035 /* | |
4036 * In replace mode: | |
4037 * cc < 0: NL was inserted, delete it | |
4038 * cc >= 0: NL was replaced, put original characters back | |
4039 */ | |
4040 cc = -1; | |
4041 if (State & REPLACE_FLAG) | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4042 cc = replace_pop(); // returns -1 if NL was inserted |
7 | 4043 /* |
4044 * In replace mode, in the line we started replacing, we only move the | |
4045 * cursor. | |
4046 */ | |
4047 if ((State & REPLACE_FLAG) && curwin->w_cursor.lnum <= lnum) | |
4048 { | |
4049 dec_cursor(); | |
4050 } | |
4051 else | |
4052 { | |
4053 if (!(State & VREPLACE_FLAG) | |
4054 || curwin->w_cursor.lnum > orig_line_count) | |
4055 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4056 temp = gchar_cursor(); // remember current char |
7 | 4057 --curwin->w_cursor.lnum; |
278 | 4058 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4059 // When "aw" is in 'formatoptions' we must delete the space at |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4060 // the end of the line, otherwise the line will be broken |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4061 // again when auto-formatting. |
278 | 4062 if (has_format_option(FO_AUTO) |
4063 && has_format_option(FO_WHITE_PAR)) | |
4064 { | |
4065 char_u *ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, | |
4066 TRUE); | |
4067 int len; | |
4068 | |
835 | 4069 len = (int)STRLEN(ptr); |
278 | 4070 if (len > 0 && ptr[len - 1] == ' ') |
4071 ptr[len - 1] = NUL; | |
4072 } | |
4073 | |
5848 | 4074 (void)do_join(2, FALSE, FALSE, FALSE, FALSE); |
7 | 4075 if (temp == NUL && gchar_cursor() != NUL) |
4076 inc_cursor(); | |
4077 } | |
4078 else | |
4079 dec_cursor(); | |
4080 | |
4081 /* | |
4082 * In REPLACE mode we have to put back the text that was replaced | |
4083 * by the NL. On the replace stack is first a NUL-terminated | |
4084 * sequence of characters that were deleted and then the | |
4085 * characters that NL replaced. | |
4086 */ | |
4087 if (State & REPLACE_FLAG) | |
4088 { | |
4089 /* | |
4090 * Do the next ins_char() in NORMAL state, to | |
4091 * prevent ins_char() from replacing characters and | |
4092 * avoiding showmatch(). | |
4093 */ | |
4094 oldState = State; | |
4095 State = NORMAL; | |
4096 /* | |
4097 * restore characters (blanks) deleted after cursor | |
4098 */ | |
4099 while (cc > 0) | |
4100 { | |
1872 | 4101 save_col = curwin->w_cursor.col; |
7 | 4102 mb_replace_pop_ins(cc); |
1872 | 4103 curwin->w_cursor.col = save_col; |
7 | 4104 cc = replace_pop(); |
4105 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4106 // restore the characters that NL replaced |
7 | 4107 replace_pop_ins(); |
4108 State = oldState; | |
4109 } | |
4110 } | |
4111 did_ai = FALSE; | |
4112 } | |
4113 else | |
4114 { | |
4115 /* | |
4116 * Delete character(s) before the cursor. | |
4117 */ | |
4118 #ifdef FEAT_RIGHTLEFT | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4119 if (revins_on) // put cursor on last inserted char |
7 | 4120 dec_cursor(); |
4121 #endif | |
4122 mincol = 0; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4123 // keep indent |
1085 | 4124 if (mode == BACKSPACE_LINE |
4125 && (curbuf->b_p_ai | |
4126 #ifdef FEAT_CINDENT | |
2004 | 4127 || cindent_on() |
1085 | 4128 #endif |
4129 ) | |
7 | 4130 #ifdef FEAT_RIGHTLEFT |
4131 && !revins_on | |
4132 #endif | |
4133 ) | |
4134 { | |
1872 | 4135 save_col = curwin->w_cursor.col; |
7 | 4136 beginline(BL_WHITE); |
1988 | 4137 if (curwin->w_cursor.col < save_col) |
7 | 4138 mincol = curwin->w_cursor.col; |
1872 | 4139 curwin->w_cursor.col = save_col; |
7 | 4140 } |
4141 | |
4142 /* | |
4143 * Handle deleting one 'shiftwidth' or 'softtabstop'. | |
4144 */ | |
4145 if ( mode == BACKSPACE_CHAR | |
4146 && ((p_sta && in_indent) | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4147 || ((get_sts_value() != 0 |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4148 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4149 || tabstop_count(curbuf->b_p_vsts_array) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4150 #endif |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4151 ) |
1497 | 4152 && curwin->w_cursor.col > 0 |
7 | 4153 && (*(ml_get_cursor() - 1) == TAB |
4154 || (*(ml_get_cursor() - 1) == ' ' | |
4155 && (!*inserted_space_p | |
4156 || arrow_used)))))) | |
4157 { | |
4158 int ts; | |
4159 colnr_T vcol; | |
4160 colnr_T want_vcol; | |
1460 | 4161 colnr_T start_vcol; |
7 | 4162 |
4163 *inserted_space_p = FALSE; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4164 // Compute the virtual column where we want to be. Since |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4165 // 'showbreak' may get in the way, need to get the last column of |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4166 // the previous character. |
7 | 4167 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL); |
1460 | 4168 start_vcol = vcol; |
7 | 4169 dec_cursor(); |
4170 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol); | |
4171 inc_cursor(); | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4172 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4173 if (p_sta && in_indent) |
14276
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4174 { |
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4175 ts = (int)get_sw_value(curbuf); |
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4176 want_vcol = (want_vcol / ts) * ts; |
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4177 } |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4178 else |
14243
fbf0681606fa
patch 8.1.0138: negative value of 'softtabstop' not used correctly
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4179 want_vcol = tabstop_start(want_vcol, get_sts_value(), |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4180 curbuf->b_p_vsts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4181 #else |
14276
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4182 if (p_sta && in_indent) |
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4183 ts = (int)get_sw_value(curbuf); |
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4184 else |
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4185 ts = (int)get_sts_value(); |
7 | 4186 want_vcol = (want_vcol / ts) * ts; |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4187 #endif |
7 | 4188 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4189 // delete characters until we are at or before want_vcol |
7 | 4190 while (vcol > want_vcol |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4191 && (cc = *(ml_get_cursor() - 1), VIM_ISWHITE(cc))) |
1460 | 4192 ins_bs_one(&vcol); |
7 | 4193 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4194 // insert extra spaces until we are at want_vcol |
7 | 4195 while (vcol < want_vcol) |
4196 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4197 // Remember the first char we inserted |
5852 | 4198 if (curwin->w_cursor.lnum == Insstart_orig.lnum |
4199 && curwin->w_cursor.col < Insstart_orig.col) | |
4200 Insstart_orig.col = curwin->w_cursor.col; | |
7 | 4201 |
4202 if (State & VREPLACE_FLAG) | |
4203 ins_char(' '); | |
4204 else | |
4205 { | |
4206 ins_str((char_u *)" "); | |
1460 | 4207 if ((State & REPLACE_FLAG)) |
4208 replace_push(NUL); | |
7 | 4209 } |
4210 getvcol(curwin, &curwin->w_cursor, &vcol, NULL, NULL); | |
4211 } | |
1460 | 4212 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4213 // If we are now back where we started delete one character. Can |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4214 // happen when using 'sts' and 'linebreak'. |
1460 | 4215 if (vcol >= start_vcol) |
4216 ins_bs_one(&vcol); | |
7 | 4217 } |
4218 | |
4219 /* | |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18717
diff
changeset
|
4220 * Delete up to starting point, start of line or previous word. |
7 | 4221 */ |
6712 | 4222 else |
4223 { | |
4224 int cclass = 0, prev_cclass = 0; | |
4225 | |
4226 if (has_mbyte) | |
4227 cclass = mb_get_class(ml_get_cursor()); | |
4228 do | |
7 | 4229 { |
4230 #ifdef FEAT_RIGHTLEFT | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4231 if (!revins_on) // put cursor on char to be deleted |
6712 | 4232 #endif |
7 | 4233 dec_cursor(); |
6712 | 4234 |
4235 cc = gchar_cursor(); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4236 // look multi-byte character class |
6712 | 4237 if (has_mbyte) |
4238 { | |
4239 prev_cclass = cclass; | |
4240 cclass = mb_get_class(ml_get_cursor()); | |
4241 } | |
4242 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4243 // start of word? |
6712 | 4244 if (mode == BACKSPACE_WORD && !vim_isspace(cc)) |
4245 { | |
4246 mode = BACKSPACE_WORD_NOT_SPACE; | |
4247 temp = vim_iswordc(cc); | |
4248 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4249 // end of word? |
6712 | 4250 else if (mode == BACKSPACE_WORD_NOT_SPACE |
4251 && ((vim_isspace(cc) || vim_iswordc(cc) != temp) | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15569
diff
changeset
|
4252 || prev_cclass != cclass)) |
6712 | 4253 { |
4254 #ifdef FEAT_RIGHTLEFT | |
4255 if (!revins_on) | |
4256 #endif | |
4257 inc_cursor(); | |
4258 #ifdef FEAT_RIGHTLEFT | |
4259 else if (State & REPLACE_FLAG) | |
4260 dec_cursor(); | |
4261 #endif | |
4262 break; | |
4263 } | |
4264 if (State & REPLACE_FLAG) | |
4265 replace_do_bs(-1); | |
4266 else | |
4267 { | |
4268 if (enc_utf8 && p_deco) | |
4269 (void)utfc_ptr2char(ml_get_cursor(), cpc); | |
4270 (void)del_char(FALSE); | |
4271 /* | |
4272 * If there are combining characters and 'delcombine' is set | |
4273 * move the cursor back. Don't back up before the base | |
4274 * character. | |
4275 */ | |
4276 if (enc_utf8 && p_deco && cpc[0] != NUL) | |
4277 inc_cursor(); | |
7 | 4278 #ifdef FEAT_RIGHTLEFT |
6712 | 4279 if (revins_chars) |
4280 { | |
4281 revins_chars--; | |
4282 revins_legal++; | |
4283 } | |
4284 if (revins_on && gchar_cursor() == NUL) | |
4285 break; | |
4286 #endif | |
7 | 4287 } |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4288 // Just a single backspace?: |
6712 | 4289 if (mode == BACKSPACE_CHAR) |
7 | 4290 break; |
6712 | 4291 } while ( |
7 | 4292 #ifdef FEAT_RIGHTLEFT |
6712 | 4293 revins_on || |
4294 #endif | |
4295 (curwin->w_cursor.col > mincol | |
20069
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
19627
diff
changeset
|
4296 && (can_bs(BS_NOSTOP) |
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
19627
diff
changeset
|
4297 || (curwin->w_cursor.lnum != Insstart_orig.lnum |
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
19627
diff
changeset
|
4298 || curwin->w_cursor.col != Insstart_orig.col) |
9a67d41708d2
patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents:
19627
diff
changeset
|
4299 ))); |
6712 | 4300 } |
7 | 4301 did_backspace = TRUE; |
4302 } | |
4303 #ifdef FEAT_SMARTINDENT | |
4304 did_si = FALSE; | |
4305 can_si = FALSE; | |
4306 can_si_back = FALSE; | |
4307 #endif | |
4308 if (curwin->w_cursor.col <= 1) | |
4309 did_ai = FALSE; | |
4310 /* | |
4311 * It's a little strange to put backspaces into the redo | |
4312 * buffer, but it makes auto-indent a lot easier to deal | |
4313 * with. | |
4314 */ | |
4315 AppendCharToRedobuff(c); | |
4316 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4317 // If deleted before the insertion point, adjust it |
5852 | 4318 if (curwin->w_cursor.lnum == Insstart_orig.lnum |
14037
afce2005fdc8
patch 8.1.0036: not restoring Insert mode if leaving prompt buffer with mouse
Christian Brabandt <cb@256bit.org>
parents:
14035
diff
changeset
|
4319 && curwin->w_cursor.col < Insstart_orig.col) |
5852 | 4320 Insstart_orig.col = curwin->w_cursor.col; |
7 | 4321 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4322 // vi behaviour: the cursor moves backward but the character that |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4323 // was there remains visible |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4324 // Vim behaviour: the cursor moves backward and the character that |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4325 // was there is erased from the screen. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4326 // We can emulate the vi behaviour by pretending there is a dollar |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4327 // displayed even when there isn't. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4328 // --pkv Sun Jan 19 01:56:40 EST 2003 |
3318 | 4329 if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == -1) |
7 | 4330 dollar_vcol = curwin->w_virtcol; |
4331 | |
1514 | 4332 #ifdef FEAT_FOLDING |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4333 // When deleting a char the cursor line must never be in a closed fold. |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4334 // E.g., when 'foldmethod' is indent and deleting the first non-white |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4335 // char before a Tab. |
1514 | 4336 if (did_backspace) |
4337 foldOpenCursor(); | |
4338 #endif | |
4339 | |
7 | 4340 return did_backspace; |
4341 } | |
4342 | |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4343 /* |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4344 * Handle receiving P_PS: start paste mode. Inserts the following text up to |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4345 * P_PE literally. |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4346 * When "drop" is TRUE then consume the text and drop it. |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4347 */ |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4348 int |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4349 bracketed_paste(paste_mode_T mode, int drop, garray_T *gap) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4350 { |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4351 int c; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4352 char_u buf[NUMBUFLEN + MB_MAXBYTES]; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4353 int idx = 0; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4354 char_u *end = find_termcode((char_u *)"PE"); |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4355 int ret_char = -1; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4356 int save_allow_keys = allow_keys; |
10696
689e88afdd11
patch 8.0.0238: bracketed paste does not disable autoindent
Christian Brabandt <cb@256bit.org>
parents:
10684
diff
changeset
|
4357 int save_paste = p_paste; |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4358 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4359 // If the end code is too long we can't detect it, read everything. |
19151
f12eda320c78
patch 8.2.0135: bracketed paste can still cause invalid memory access
Bram Moolenaar <Bram@vim.org>
parents:
19147
diff
changeset
|
4360 if (end != NULL && STRLEN(end) >= NUMBUFLEN) |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4361 end = NULL; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4362 ++no_mapping; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4363 allow_keys = 0; |
14419
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4364 if (!p_paste) |
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4365 // Also have the side effects of setting 'paste' to make it work much |
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4366 // faster. |
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4367 set_option_value((char_u *)"paste", TRUE, NULL, 0); |
10696
689e88afdd11
patch 8.0.0238: bracketed paste does not disable autoindent
Christian Brabandt <cb@256bit.org>
parents:
10684
diff
changeset
|
4368 |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4369 for (;;) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4370 { |
14419
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4371 // When the end is not defined read everything there is. |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4372 if (end == NULL && vpeekc() == NUL) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4373 break; |
14419
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4374 do |
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4375 c = vgetc(); |
16162
cd5c83115ec6
patch 8.1.1086: too many curly braces
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
4376 while (c == K_IGNORE || c == K_VER_SCROLLBAR || c == K_HOR_SCROLLBAR); |
19147
06ef1e438ac8
patch 8.2.0133: invalid memory access with search command
Bram Moolenaar <Bram@vim.org>
parents:
19097
diff
changeset
|
4377 if (c == NUL || got_int || (ex_normal_busy > 0 && c == Ctrl_C)) |
14419
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4378 // When CTRL-C was encountered the typeahead will be flushed and we |
19147
06ef1e438ac8
patch 8.2.0133: invalid memory access with search command
Bram Moolenaar <Bram@vim.org>
parents:
19097
diff
changeset
|
4379 // won't get the end sequence. Except when using ":normal". |
14419
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4380 break; |
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4381 |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4382 if (has_mbyte) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4383 idx += (*mb_char2bytes)(c, buf + idx); |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4384 else |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4385 buf[idx++] = c; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4386 buf[idx] = NUL; |
11317
e45c6e4d78af
patch 8.0.0544: cppcheck warnings
Christian Brabandt <cb@256bit.org>
parents:
11311
diff
changeset
|
4387 if (end != NULL && STRNCMP(buf, end, idx) == 0) |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4388 { |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4389 if (end[idx] == NUL) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4390 break; // Found the end of paste code. |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4391 continue; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4392 } |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4393 if (!drop) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4394 { |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4395 switch (mode) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4396 { |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4397 case PASTE_CMDLINE: |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4398 put_on_cmdline(buf, idx, TRUE); |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4399 break; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4400 |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4401 case PASTE_EX: |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4402 if (gap != NULL && ga_grow(gap, idx) == OK) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4403 { |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4404 mch_memmove((char *)gap->ga_data + gap->ga_len, |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4405 buf, (size_t)idx); |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4406 gap->ga_len += idx; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4407 } |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4408 break; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4409 |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4410 case PASTE_INSERT: |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4411 if (stop_arrow() == OK) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4412 { |
10680
75c324ab1270
patch 8.0.0230: bracketed paste does not support line breaks
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
4413 c = buf[0]; |
75c324ab1270
patch 8.0.0230: bracketed paste does not support line breaks
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
4414 if (idx == 1 && (c == CAR || c == K_KENTER || c == NL)) |
75c324ab1270
patch 8.0.0230: bracketed paste does not support line breaks
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
4415 ins_eol(c); |
75c324ab1270
patch 8.0.0230: bracketed paste does not support line breaks
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
4416 else |
10682
d564e73ff9ee
patch 8.0.0231: bracketed paste mode is not tested
Christian Brabandt <cb@256bit.org>
parents:
10680
diff
changeset
|
4417 { |
10680
75c324ab1270
patch 8.0.0230: bracketed paste does not support line breaks
Christian Brabandt <cb@256bit.org>
parents:
10640
diff
changeset
|
4418 ins_char_bytes(buf, idx); |
10682
d564e73ff9ee
patch 8.0.0231: bracketed paste mode is not tested
Christian Brabandt <cb@256bit.org>
parents:
10680
diff
changeset
|
4419 AppendToRedobuffLit(buf, idx); |
d564e73ff9ee
patch 8.0.0231: bracketed paste mode is not tested
Christian Brabandt <cb@256bit.org>
parents:
10680
diff
changeset
|
4420 } |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4421 } |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4422 break; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4423 |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4424 case PASTE_ONE_CHAR: |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4425 if (ret_char == -1) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4426 { |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4427 if (has_mbyte) |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4428 ret_char = (*mb_ptr2char)(buf); |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4429 else |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4430 ret_char = buf[0]; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4431 } |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4432 break; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4433 } |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4434 } |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4435 idx = 0; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4436 } |
10696
689e88afdd11
patch 8.0.0238: bracketed paste does not disable autoindent
Christian Brabandt <cb@256bit.org>
parents:
10684
diff
changeset
|
4437 |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4438 --no_mapping; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4439 allow_keys = save_allow_keys; |
14419
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4440 if (!save_paste) |
cdc4eacdd81d
patch 8.1.0224: hang in bracketed paste mode when t_PE not encountered
Christian Brabandt <cb@256bit.org>
parents:
14301
diff
changeset
|
4441 set_option_value((char_u *)"paste", FALSE, NULL, 0); |
10640
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4442 |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4443 return ret_char; |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4444 } |
27be410d6d29
patch 8.0.0210: no support for bracketed paste
Christian Brabandt <cb@256bit.org>
parents:
10636
diff
changeset
|
4445 |
692 | 4446 #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
724 | 4447 static void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4448 ins_tabline(int c) |
692 | 4449 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4450 // We will be leaving the current window, unless closing another tab. |
692 | 4451 if (c != K_TABMENU || current_tabmenu != TABLINE_MENU_CLOSE |
4452 || (current_tab != 0 && current_tab != tabpage_index(curtab))) | |
4453 { | |
4454 undisplay_dollar(); | |
4455 start_arrow(&curwin->w_cursor); | |
4456 # ifdef FEAT_CINDENT | |
4457 can_cindent = TRUE; | |
4458 # endif | |
4459 } | |
4460 | |
4461 if (c == K_TABLINE) | |
4462 goto_tabpage(current_tab); | |
4463 else | |
846 | 4464 { |
692 | 4465 handle_tabmenu(); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4466 redraw_statuslines(); // will redraw the tabline when needed |
846 | 4467 } |
692 | 4468 } |
4469 #endif | |
4470 | |
4471 #if defined(FEAT_GUI) || defined(PROTO) | |
7 | 4472 void |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4473 ins_scroll(void) |
7 | 4474 { |
4475 pos_T tpos; | |
4476 | |
4477 undisplay_dollar(); | |
4478 tpos = curwin->w_cursor; | |
4479 if (gui_do_scroll()) | |
4480 { | |
4481 start_arrow(&tpos); | |
4482 # ifdef FEAT_CINDENT | |
4483 can_cindent = TRUE; | |
4484 # endif | |
4485 } | |
4486 } | |
4487 | |
4488 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4489 ins_horscroll(void) |
7 | 4490 { |
4491 pos_T tpos; | |
4492 | |
4493 undisplay_dollar(); | |
4494 tpos = curwin->w_cursor; | |
2409
0ca06a92adfb
Add support for horizontal scroll wheel. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2378
diff
changeset
|
4495 if (gui_do_horiz_scroll(scrollbar_value, FALSE)) |
7 | 4496 { |
4497 start_arrow(&tpos); | |
4498 # ifdef FEAT_CINDENT | |
4499 can_cindent = TRUE; | |
4500 # endif | |
4501 } | |
4502 } | |
4503 #endif | |
4504 | |
4505 static void | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4506 ins_left(void) |
7 | 4507 { |
4508 pos_T tpos; | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4509 int end_change = dont_sync_undo == FALSE; // end undoable change |
7 | 4510 |
4511 #ifdef FEAT_FOLDING | |
4512 if ((fdo_flags & FDO_HOR) && KeyTyped) | |
4513 foldOpenCursor(); | |
4514 #endif | |
4515 undisplay_dollar(); | |
4516 tpos = curwin->w_cursor; | |
4517 if (oneleft() == OK) | |
4518 { | |
941 | 4519 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4520 // Only call start_arrow() when not busy with preediting, it will |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4521 // break undo. K_LEFT is inserted in im_correct_cursor(). |
12293
1ff5e5dfa9b0
patch 8.0.1026: GTK on-the-spot input has problems
Christian Brabandt <cb@256bit.org>
parents:
12136
diff
changeset
|
4522 if (p_imst == IM_OVER_THE_SPOT || !im_is_preediting()) |
941 | 4523 #endif |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4524 { |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4525 start_arrow_with_change(&tpos, end_change); |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4526 if (!end_change) |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4527 AppendCharToRedobuff(K_LEFT); |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4528 } |
7 | 4529 #ifdef FEAT_RIGHTLEFT |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4530 // If exit reversed string, position is fixed |
7 | 4531 if (revins_scol != -1 && (int)curwin->w_cursor.col >= revins_scol) |
4532 revins_legal++; | |
4533 revins_chars++; | |
4534 #endif | |
4535 } | |
4536 | |
4537 /* | |
4538 * if 'whichwrap' set for cursor in insert mode may go to | |
4539 * previous line | |
4540 */ | |
4541 else if (vim_strchr(p_ww, '[') != NULL && curwin->w_cursor.lnum > 1) | |
4542 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4543 // always break undo when moving upwards/downwards, else undo may break |
7 | 4544 start_arrow(&tpos); |
4545 --(curwin->w_cursor.lnum); | |
4546 coladvance((colnr_T)MAXCOL); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4547 curwin->w_set_curswant = TRUE; // so we stay at the end |
7 | 4548 } |
4549 else | |
6949 | 4550 vim_beep(BO_CRSR); |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4551 dont_sync_undo = FALSE; |
7 | 4552 } |
4553 | |
4554 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4555 ins_home(int c) |
7 | 4556 { |
4557 pos_T tpos; | |
4558 | |
4559 #ifdef FEAT_FOLDING | |
4560 if ((fdo_flags & FDO_HOR) && KeyTyped) | |
4561 foldOpenCursor(); | |
4562 #endif | |
4563 undisplay_dollar(); | |
4564 tpos = curwin->w_cursor; | |
4565 if (c == K_C_HOME) | |
4566 curwin->w_cursor.lnum = 1; | |
4567 curwin->w_cursor.col = 0; | |
4568 curwin->w_cursor.coladd = 0; | |
4569 curwin->w_curswant = 0; | |
4570 start_arrow(&tpos); | |
4571 } | |
4572 | |
4573 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4574 ins_end(int c) |
7 | 4575 { |
4576 pos_T tpos; | |
4577 | |
4578 #ifdef FEAT_FOLDING | |
4579 if ((fdo_flags & FDO_HOR) && KeyTyped) | |
4580 foldOpenCursor(); | |
4581 #endif | |
4582 undisplay_dollar(); | |
4583 tpos = curwin->w_cursor; | |
4584 if (c == K_C_END) | |
4585 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4586 coladvance((colnr_T)MAXCOL); | |
4587 curwin->w_curswant = MAXCOL; | |
4588 | |
4589 start_arrow(&tpos); | |
4590 } | |
4591 | |
4592 static void | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4593 ins_s_left() |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4594 { |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4595 int end_change = dont_sync_undo == FALSE; // end undoable change |
7 | 4596 #ifdef FEAT_FOLDING |
4597 if ((fdo_flags & FDO_HOR) && KeyTyped) | |
4598 foldOpenCursor(); | |
4599 #endif | |
4600 undisplay_dollar(); | |
4601 if (curwin->w_cursor.lnum > 1 || curwin->w_cursor.col > 0) | |
4602 { | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4603 start_arrow_with_change(&curwin->w_cursor, end_change); |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4604 if (!end_change) |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4605 AppendCharToRedobuff(K_S_LEFT); |
7 | 4606 (void)bck_word(1L, FALSE, FALSE); |
4607 curwin->w_set_curswant = TRUE; | |
4608 } | |
4609 else | |
6949 | 4610 vim_beep(BO_CRSR); |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4611 dont_sync_undo = FALSE; |
7 | 4612 } |
4613 | |
4614 static void | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4615 ins_right(void) |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4616 { |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4617 int end_change = dont_sync_undo == FALSE; // end undoable change |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4618 |
7 | 4619 #ifdef FEAT_FOLDING |
4620 if ((fdo_flags & FDO_HOR) && KeyTyped) | |
4621 foldOpenCursor(); | |
4622 #endif | |
4623 undisplay_dollar(); | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15629
diff
changeset
|
4624 if (gchar_cursor() != NUL || virtual_active()) |
7 | 4625 { |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4626 start_arrow_with_change(&curwin->w_cursor, end_change); |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4627 if (!end_change) |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4628 AppendCharToRedobuff(K_RIGHT); |
7 | 4629 curwin->w_set_curswant = TRUE; |
4630 if (virtual_active()) | |
4631 oneright(); | |
4632 else | |
4633 { | |
4634 if (has_mbyte) | |
474 | 4635 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor()); |
7 | 4636 else |
4637 ++curwin->w_cursor.col; | |
4638 } | |
4639 | |
4640 #ifdef FEAT_RIGHTLEFT | |
4641 revins_legal++; | |
4642 if (revins_chars) | |
4643 revins_chars--; | |
4644 #endif | |
4645 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4646 // if 'whichwrap' set for cursor in insert mode, may move the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4647 // cursor to the next line |
7 | 4648 else if (vim_strchr(p_ww, ']') != NULL |
4649 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) | |
4650 { | |
4651 start_arrow(&curwin->w_cursor); | |
4652 curwin->w_set_curswant = TRUE; | |
4653 ++curwin->w_cursor.lnum; | |
4654 curwin->w_cursor.col = 0; | |
4655 } | |
4656 else | |
6949 | 4657 vim_beep(BO_CRSR); |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
6971
diff
changeset
|
4658 dont_sync_undo = FALSE; |
7 | 4659 } |
4660 | |
4661 static void | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4662 ins_s_right() |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4663 { |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4664 int end_change = dont_sync_undo == FALSE; // end undoable change |
7 | 4665 #ifdef FEAT_FOLDING |
4666 if ((fdo_flags & FDO_HOR) && KeyTyped) | |
4667 foldOpenCursor(); | |
4668 #endif | |
4669 undisplay_dollar(); | |
4670 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count | |
4671 || gchar_cursor() != NUL) | |
4672 { | |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4673 start_arrow_with_change(&curwin->w_cursor, end_change); |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4674 if (!end_change) |
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4675 AppendCharToRedobuff(K_S_RIGHT); |
7 | 4676 (void)fwd_word(1L, FALSE, 0); |
4677 curwin->w_set_curswant = TRUE; | |
4678 } | |
4679 else | |
6949 | 4680 vim_beep(BO_CRSR); |
16101
5c5d211bd5a8
patch 8.1.1055: CTRL-G U in Insert mode doesn't work for shift-Left
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
4681 dont_sync_undo = FALSE; |
7 | 4682 } |
4683 | |
4684 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4685 ins_up( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4686 int startcol) // when TRUE move to Insstart.col |
7 | 4687 { |
4688 pos_T tpos; | |
4689 linenr_T old_topline = curwin->w_topline; | |
4690 #ifdef FEAT_DIFF | |
4691 int old_topfill = curwin->w_topfill; | |
4692 #endif | |
4693 | |
4694 undisplay_dollar(); | |
4695 tpos = curwin->w_cursor; | |
4696 if (cursor_up(1L, TRUE) == OK) | |
4697 { | |
4698 if (startcol) | |
4699 coladvance(getvcol_nolist(&Insstart)); | |
4700 if (old_topline != curwin->w_topline | |
4701 #ifdef FEAT_DIFF | |
4702 || old_topfill != curwin->w_topfill | |
4703 #endif | |
4704 ) | |
4705 redraw_later(VALID); | |
4706 start_arrow(&tpos); | |
4707 #ifdef FEAT_CINDENT | |
4708 can_cindent = TRUE; | |
4709 #endif | |
4710 } | |
4711 else | |
6949 | 4712 vim_beep(BO_CRSR); |
7 | 4713 } |
4714 | |
4715 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4716 ins_pageup(void) |
7 | 4717 { |
4718 pos_T tpos; | |
4719 | |
4720 undisplay_dollar(); | |
828 | 4721 |
4722 if (mod_mask & MOD_MASK_CTRL) | |
4723 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4724 // <C-PageUp>: tab page back |
1013 | 4725 if (first_tabpage->tp_next != NULL) |
4726 { | |
4727 start_arrow(&curwin->w_cursor); | |
4728 goto_tabpage(-1); | |
4729 } | |
828 | 4730 return; |
4731 } | |
4732 | |
7 | 4733 tpos = curwin->w_cursor; |
4734 if (onepage(BACKWARD, 1L) == OK) | |
4735 { | |
4736 start_arrow(&tpos); | |
4737 #ifdef FEAT_CINDENT | |
4738 can_cindent = TRUE; | |
4739 #endif | |
4740 } | |
4741 else | |
6949 | 4742 vim_beep(BO_CRSR); |
7 | 4743 } |
4744 | |
4745 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4746 ins_down( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4747 int startcol) // when TRUE move to Insstart.col |
7 | 4748 { |
4749 pos_T tpos; | |
4750 linenr_T old_topline = curwin->w_topline; | |
4751 #ifdef FEAT_DIFF | |
4752 int old_topfill = curwin->w_topfill; | |
4753 #endif | |
4754 | |
4755 undisplay_dollar(); | |
4756 tpos = curwin->w_cursor; | |
4757 if (cursor_down(1L, TRUE) == OK) | |
4758 { | |
4759 if (startcol) | |
4760 coladvance(getvcol_nolist(&Insstart)); | |
4761 if (old_topline != curwin->w_topline | |
4762 #ifdef FEAT_DIFF | |
4763 || old_topfill != curwin->w_topfill | |
4764 #endif | |
4765 ) | |
4766 redraw_later(VALID); | |
4767 start_arrow(&tpos); | |
4768 #ifdef FEAT_CINDENT | |
4769 can_cindent = TRUE; | |
4770 #endif | |
4771 } | |
4772 else | |
6949 | 4773 vim_beep(BO_CRSR); |
7 | 4774 } |
4775 | |
4776 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4777 ins_pagedown(void) |
7 | 4778 { |
4779 pos_T tpos; | |
4780 | |
4781 undisplay_dollar(); | |
828 | 4782 |
4783 if (mod_mask & MOD_MASK_CTRL) | |
4784 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4785 // <C-PageDown>: tab page forward |
1013 | 4786 if (first_tabpage->tp_next != NULL) |
4787 { | |
4788 start_arrow(&curwin->w_cursor); | |
4789 goto_tabpage(0); | |
4790 } | |
828 | 4791 return; |
4792 } | |
4793 | |
7 | 4794 tpos = curwin->w_cursor; |
4795 if (onepage(FORWARD, 1L) == OK) | |
4796 { | |
4797 start_arrow(&tpos); | |
4798 #ifdef FEAT_CINDENT | |
4799 can_cindent = TRUE; | |
4800 #endif | |
4801 } | |
4802 else | |
6949 | 4803 vim_beep(BO_CRSR); |
7 | 4804 } |
4805 | |
4806 #ifdef FEAT_DND | |
4807 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4808 ins_drop(void) |
7 | 4809 { |
22176
6941d3205be9
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Bram Moolenaar <Bram@vim.org>
parents:
22095
diff
changeset
|
4810 do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND); |
7 | 4811 } |
4812 #endif | |
4813 | |
4814 /* | |
4815 * Handle TAB in Insert or Replace mode. | |
4816 * Return TRUE when the TAB needs to be inserted like a normal character. | |
4817 */ | |
4818 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4819 ins_tab(void) |
7 | 4820 { |
4821 int ind; | |
4822 int i; | |
4823 int temp; | |
4824 | |
4825 if (Insstart_blank_vcol == MAXCOL && curwin->w_cursor.lnum == Insstart.lnum) | |
4826 Insstart_blank_vcol = get_nolist_virtcol(); | |
4827 if (echeck_abbr(TAB + ABBR_OFF)) | |
4828 return FALSE; | |
4829 | |
4830 ind = inindent(0); | |
4831 #ifdef FEAT_CINDENT | |
4832 if (ind) | |
4833 can_cindent = FALSE; | |
4834 #endif | |
4835 | |
4836 /* | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4837 * When nothing special, insert TAB like a normal character. |
7 | 4838 */ |
4839 if (!curbuf->b_p_et | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4840 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4841 && !(p_sta && ind |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4842 // These five lines mean 'tabstop' != 'shiftwidth' |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4843 && ((tabstop_count(curbuf->b_p_vts_array) > 1) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4844 || (tabstop_count(curbuf->b_p_vts_array) == 1 |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4845 && tabstop_first(curbuf->b_p_vts_array) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4846 != get_sw_value(curbuf)) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4847 || (tabstop_count(curbuf->b_p_vts_array) == 0 |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4848 && curbuf->b_p_ts != get_sw_value(curbuf)))) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4849 && tabstop_count(curbuf->b_p_vsts_array) == 0 |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4850 #else |
5438 | 4851 && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf)) |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4852 #endif |
3873 | 4853 && get_sts_value() == 0) |
7 | 4854 return TRUE; |
4855 | |
4856 if (stop_arrow() == FAIL) | |
4857 return TRUE; | |
4858 | |
4859 did_ai = FALSE; | |
4860 #ifdef FEAT_SMARTINDENT | |
4861 did_si = FALSE; | |
4862 can_si = FALSE; | |
4863 can_si_back = FALSE; | |
4864 #endif | |
4865 AppendToRedobuff((char_u *)"\t"); | |
4866 | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4867 #ifdef FEAT_VARTABS |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4868 if (p_sta && ind) // insert tab in indent, use 'shiftwidth' |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4869 { |
14276
752ef53d3731
patch 8.1.0154: crash with "set smarttab shiftwidth=0 softtabstop=-1"
Christian Brabandt <cb@256bit.org>
parents:
14243
diff
changeset
|
4870 temp = (int)get_sw_value(curbuf); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4871 temp -= get_nolist_virtcol() % temp; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4872 } |
14243
fbf0681606fa
patch 8.1.0138: negative value of 'softtabstop' not used correctly
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4873 else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts != 0) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4874 // use 'softtabstop' when set |
14243
fbf0681606fa
patch 8.1.0138: negative value of 'softtabstop' not used correctly
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
4875 temp = tabstop_padding(get_nolist_virtcol(), get_sts_value(), |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4876 curbuf->b_p_vsts_array); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4877 else // otherwise use 'tabstop' |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4878 temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts, |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4879 curbuf->b_p_vts_array); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4880 #else |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4881 if (p_sta && ind) // insert tab in indent, use 'shiftwidth' |
5438 | 4882 temp = (int)get_sw_value(curbuf); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4883 else if (curbuf->b_p_sts != 0) // use 'softtabstop' when set |
3873 | 4884 temp = (int)get_sts_value(); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4885 else // otherwise use 'tabstop' |
7 | 4886 temp = (int)curbuf->b_p_ts; |
4887 temp -= get_nolist_virtcol() % temp; | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4888 #endif |
7 | 4889 |
4890 /* | |
4891 * Insert the first space with ins_char(). It will delete one char in | |
4892 * replace mode. Insert the rest with ins_str(); it will not delete any | |
4893 * chars. For VREPLACE mode, we use ins_char() for all characters. | |
4894 */ | |
4895 ins_char(' '); | |
4896 while (--temp > 0) | |
4897 { | |
4898 if (State & VREPLACE_FLAG) | |
4899 ins_char(' '); | |
4900 else | |
4901 { | |
4902 ins_str((char_u *)" "); | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4903 if (State & REPLACE_FLAG) // no char replaced |
7 | 4904 replace_push(NUL); |
4905 } | |
4906 } | |
4907 | |
4908 /* | |
4909 * When 'expandtab' not set: Replace spaces by TABs where possible. | |
4910 */ | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4911 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4912 if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0 |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4913 || get_sts_value() > 0 |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4914 || (p_sta && ind))) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4915 #else |
3873 | 4916 if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind))) |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14103
diff
changeset
|
4917 #endif |
7 | 4918 { |
4919 char_u *ptr; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4920 char_u *saved_line = NULL; // init for GCC |
7 | 4921 pos_T pos; |
4922 pos_T fpos; | |
4923 pos_T *cursor; | |
4924 colnr_T want_vcol, vcol; | |
4925 int change_col = -1; | |
4926 int save_list = curwin->w_p_list; | |
4927 | |
4928 /* | |
4929 * Get the current line. For VREPLACE mode, don't make real changes | |
4930 * yet, just work on a copy of the line. | |
4931 */ | |
4932 if (State & VREPLACE_FLAG) | |
4933 { | |
4934 pos = curwin->w_cursor; | |
4935 cursor = &pos; | |
4936 saved_line = vim_strsave(ml_get_curline()); | |
4937 if (saved_line == NULL) | |
4938 return FALSE; | |
4939 ptr = saved_line + pos.col; | |
4940 } | |
4941 else | |
4942 { | |
4943 ptr = ml_get_cursor(); | |
4944 cursor = &curwin->w_cursor; | |
4945 } | |
4946 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4947 // When 'L' is not in 'cpoptions' a tab always takes up 'ts' spaces. |
7 | 4948 if (vim_strchr(p_cpo, CPO_LISTWM) == NULL) |
4949 curwin->w_p_list = FALSE; | |
4950 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4951 // Find first white before the cursor |
7 | 4952 fpos = curwin->w_cursor; |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4953 while (fpos.col > 0 && VIM_ISWHITE(ptr[-1])) |
7 | 4954 { |
4955 --fpos.col; | |
4956 --ptr; | |
4957 } | |
4958 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4959 // In Replace mode, don't change characters before the insert point. |
7 | 4960 if ((State & REPLACE_FLAG) |
4961 && fpos.lnum == Insstart.lnum | |
4962 && fpos.col < Insstart.col) | |
4963 { | |
4964 ptr += Insstart.col - fpos.col; | |
4965 fpos.col = Insstart.col; | |
4966 } | |
4967 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4968 // compute virtual column numbers of first white and cursor |
7 | 4969 getvcol(curwin, &fpos, &vcol, NULL, NULL); |
4970 getvcol(curwin, cursor, &want_vcol, NULL, NULL); | |
4971 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4972 // Use as many TABs as possible. Beware of 'breakindent', 'showbreak' |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4973 // and 'linebreak' adding extra virtual columns. |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4974 while (VIM_ISWHITE(*ptr)) |
7 | 4975 { |
5995 | 4976 i = lbr_chartabsize(NULL, (char_u *)"\t", vcol); |
7 | 4977 if (vcol + i > want_vcol) |
4978 break; | |
4979 if (*ptr != TAB) | |
4980 { | |
4981 *ptr = TAB; | |
4982 if (change_col < 0) | |
4983 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4984 change_col = fpos.col; // Column of first change |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
4985 // May have to adjust Insstart |
7 | 4986 if (fpos.lnum == Insstart.lnum && fpos.col < Insstart.col) |
4987 Insstart.col = fpos.col; | |
4988 } | |
4989 } | |
4990 ++fpos.col; | |
4991 ++ptr; | |
4992 vcol += i; | |
4993 } | |
4994 | |
4995 if (change_col >= 0) | |
4996 { | |
4997 int repl_off = 0; | |
5995 | 4998 char_u *line = ptr; |
7 | 4999 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5000 // Skip over the spaces we need. |
7 | 5001 while (vcol < want_vcol && *ptr == ' ') |
5002 { | |
5995 | 5003 vcol += lbr_chartabsize(line, ptr, vcol); |
7 | 5004 ++ptr; |
5005 ++repl_off; | |
5006 } | |
5007 if (vcol > want_vcol) | |
5008 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5009 // Must have a char with 'showbreak' just before it. |
7 | 5010 --ptr; |
5011 --repl_off; | |
5012 } | |
5013 fpos.col += repl_off; | |
5014 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5015 // Delete following spaces. |
7 | 5016 i = cursor->col - fpos.col; |
5017 if (i > 0) | |
5018 { | |
19045
143d44d8f477
patch 8.2.0083: text properties wrong when tabs and spaces are exchanged
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
5019 #ifdef FEAT_PROP_POPUP |
143d44d8f477
patch 8.2.0083: text properties wrong when tabs and spaces are exchanged
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
5020 if (!(State & VREPLACE_FLAG)) |
143d44d8f477
patch 8.2.0083: text properties wrong when tabs and spaces are exchanged
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
5021 { |
19097
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5022 char_u *newp; |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5023 int col; |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5024 |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5025 newp = alloc(curbuf->b_ml.ml_line_len - i); |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5026 if (newp == NULL) |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5027 return FALSE; |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5028 |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5029 col = ptr - curbuf->b_ml.ml_line_ptr; |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5030 if (col > 0) |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5031 mch_memmove(newp, ptr - col, col); |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5032 mch_memmove(newp + col, ptr + i, |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5033 curbuf->b_ml.ml_line_len - col - i); |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5034 |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5035 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5036 vim_free(curbuf->b_ml.ml_line_ptr); |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5037 curbuf->b_ml.ml_line_ptr = newp; |
19045
143d44d8f477
patch 8.2.0083: text properties wrong when tabs and spaces are exchanged
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
5038 curbuf->b_ml.ml_line_len -= i; |
19097
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5039 curbuf->b_ml.ml_flags = |
bcbc9fe665b5
patch 8.2.0109: corrupted text properties when expanding spaces
Bram Moolenaar <Bram@vim.org>
parents:
19045
diff
changeset
|
5040 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY; |
19045
143d44d8f477
patch 8.2.0083: text properties wrong when tabs and spaces are exchanged
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
5041 } |
143d44d8f477
patch 8.2.0083: text properties wrong when tabs and spaces are exchanged
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
5042 else |
143d44d8f477
patch 8.2.0083: text properties wrong when tabs and spaces are exchanged
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
5043 #endif |
143d44d8f477
patch 8.2.0083: text properties wrong when tabs and spaces are exchanged
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
5044 STRMOVE(ptr, ptr + i); |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5045 // correct replace stack. |
14424
0a69e6e708f9
patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
14419
diff
changeset
|
5046 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG)) |
7 | 5047 for (temp = i; --temp >= 0; ) |
5048 replace_join(repl_off); | |
5049 } | |
33 | 5050 #ifdef FEAT_NETBEANS_INTG |
2210 | 5051 if (netbeans_active()) |
33 | 5052 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
5053 netbeans_removed(curbuf, fpos.lnum, cursor->col, (long)(i + 1)); |
33 | 5054 netbeans_inserted(curbuf, fpos.lnum, cursor->col, |
5055 (char_u *)"\t", 1); | |
5056 } | |
5057 #endif | |
7 | 5058 cursor->col -= i; |
5059 | |
5060 /* | |
5061 * In VREPLACE mode, we haven't changed anything yet. Do it now by | |
5062 * backspacing over the changed spacing and then inserting the new | |
5063 * spacing. | |
5064 */ | |
5065 if (State & VREPLACE_FLAG) | |
5066 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5067 // Backspace from real cursor to change_col |
7 | 5068 backspace_until_column(change_col); |
5069 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5070 // Insert each char in saved_line from changed_col to |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5071 // ptr-cursor |
7 | 5072 ins_bytes_len(saved_line + change_col, |
5073 cursor->col - change_col); | |
5074 } | |
14424
0a69e6e708f9
patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
14419
diff
changeset
|
5075 } |
0a69e6e708f9
patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
14419
diff
changeset
|
5076 |
7 | 5077 if (State & VREPLACE_FLAG) |
5078 vim_free(saved_line); | |
5079 curwin->w_p_list = save_list; | |
5080 } | |
5081 | |
5082 return FALSE; | |
5083 } | |
5084 | |
5085 /* | |
5086 * Handle CR or NL in insert mode. | |
13772
cc21507ee4b1
patch 8.0.1758: open_line() returns TRUE/FALSE for success/failure
Christian Brabandt <cb@256bit.org>
parents:
13718
diff
changeset
|
5087 * Return FAIL when out of memory or can't undo. |
7 | 5088 */ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5089 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5090 ins_eol(int c) |
7 | 5091 { |
5092 int i; | |
5093 | |
5094 if (echeck_abbr(c + ABBR_OFF)) | |
13788
a27d380b257f
patch 8.0.1766: expanding abbreviation doesn't work
Christian Brabandt <cb@256bit.org>
parents:
13772
diff
changeset
|
5095 return OK; |
7 | 5096 if (stop_arrow() == FAIL) |
13788
a27d380b257f
patch 8.0.1766: expanding abbreviation doesn't work
Christian Brabandt <cb@256bit.org>
parents:
13772
diff
changeset
|
5097 return FAIL; |
7 | 5098 undisplay_dollar(); |
5099 | |
5100 /* | |
5101 * Strange Vi behaviour: In Replace mode, typing a NL will not delete the | |
5102 * character under the cursor. Only push a NUL on the replace stack, | |
5103 * nothing to put back when the NL is deleted. | |
5104 */ | |
14424
0a69e6e708f9
patch 8.1.0226: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
14419
diff
changeset
|
5105 if ((State & REPLACE_FLAG) && !(State & VREPLACE_FLAG)) |
7 | 5106 replace_push(NUL); |
5107 | |
5108 /* | |
5109 * In VREPLACE mode, a NL replaces the rest of the line, and starts | |
5110 * replacing the next line, so we push all of the characters left on the | |
5111 * line onto the replace stack. This is not done here though, it is done | |
5112 * in open_line(). | |
5113 */ | |
5114 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5115 // Put cursor on NUL if on the last char and coladd is 1 (happens after |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5116 // CTRL-O). |
844 | 5117 if (virtual_active() && curwin->w_cursor.coladd > 0) |
5118 coladvance(getviscol()); | |
5119 | |
7 | 5120 #ifdef FEAT_RIGHTLEFT |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5121 // NL in reverse insert will always start in the end of |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5122 // current line. |
7 | 5123 if (revins_on) |
5124 curwin->w_cursor.col += (colnr_T)STRLEN(ml_get_cursor()); | |
5125 #endif | |
5126 | |
5127 AppendToRedobuff(NL_STR); | |
5128 i = open_line(FORWARD, | |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
5129 has_format_option(FO_RET_COMS) ? OPENLINE_DO_COM : 0, old_indent); |
7 | 5130 old_indent = 0; |
5131 #ifdef FEAT_CINDENT | |
5132 can_cindent = TRUE; | |
5133 #endif | |
1032 | 5134 #ifdef FEAT_FOLDING |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5135 // When inserting a line the cursor line must never be in a closed fold. |
1032 | 5136 foldOpenCursor(); |
5137 #endif | |
7 | 5138 |
13772
cc21507ee4b1
patch 8.0.1758: open_line() returns TRUE/FALSE for success/failure
Christian Brabandt <cb@256bit.org>
parents:
13718
diff
changeset
|
5139 return i; |
7 | 5140 } |
5141 | |
5142 #ifdef FEAT_DIGRAPHS | |
5143 /* | |
5144 * Handle digraph in insert mode. | |
5145 * Returns character still to be inserted, or NUL when nothing remaining to be | |
5146 * done. | |
5147 */ | |
5148 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5149 ins_digraph(void) |
7 | 5150 { |
5151 int c; | |
5152 int cc; | |
2811 | 5153 int did_putchar = FALSE; |
7 | 5154 |
5155 pc_status = PC_STATUS_UNSET; | |
5156 if (redrawing() && !char_avail()) | |
5157 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5158 // may need to redraw when no more chars available now |
661 | 5159 ins_redraw(FALSE); |
7 | 5160 |
5161 edit_putchar('?', TRUE); | |
2811 | 5162 did_putchar = TRUE; |
7 | 5163 #ifdef FEAT_CMDL_INFO |
5164 add_to_showcmd_c(Ctrl_K); | |
5165 #endif | |
5166 } | |
5167 | |
5168 #ifdef USE_ON_FLY_SCROLL | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5169 dont_scroll = TRUE; // disallow scrolling here |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5170 #endif |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5171 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5172 // don't map the digraph chars. This also prevents the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5173 // mode message to be deleted when ESC is hit |
7 | 5174 ++no_mapping; |
5175 ++allow_keys; | |
1389 | 5176 c = plain_vgetc(); |
7 | 5177 --no_mapping; |
5178 --allow_keys; | |
2811 | 5179 if (did_putchar) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5180 // when the line fits in 'columns' the '?' is at the start of the next |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5181 // line and will not be removed by the redraw |
2811 | 5182 edit_unputchar(); |
2319
c79ccf947487
Fix: When entering a digraph or special character after a line that fits the
Bram Moolenaar <bram@vim.org>
parents:
2297
diff
changeset
|
5183 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5184 if (IS_SPECIAL(c) || mod_mask) // special key |
7 | 5185 { |
5186 #ifdef FEAT_CMDL_INFO | |
5187 clear_showcmd(); | |
5188 #endif | |
5189 insert_special(c, TRUE, FALSE); | |
5190 return NUL; | |
5191 } | |
5192 if (c != ESC) | |
5193 { | |
2811 | 5194 did_putchar = FALSE; |
7 | 5195 if (redrawing() && !char_avail()) |
5196 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5197 // may need to redraw when no more chars available now |
661 | 5198 ins_redraw(FALSE); |
7 | 5199 |
5200 if (char2cells(c) == 1) | |
5201 { | |
661 | 5202 ins_redraw(FALSE); |
7 | 5203 edit_putchar(c, TRUE); |
2811 | 5204 did_putchar = TRUE; |
7 | 5205 } |
5206 #ifdef FEAT_CMDL_INFO | |
5207 add_to_showcmd_c(c); | |
5208 #endif | |
5209 } | |
5210 ++no_mapping; | |
5211 ++allow_keys; | |
1389 | 5212 cc = plain_vgetc(); |
7 | 5213 --no_mapping; |
5214 --allow_keys; | |
2811 | 5215 if (did_putchar) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5216 // when the line fits in 'columns' the '?' is at the start of the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5217 // next line and will not be removed by a redraw |
2811 | 5218 edit_unputchar(); |
7 | 5219 if (cc != ESC) |
5220 { | |
5221 AppendToRedobuff((char_u *)CTRL_V_STR); | |
5222 c = getdigraph(c, cc, TRUE); | |
5223 #ifdef FEAT_CMDL_INFO | |
5224 clear_showcmd(); | |
5225 #endif | |
5226 return c; | |
5227 } | |
5228 } | |
5229 #ifdef FEAT_CMDL_INFO | |
5230 clear_showcmd(); | |
5231 #endif | |
5232 return NUL; | |
5233 } | |
5234 #endif | |
5235 | |
5236 /* | |
5237 * Handle CTRL-E and CTRL-Y in Insert mode: copy char from other line. | |
5238 * Returns the char to be inserted, or NUL if none found. | |
5239 */ | |
3501 | 5240 int |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5241 ins_copychar(linenr_T lnum) |
7 | 5242 { |
5243 int c; | |
5244 int temp; | |
5245 char_u *ptr, *prev_ptr; | |
5995 | 5246 char_u *line; |
7 | 5247 |
5248 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count) | |
5249 { | |
6949 | 5250 vim_beep(BO_COPY); |
7 | 5251 return NUL; |
5252 } | |
5253 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5254 // try to advance to the cursor column |
7 | 5255 temp = 0; |
5995 | 5256 line = ptr = ml_get(lnum); |
7 | 5257 prev_ptr = ptr; |
5258 validate_virtcol(); | |
5259 while ((colnr_T)temp < curwin->w_virtcol && *ptr != NUL) | |
5260 { | |
5261 prev_ptr = ptr; | |
5995 | 5262 temp += lbr_chartabsize_adv(line, &ptr, (colnr_T)temp); |
7 | 5263 } |
5264 if ((colnr_T)temp > curwin->w_virtcol) | |
5265 ptr = prev_ptr; | |
5266 | |
5267 c = (*mb_ptr2char)(ptr); | |
5268 if (c == NUL) | |
6949 | 5269 vim_beep(BO_COPY); |
7 | 5270 return c; |
5271 } | |
5272 | |
449 | 5273 /* |
5274 * CTRL-Y or CTRL-E typed in Insert mode. | |
5275 */ | |
5276 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5277 ins_ctrl_ey(int tc) |
449 | 5278 { |
5279 int c = tc; | |
5280 | |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5281 if (ctrl_x_mode_scroll()) |
449 | 5282 { |
5283 if (c == Ctrl_Y) | |
5284 scrolldown_clamp(); | |
5285 else | |
5286 scrollup_clamp(); | |
5287 redraw_later(VALID); | |
5288 } | |
5289 else | |
5290 { | |
5291 c = ins_copychar(curwin->w_cursor.lnum + (c == Ctrl_Y ? -1 : 1)); | |
5292 if (c != NUL) | |
5293 { | |
5294 long tw_save; | |
5295 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5296 // The character must be taken literally, insert like it |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5297 // was typed after a CTRL-V, and pretend 'textwidth' |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5298 // wasn't set. Digits, 'o' and 'x' are special after a |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5299 // CTRL-V, don't use it for these. |
449 | 5300 if (c < 256 && !isalnum(c)) |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5301 AppendToRedobuff((char_u *)CTRL_V_STR); // CTRL-V |
449 | 5302 tw_save = curbuf->b_p_tw; |
5303 curbuf->b_p_tw = -1; | |
5304 insert_special(c, TRUE, FALSE); | |
5305 curbuf->b_p_tw = tw_save; | |
5306 #ifdef FEAT_RIGHTLEFT | |
5307 revins_chars++; | |
5308 revins_legal++; | |
5309 #endif | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5310 c = Ctrl_V; // pretend CTRL-V is last character |
449 | 5311 auto_format(FALSE, TRUE); |
5312 } | |
5313 } | |
5314 return c; | |
5315 } | |
5316 | |
7 | 5317 /* |
5318 * Get the value that w_virtcol would have when 'list' is off. | |
5319 * Unless 'cpo' contains the 'L' flag. | |
5320 */ | |
15062
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
14985
diff
changeset
|
5321 colnr_T |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5322 get_nolist_virtcol(void) |
7 | 5323 { |
15062
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
14985
diff
changeset
|
5324 // check validity of cursor in current buffer |
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
14985
diff
changeset
|
5325 if (curwin->w_buffer == NULL |
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
14985
diff
changeset
|
5326 || curwin->w_buffer->b_ml.ml_mfp == NULL |
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
14985
diff
changeset
|
5327 || curwin->w_cursor.lnum > curwin->w_buffer->b_ml.ml_line_count) |
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
14985
diff
changeset
|
5328 return 0; |
7 | 5329 if (curwin->w_p_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL) |
5330 return getvcol_nolist(&curwin->w_cursor); | |
5331 validate_virtcol(); | |
5332 return curwin->w_virtcol; | |
5333 } | |
3390 | 5334 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5335 #if defined(FEAT_EVAL) |
3390 | 5336 /* |
5337 * Handle the InsertCharPre autocommand. | |
5338 * "c" is the character that was typed. | |
5339 * Return a pointer to allocated memory with the replacement string. | |
5340 * Return NULL to continue inserting "c". | |
5341 */ | |
5342 static char_u * | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5343 do_insert_char_pre(int c) |
3390 | 5344 { |
3547 | 5345 char_u *res; |
5346 char_u buf[MB_MAXBYTES + 1]; | |
15377
88b0a490816e
patch 8.1.0696: when test_edit fails 'insertmode' may not be reset
Bram Moolenaar <Bram@vim.org>
parents:
15349
diff
changeset
|
5347 int save_State = State; |
3390 | 5348 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5349 // Return quickly when there is nothing to do. |
3390 | 5350 if (!has_insertcharpre()) |
5351 return NULL; | |
5352 | |
3547 | 5353 if (has_mbyte) |
5354 buf[(*mb_char2bytes)(c, buf)] = NUL; | |
5355 else | |
5356 { | |
5357 buf[0] = c; | |
5358 buf[1] = NUL; | |
5359 } | |
5360 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5361 // Lock the text to avoid weird things from happening. |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20187
diff
changeset
|
5362 ++textwinlock; |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5363 set_vim_var_string(VV_CHAR, buf, -1); // set v:char |
3547 | 5364 |
5365 res = NULL; | |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5366 if (ins_apply_autocmds(EVENT_INSERTCHARPRE)) |
3547 | 5367 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5368 // Get the value of v:char. It may be empty or more than one |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5369 // character. Only use it when changed, otherwise continue with the |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5370 // original character to avoid breaking autoindent. |
3547 | 5371 if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0) |
5372 res = vim_strsave(get_vim_var_str(VV_CHAR)); | |
5373 } | |
3390 | 5374 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18763
diff
changeset
|
5375 set_vim_var_string(VV_CHAR, NULL, -1); // clear v:char |
20229
06a1dd50463e
patch 8.2.0670: cannot change window when evaluating 'completefunc'
Bram Moolenaar <Bram@vim.org>
parents:
20187
diff
changeset
|
5376 --textwinlock; |
3390 | 5377 |
15377
88b0a490816e
patch 8.1.0696: when test_edit fails 'insertmode' may not be reset
Bram Moolenaar <Bram@vim.org>
parents:
15349
diff
changeset
|
5378 // Restore the State, it may have been changed. |
88b0a490816e
patch 8.1.0696: when test_edit fails 'insertmode' may not be reset
Bram Moolenaar <Bram@vim.org>
parents:
15349
diff
changeset
|
5379 State = save_State; |
88b0a490816e
patch 8.1.0696: when test_edit fails 'insertmode' may not be reset
Bram Moolenaar <Bram@vim.org>
parents:
15349
diff
changeset
|
5380 |
3390 | 5381 return res; |
5382 } | |
5383 #endif | |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5384 |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5385 #if defined(FEAT_CINDENT) || defined(PROTO) |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5386 int |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18098
diff
changeset
|
5387 get_can_cindent(void) |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5388 { |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5389 return can_cindent; |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5390 } |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18098
diff
changeset
|
5391 |
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18098
diff
changeset
|
5392 void |
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18098
diff
changeset
|
5393 set_can_cindent(int val) |
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18098
diff
changeset
|
5394 { |
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18098
diff
changeset
|
5395 can_cindent = val; |
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18098
diff
changeset
|
5396 } |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5397 #endif |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5398 |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5399 /* |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5400 * Trigger "event" and take care of fixing undo. |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5401 */ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16127
diff
changeset
|
5402 int |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5403 ins_apply_autocmds(event_T event) |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5404 { |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5405 varnumber_T tick = CHANGEDTICK(curbuf); |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5406 int r; |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5407 |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5408 r = apply_autocmds(event, NULL, NULL, FALSE, curbuf); |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5409 |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5410 // If u_savesub() was called then we are not prepared to start |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5411 // a new line. Call u_save() with no contents to fix that. |
20187
79cc97206476
patch 8.2.0649: undo problem whn an InsertLeave autocommand resets undo
Bram Moolenaar <Bram@vim.org>
parents:
20118
diff
changeset
|
5412 // Except when leaving Insert mode. |
79cc97206476
patch 8.2.0649: undo problem whn an InsertLeave autocommand resets undo
Bram Moolenaar <Bram@vim.org>
parents:
20118
diff
changeset
|
5413 if (event != EVENT_INSERTLEAVE && tick != CHANGEDTICK(curbuf)) |
14485
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5414 u_save(curwin->w_cursor.lnum, (linenr_T)(curwin->w_cursor.lnum + 1)); |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5415 |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5416 return r; |
c71d65c3672f
patch 8.1.0256: using setline() in TextChangedI splits undo
Christian Brabandt <cb@256bit.org>
parents:
14465
diff
changeset
|
5417 } |