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