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