annotate src/ops.c @ 19760:9daed26b788b v8.2.0436

patch 8.2.0436: no warnings for incorrect printf arguments Commit: https://github.com/vim/vim/commit/db99f9f29a248b84742b6779c3343123f72065e7 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 23 22:12:22 2020 +0100 patch 8.2.0436: no warnings for incorrect printf arguments Problem: No warnings for incorrect printf arguments. Solution: Fix attribute in declaration. Fix uncovered mistakes. (Dominique Pelle, closes #5834)
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 Mar 2020 22:15:05 +0100
parents b64343cbabc6
children 00a1b89256ea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 9834
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 * op_change, op_yank, do_put, do_join
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7576
diff changeset
17 static void shift_block(oparg_T *oap, int amount);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7576
diff changeset
18 static void mb_adjust_opend(oparg_T *oap);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7576
diff changeset
19 static int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7576
diff changeset
20 static int ends_in_white(linenr_T lnum);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7576
diff changeset
21 static int fmt_check_par(linenr_T, int *, char_u **, int do_comments);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22
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
23 // Flags for third item in "opchars".
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
24 #define OPF_LINES 1 // operator always works on lines
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
25 #define OPF_CHANGE 2 // operator changes 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
26
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 * The names of operators.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 * IMPORTANT: Index must correspond with defines in vim.h!!!
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
30 * The third field holds OPF_ flags.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 static char opchars[][3] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 {
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
34 {NUL, NUL, 0}, // OP_NOP
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
35 {'d', NUL, OPF_CHANGE}, // OP_DELETE
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
36 {'y', NUL, 0}, // OP_YANK
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
37 {'c', NUL, OPF_CHANGE}, // OP_CHANGE
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
38 {'<', NUL, OPF_LINES | OPF_CHANGE}, // OP_LSHIFT
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
39 {'>', NUL, OPF_LINES | OPF_CHANGE}, // OP_RSHIFT
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
40 {'!', NUL, OPF_LINES | OPF_CHANGE}, // OP_FILTER
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
41 {'g', '~', OPF_CHANGE}, // OP_TILDE
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
42 {'=', NUL, OPF_LINES | OPF_CHANGE}, // OP_INDENT
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
43 {'g', 'q', OPF_LINES | OPF_CHANGE}, // OP_FORMAT
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
44 {':', NUL, OPF_LINES}, // OP_COLON
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
45 {'g', 'U', OPF_CHANGE}, // OP_UPPER
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
46 {'g', 'u', OPF_CHANGE}, // OP_LOWER
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
47 {'J', NUL, OPF_LINES | OPF_CHANGE}, // DO_JOIN
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
48 {'g', 'J', OPF_LINES | OPF_CHANGE}, // DO_JOIN_NS
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
49 {'g', '?', OPF_CHANGE}, // OP_ROT13
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
50 {'r', NUL, OPF_CHANGE}, // OP_REPLACE
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
51 {'I', NUL, OPF_CHANGE}, // OP_INSERT
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
52 {'A', NUL, OPF_CHANGE}, // OP_APPEND
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
53 {'z', 'f', OPF_LINES}, // OP_FOLD
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
54 {'z', 'o', OPF_LINES}, // OP_FOLDOPEN
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
55 {'z', 'O', OPF_LINES}, // OP_FOLDOPENREC
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
56 {'z', 'c', OPF_LINES}, // OP_FOLDCLOSE
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
57 {'z', 'C', OPF_LINES}, // OP_FOLDCLOSEREC
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
58 {'z', 'd', OPF_LINES}, // OP_FOLDDEL
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
59 {'z', 'D', OPF_LINES}, // OP_FOLDDELREC
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
60 {'g', 'w', OPF_LINES | OPF_CHANGE}, // OP_FORMAT2
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
61 {'g', '@', OPF_CHANGE}, // OP_FUNCTION
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
62 {Ctrl_A, NUL, OPF_CHANGE}, // OP_NR_ADD
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
63 {Ctrl_X, NUL, OPF_CHANGE}, // OP_NR_SUB
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 * Translate a command name into an operator type.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 * Must only be called with a valid operator name!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
71 get_op_type(int char1, int char2)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
75 if (char1 == 'r') // ignore second character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 return OP_REPLACE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
77 if (char1 == '~') // when tilde is an operator
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 return OP_TILDE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
79 if (char1 == 'g' && char2 == Ctrl_A) // add
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
80 return OP_NR_ADD;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
81 if (char1 == 'g' && char2 == Ctrl_X) // subtract
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
82 return OP_NR_SUB;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 for (i = 0; ; ++i)
13072
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 13047
diff changeset
84 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 if (opchars[i][0] == char1 && opchars[i][1] == char2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 break;
13072
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 13047
diff changeset
87 if (i == (int)(sizeof(opchars) / sizeof(char [3]) - 1))
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 13047
diff changeset
88 {
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 13047
diff changeset
89 internal_error("get_op_type()");
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 13047
diff changeset
90 break;
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 13047
diff changeset
91 }
50aa6da392ce patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents: 13047
diff changeset
92 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 return i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 * Return TRUE if operator "op" always works on whole lines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 */
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
99 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
100 op_on_lines(int op)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 {
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
102 return opchars[op][2] & OPF_LINES;
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
103 }
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
104
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
105 #if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
14019
dc67449d648c patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Christian Brabandt <cb@256bit.org>
parents: 14004
diff changeset
106 /*
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
107 * Return TRUE if operator "op" changes 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
108 */
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
109 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
110 op_is_change(int op)
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
111 {
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
112 return opchars[op][2] & OPF_CHANGE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 }
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
114 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 * Get first operator command character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 * Returns 'g' or 'z' if there is another command character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
121 get_op_char(int optype)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 return opchars[optype][0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 * Get second operator command character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
130 get_extra_op_char(int optype)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 return opchars[optype][1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 * op_shift - handle a shift operation
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
139 op_shift(oparg_T *oap, int curs_top, int amount)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 long i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142 int first_char;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143 int block_col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 if (u_save((linenr_T)(oap->start.lnum - 1),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
146 (linenr_T)(oap->end.lnum + 1)) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149 if (oap->block_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 block_col = curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 for (i = oap->line_count; --i >= 0; )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 first_char = *ml_get_curline();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
155 if (first_char == NUL) // empty line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 curwin->w_cursor.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 else if (oap->block_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 shift_block(oap, amount);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
160 // Move the line right if it doesn't start with '#', 'smartindent'
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
161 // isn't set or 'cindent' isn't set or '#' isn't in 'cino'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 if (first_char != '#' || !preprocs_left())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 #endif
1516
ee9d2d24ea9b updated for version 7.1-231
vimboss
parents: 1477
diff changeset
165 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 ++curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 if (oap->block_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 curwin->w_cursor.lnum = oap->start.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 curwin->w_cursor.col = block_col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
175 else if (curs_top) // put cursor on first line, for ">>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 curwin->w_cursor.lnum = oap->start.lnum;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
178 beginline(BL_SOL | BL_FIX); // shift_line() may have set cursor.col
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
181 --curwin->w_cursor.lnum; // put cursor on last line, for ":>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182
10486
99896ee0cac5 commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents: 10104
diff changeset
183 #ifdef FEAT_FOLDING
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
184 // The cursor line is not in a closed fold
10486
99896ee0cac5 commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents: 10104
diff changeset
185 foldOpenCursor();
99896ee0cac5 commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents: 10104
diff changeset
186 #endif
99896ee0cac5 commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents: 10104
diff changeset
187
99896ee0cac5 commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents: 10104
diff changeset
188
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 if (oap->line_count > p_report)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 {
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
191 char *op;
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
192 char *msg_line_single;
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
193 char *msg_line_plural;
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
194
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 if (oap->op_type == OP_RSHIFT)
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
196 op = ">";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 else
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
198 op = "<";
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
199 msg_line_single = NGETTEXT("%ld line %sed %d time",
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
200 "%ld line %sed %d times", amount);
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
201 msg_line_plural = NGETTEXT("%ld lines %sed %d time",
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
202 "%ld lines %sed %d times", amount);
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
203 vim_snprintf((char *)IObuff, IOSIZE,
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
204 NGETTEXT(msg_line_single, msg_line_plural, oap->line_count),
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
205 oap->line_count, op, amount);
19665
b64343cbabc6 patch 8.2.0389: delayed redraw when shifting text from Insert mode
Bram Moolenaar <Bram@vim.org>
parents: 19477
diff changeset
206 msg_attr_keep((char *)IObuff, 0, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
209 if (!cmdmod.lockmarks)
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
210 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
211 // Set "'[" and "']" marks.
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
212 curbuf->b_op_start = oap->start;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
213 curbuf->b_op_end.lnum = oap->end.lnum;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
214 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
215 if (curbuf->b_op_end.col > 0)
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
216 --curbuf->b_op_end.col;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
217 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 /*
15422
b55b89692fd2 patch 8.1.0719: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15326
diff changeset
221 * Shift the current line one shiftwidth left (if left != 0) or right
b55b89692fd2 patch 8.1.0719: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15326
diff changeset
222 * leaves cursor on first blank in the line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
225 shift_line(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
226 int left,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
227 int round,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
228 int amount,
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
229 int call_changed_bytes) // call changed_bytes()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 int count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 int i, j;
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
233 int sw_val = (int)get_sw_value_indent(curbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
235 count = get_indent(); // get current indent
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
236
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
237 if (round) // round off indent
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 {
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
239 i = count / sw_val; // number of 'shiftwidth' rounded down
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
240 j = count % sw_val; // extra spaces
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
241 if (j && left) // first remove extra spaces
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 --amount;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243 if (left)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
244 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 i -= amount;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246 if (i < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247 i = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 i += amount;
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
251 count = i * sw_val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 }
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
253 else // original vi indent
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 if (left)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 {
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
257 count -= sw_val * amount;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 if (count < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259 count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 else
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
262 count += sw_val * amount;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
265 // Set new indent
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266 if (State & VREPLACE_FLAG)
1516
ee9d2d24ea9b updated for version 7.1-231
vimboss
parents: 1477
diff changeset
267 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268 else
1516
ee9d2d24ea9b updated for version 7.1-231
vimboss
parents: 1477
diff changeset
269 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 * Shift one line of the current block one shiftwidth right or left.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 * Leaves cursor on first character in block.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
277 shift_block(oparg_T *oap, int amount)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 int left = (oap->op_type == OP_LSHIFT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 int oldstate = State;
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
281 int total;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
282 char_u *newp, *oldp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 int oldcol = curwin->w_cursor.col;
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
284 int sw_val = (int)get_sw_value_indent(curbuf);
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
285 int ts_val = (int)curbuf->b_p_ts;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 struct block_def bd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 int incr;
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
288 colnr_T ws_vcol;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289 int i = 0, j = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 int old_p_ri = p_ri;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
294 p_ri = 0; // don't want revins in indent
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
297 State = INSERT; // don't want REPLACE for State
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 if (bd.is_short)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
302 // total is number of screen columns to be inserted/removed
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
303 total = (int)((unsigned)amount * (unsigned)sw_val);
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
304 if ((total / sw_val) != amount)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
305 return; // multiplication overflow
11997
66b677c77467 patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents: 11688
diff changeset
306
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 oldp = ml_get_curline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 if (!left)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 * 1. Get start vcol
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
313 * 2. Total ws vcols
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 * 3. Divvy into TABs & spp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 * 4. Construct new string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
316 */
19195
2ef19eed524a patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents: 19176
diff changeset
317 total += bd.pre_whitesp; // all virtual WS up to & incl a split TAB
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
318 ws_vcol = bd.start_vcol - bd.pre_whitesp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 if (bd.startspaces)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321 if (has_mbyte)
8399
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
322 {
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
323 if ((*mb_ptr2len)(bd.textstart) == 1)
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
324 ++bd.textstart;
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
325 else
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
326 {
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
327 ws_vcol = 0;
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
328 bd.startspaces = 0;
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
329 }
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
330 }
1995
92809ecb9a47 updated for version 7.2-292
vimboss
parents: 1982
diff changeset
331 else
92809ecb9a47 updated for version 7.2-292
vimboss
parents: 1982
diff changeset
332 ++bd.textstart;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333 }
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
334 for ( ; VIM_ISWHITE(*bd.textstart); )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
335 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
336 // TODO: is passing bd.textstart for start of the line OK?
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
337 incr = lbr_chartabsize_adv(bd.textstart, &bd.textstart,
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
338 (colnr_T)(bd.start_vcol));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
339 total += incr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
340 bd.start_vcol += incr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
341 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
342 // OK, now total=all the VWS reqd, and textstart points at the 1st
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
343 // non-ws char in the block.
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
344 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
345 if (!curbuf->b_p_et)
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
346 tabstop_fromto(ws_vcol, ws_vcol + total,
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
347 ts_val, curbuf->b_p_vts_array, &i, &j);
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
348 else
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
349 j = total;
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
350 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 if (!curbuf->b_p_et)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
352 i = ((ws_vcol % ts_val) + total) / ts_val; // number of tabs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 if (i)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
354 j = ((ws_vcol % ts_val) + total) % ts_val; // number of spp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 j = total;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
357 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
358 // if we're splitting a TAB, allow for it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 len = (int)STRLEN(bd.textstart) + 1;
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
361 newp = alloc(bd.textcol + i + j + len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 if (newp == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 mch_memmove(newp, oldp, (size_t)bd.textcol);
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
366 vim_memset(newp + bd.textcol, TAB, (size_t)i);
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
367 vim_memset(newp + bd.textcol + i, ' ', (size_t)j);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
368 // the end
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
371 else // left
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
373 colnr_T destination_col; // column to which text in block will
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
374 // be shifted
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
375 char_u *verbatim_copy_end; // end of the part of the line which is
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
376 // copied verbatim
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
377 colnr_T verbatim_copy_width;// the (displayed) width of this part
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
378 // of line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
379 unsigned fill; // nr of spaces that replace a TAB
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
380 unsigned new_line_len; // the length of the line after the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
381 // block shift
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
382 size_t block_space_width;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
383 size_t shift_amount;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
384 char_u *non_white = bd.textstart;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
385 colnr_T non_white_col;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
386
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
387 /*
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
388 * Firstly, let's find the first non-whitespace character that is
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
389 * displayed after the block's start column and the character's column
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
390 * number. Also, let's calculate the width of all the whitespace
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
391 * characters that are displayed in the block and precede the searched
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
392 * non-whitespace character.
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
393 */
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
394
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
395 // If "bd.startspaces" is set, "bd.textstart" points to the character,
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
396 // the part of which is displayed at the block's beginning. Let's start
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
397 // searching from the next character.
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
398 if (bd.startspaces)
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
399 MB_PTR_ADV(non_white);
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
400
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
401 // The character's column is in "bd.start_vcol".
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
402 non_white_col = bd.start_vcol;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
403
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
404 while (VIM_ISWHITE(*non_white))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405 {
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
406 incr = lbr_chartabsize_adv(bd.textstart, &non_white, non_white_col);
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
407 non_white_col += incr;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 }
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
409
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
410 block_space_width = non_white_col - oap->start_vcol;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
411 // We will shift by "total" or "block_space_width", whichever is less.
1860
f765f9c139de updated for version 7.2-158
vimboss
parents: 1839
diff changeset
412 shift_amount = (block_space_width < (size_t)total
f765f9c139de updated for version 7.2-158
vimboss
parents: 1839
diff changeset
413 ? block_space_width : (size_t)total);
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
414
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
415 // The column to which we will shift the text.
1860
f765f9c139de updated for version 7.2-158
vimboss
parents: 1839
diff changeset
416 destination_col = (colnr_T)(non_white_col - shift_amount);
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
417
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
418 // Now let's find out how much of the beginning of the line we can
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
419 // reuse without modification.
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
420 verbatim_copy_end = bd.textstart;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
421 verbatim_copy_width = bd.start_vcol;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
422
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
423 // If "bd.startspaces" is set, "bd.textstart" points to the character
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
424 // preceding the block. We have to subtract its width to obtain its
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
425 // column number.
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
426 if (bd.startspaces)
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
427 verbatim_copy_width -= bd.start_char_vcols;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
428 while (verbatim_copy_width < destination_col)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 {
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
430 char_u *line = verbatim_copy_end;
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
431
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
432 // TODO: is passing verbatim_copy_end for start of the line OK?
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
433 incr = lbr_chartabsize(line, verbatim_copy_end,
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
434 verbatim_copy_width);
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
435 if (verbatim_copy_width + incr > destination_col)
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
436 break;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
437 verbatim_copy_width += incr;
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
438 MB_PTR_ADV(verbatim_copy_end);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
441 // If "destination_col" is different from the width of the initial
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
442 // part of the line that will be copied, it means we encountered a tab
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
443 // character, which we will have to partly replace with spaces.
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
444 fill = destination_col - verbatim_copy_width;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
445
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
446 // The replacement line will consist of:
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
447 // - the beginning of the original line up to "verbatim_copy_end",
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
448 // - "fill" number of spaces,
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
449 // - the rest of the line, pointed to by non_white.
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
450 new_line_len = (unsigned)(verbatim_copy_end - oldp)
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
451 + fill
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
452 + (unsigned)STRLEN(non_white) + 1;
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
453
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
454 newp = alloc(new_line_len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455 if (newp == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 return;
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
457 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
458 vim_memset(newp + (verbatim_copy_end - oldp), ' ', (size_t)fill);
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
459 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
461 // replace the line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 State = oldstate;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465 curwin->w_cursor.col = oldcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 p_ri = old_p_ri;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 }
15422
b55b89692fd2 patch 8.1.0719: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15326
diff changeset
470
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 * Insert string "s" (b_insert ? before : after) block :AKelly
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473 * Caller must prepare for undo.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
474 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
476 block_insert(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
477 oparg_T *oap,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
478 char_u *s,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
479 int b_insert,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
480 struct block_def *bdp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 {
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
482 int ts_val;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
483 int count = 0; // extra spaces to replace a cut TAB
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
484 int spaces = 0; // non-zero if cutting a TAB
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
485 colnr_T offset; // pointer along new line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
486 unsigned s_len; // STRLEN(s)
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
487 char_u *newp, *oldp; // new, old lines
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
488 linenr_T lnum; // loop var
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489 int oldstate = State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
490
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
491 State = INSERT; // don't want REPLACE for State
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
492 s_len = (unsigned)STRLEN(s);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
495 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
496 block_prep(oap, bdp, lnum, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
497 if (bdp->is_short && b_insert)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
498 continue; // OP_INSERT, line ends before block start
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
499
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
500 oldp = ml_get(lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
501
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
502 if (b_insert)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503 {
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
504 ts_val = bdp->start_char_vcols;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 spaces = bdp->startspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 if (spaces != 0)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
507 count = ts_val - 1; // we're cutting a TAB
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 offset = bdp->textcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
510 else // append
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511 {
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
512 ts_val = bdp->end_char_vcols;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
513 if (!bdp->is_short) // spaces = padding after block
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
514 {
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
515 spaces = (bdp->endspaces ? ts_val - bdp->endspaces : 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
516 if (spaces != 0)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
517 count = ts_val - 1; // we're cutting a TAB
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
518 offset = bdp->textcol + bdp->textlen - (spaces != 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
520 else // spaces = padding to block edge
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
521 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
522 // if $ used, just append to EOL (ie spaces==0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 if (!bdp->is_MAX)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
524 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525 count = spaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526 offset = bdp->textcol + bdp->textlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
527 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
528 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529
6140
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
530 if (has_mbyte && spaces > 0)
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
531 {
6460
29f5cfca3388 updated for version 7.4.559
Bram Moolenaar <bram@vim.org>
parents: 6379
diff changeset
532 int off;
29f5cfca3388 updated for version 7.4.559
Bram Moolenaar <bram@vim.org>
parents: 6379
diff changeset
533
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
534 // Avoid starting halfway a multi-byte character.
6140
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
535 if (b_insert)
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
536 {
6460
29f5cfca3388 updated for version 7.4.559
Bram Moolenaar <bram@vim.org>
parents: 6379
diff changeset
537 off = (*mb_head_off)(oldp, oldp + offset + spaces);
6140
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
538 }
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
539 else
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
540 {
6460
29f5cfca3388 updated for version 7.4.559
Bram Moolenaar <bram@vim.org>
parents: 6379
diff changeset
541 off = (*mb_off_next)(oldp, oldp + offset);
6140
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
542 offset += off;
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
543 }
6460
29f5cfca3388 updated for version 7.4.559
Bram Moolenaar <bram@vim.org>
parents: 6379
diff changeset
544 spaces -= off;
29f5cfca3388 updated for version 7.4.559
Bram Moolenaar <bram@vim.org>
parents: 6379
diff changeset
545 count -= off;
6140
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
546 }
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
547
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
548 newp = alloc(STRLEN(oldp) + s_len + count + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 if (newp == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
550 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
552 // copy up to shifted part
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 mch_memmove(newp, oldp, (size_t)(offset));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
554 oldp += offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
555
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
556 // insert pre-padding
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
557 vim_memset(newp + offset, ' ', (size_t)spaces);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
559 // copy the new text
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561 offset += s_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563 if (spaces && !bdp->is_short)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
565 // insert post-padding
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
566 vim_memset(newp + offset + spaces, ' ', (size_t)(ts_val - spaces));
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
567 // We're splitting a TAB, don't copy it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 oldp++;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
569 // We allowed for that TAB, remember this now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 count++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
572
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573 if (spaces > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
574 offset += count;
1622
149d8b46404c updated for version 7.2a
vimboss
parents: 1563
diff changeset
575 STRMOVE(newp + offset, oldp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
576
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
577 ml_replace(lnum, newp, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
578
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
579 if (lnum == oap->end.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
581 // Set "']" mark to the end of the block instead of the end of
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
582 // the insert in the first line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 curbuf->b_op_end.lnum = oap->end.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
584 curbuf->b_op_end.col = offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
586 } // for all lnum
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
588 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
589
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
590 State = oldstate;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
591 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
593 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
594 * Stuff a string into the typeahead buffer, such that edit() will insert it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
595 * literally ("literally" TRUE) or interpret is as typed characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
596 */
18164
f57481564f2c patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
597 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
598 stuffescaped(char_u *arg, int literally)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
599 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
600 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
601 char_u *start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603 while (*arg != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
605 // Stuff a sequence of normal ASCII characters, that's fast. Also
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
606 // stuff K_SPECIAL to get the effect of a special key when "literally"
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
607 // is TRUE.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 start = arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609 while ((*arg >= ' '
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 #ifndef EBCDIC
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
611 && *arg < DEL // EBCDIC: chars above space are normal
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 || (*arg == K_SPECIAL && !literally))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 ++arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 if (arg > start)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 stuffReadbuffLen(start, (long)(arg - start));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
619 // stuff a single special character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 if (*arg != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622 if (has_mbyte)
2446
348f64c129df Fixed: CTRL-R in Insert mode doesn't insert composing characters.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
623 c = mb_cptr2char_adv(&arg);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
625 c = *arg++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
626 if (literally && ((c < ' ' && c != TAB) || c == DEL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 stuffcharReadbuff(Ctrl_V);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628 stuffcharReadbuff(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
630 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
631 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
632
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
633 /*
2289
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
634 * Handle a delete operation.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
635 *
2289
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
636 * Return FAIL if undo failed, OK otherwise.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
637 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
638 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
639 op_delete(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
640 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
641 int n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
642 linenr_T lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 char_u *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
644 char_u *newp, *oldp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 struct block_def bd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 int did_yank = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
649 if (curbuf->b_ml.ml_flags & ML_EMPTY) // nothing to do
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
652 // Nothing to delete, return here. Do prepare undo, for op_change().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 if (oap->empty)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654 return u_save_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656 if (!curbuf->b_p_ma)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 {
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15428
diff changeset
658 emsg(_(e_modifiable));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 #ifdef FEAT_CLIPBOARD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 adjust_clip_reg(&oap->regname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 mb_adjust_opend(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668
2289
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
669 /*
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
670 * Imitate the strange Vi behaviour: If the delete spans more than one
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
671 * line and motion_type == MCHAR and the result is a blank line, make the
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
672 * delete linewise. Don't do this for the change command or Visual mode.
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
673 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674 if ( oap->motion_type == MCHAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
675 && !oap->is_VIsual
50
90188be4861f updated for version 7.0028
vimboss
parents: 45
diff changeset
676 && !oap->block_mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677 && oap->line_count > 1
3254
2f075595590f updated for version 7.3.396
Bram Moolenaar <bram@vim.org>
parents: 3252
diff changeset
678 && oap->motion_force == NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
679 && oap->op_type == OP_DELETE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 {
2957
fe6ad3fd8532 updated for version 7.3.251
Bram Moolenaar <bram@vim.org>
parents: 2896
diff changeset
681 ptr = ml_get(oap->end.lnum) + oap->end.col;
fe6ad3fd8532 updated for version 7.3.251
Bram Moolenaar <bram@vim.org>
parents: 2896
diff changeset
682 if (*ptr != NUL)
fe6ad3fd8532 updated for version 7.3.251
Bram Moolenaar <bram@vim.org>
parents: 2896
diff changeset
683 ptr += oap->inclusive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 ptr = skipwhite(ptr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 if (*ptr == NUL && inindent(0))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 oap->motion_type = MLINE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688
2289
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
689 /*
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
690 * Check for trying to delete (e.g. "D") in an empty line.
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
691 * Note: For the change operator it is ok.
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
692 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 if ( oap->motion_type == MCHAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694 && oap->line_count == 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695 && oap->op_type == OP_DELETE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 && *ml_get(oap->start.lnum) == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 /*
446
7472c565592a updated for version 7.0117
vimboss
parents: 419
diff changeset
699 * It's an error to operate on an empty region, when 'E' included in
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 * 'cpoptions' (Vi compatible).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 */
446
7472c565592a updated for version 7.0117
vimboss
parents: 419
diff changeset
702 if (virtual_op)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
703 // Virtual editing: Nothing gets deleted, but we set the '[ and ']
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
704 // marks as if it happened.
446
7472c565592a updated for version 7.0117
vimboss
parents: 419
diff changeset
705 goto setmarks;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
707 beep_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710
2289
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
711 /*
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
712 * Do a yank of whatever we're about to delete.
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
713 * If a yank register was specified, put the deleted text into that
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
714 * register. For the black hole register '_' don't yank anything.
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
715 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 if (oap->regname != '_')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718 if (oap->regname != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
720 // check for read-only register
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
721 if (!valid_yank_reg(oap->regname, TRUE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
722 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723 beep_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
726 get_yank_register(oap->regname, TRUE); // yank into specif'd reg.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
727 if (op_yank(oap, TRUE, FALSE) == OK) // yank without message
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
728 did_yank = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
731 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 * Put deleted text into register 1 and shift number registers if the
15987
29de75f53b1a patch 8.1.0999: use register one too often and not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 15967
diff changeset
733 * delete contains a line break, or when using a specific operator (Vi
29de75f53b1a patch 8.1.0999: use register one too often and not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 15967
diff changeset
734 * compatible)
3782
063765c3cebb updated for version 7.3.649
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
735 * Use the register name from before adjust_clip_reg() may have
063765c3cebb updated for version 7.3.649
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
736 * changed it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 */
15987
29de75f53b1a patch 8.1.0999: use register one too often and not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 15967
diff changeset
738 if (oap->motion_type == MLINE || oap->line_count > 1
29de75f53b1a patch 8.1.0999: use register one too often and not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 15967
diff changeset
739 || oap->use_reg_one)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740 {
10827
e366b968bf08 patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents: 10803
diff changeset
741 shift_delete_registers();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
742 if (op_yank(oap, TRUE, FALSE) == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
743 did_yank = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
744 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
745
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
746 // Yank into small delete register when no named register specified
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
747 // and the delete is within one line.
3468
b1a42d2522fb updated for version 7.3.498
Bram Moolenaar <bram@vim.org>
parents: 3421
diff changeset
748 if ((
b1a42d2522fb updated for version 7.3.498
Bram Moolenaar <bram@vim.org>
parents: 3421
diff changeset
749 #ifdef FEAT_CLIPBOARD
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
750 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
751 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
3468
b1a42d2522fb updated for version 7.3.498
Bram Moolenaar <bram@vim.org>
parents: 3421
diff changeset
752 #endif
b1a42d2522fb updated for version 7.3.498
Bram Moolenaar <bram@vim.org>
parents: 3421
diff changeset
753 oap->regname == 0) && oap->motion_type != MLINE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
754 && oap->line_count == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
755 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 oap->regname = '-';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
757 get_yank_register(oap->regname, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
758 if (op_yank(oap, TRUE, FALSE) == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
759 did_yank = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
760 oap->regname = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
761 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
762
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
763 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
764 * If there's too much stuff to fit in the yank register, then get a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
765 * confirmation before doing the delete. This is crude, but simple.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
766 * And it avoids doing a delete of something we can't put back if we
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
767 * want.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
769 if (!did_yank)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
770 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
771 int msg_silent_save = msg_silent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
772
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
773 msg_silent = 0; // must display the prompt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
774 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
775 msg_silent = msg_silent_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
776 if (n != 'y')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
777 {
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15428
diff changeset
778 emsg(_(e_abort));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
779 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
780 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
781 }
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12996
diff changeset
782
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13254
diff changeset
783 #if defined(FEAT_EVAL)
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12996
diff changeset
784 if (did_yank && has_textyankpost())
18164
f57481564f2c patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
785 yank_do_autocmd(oap, get_y_current());
13037
6e81a68d63a1 patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents: 12996
diff changeset
786 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
787 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
788
2289
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
789 /*
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
790 * block mode delete
3331756e4232 Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents: 2278
diff changeset
791 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
792 if (oap->block_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
793 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
794 if (u_save((linenr_T)(oap->start.lnum - 1),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
795 (linenr_T)(oap->end.lnum + 1)) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
796 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
797
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
798 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
799 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800 block_prep(oap, &bd, lnum, TRUE);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
801 if (bd.textlen == 0) // nothing to delete
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
802 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
803
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
804 // Adjust cursor position for tab replaced by spaces and 'lbr'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
805 if (lnum == curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
806 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
807 curwin->w_cursor.col = bd.textcol + bd.startspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
808 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
809 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
810
16682
7847d281cbbf patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents: 16680
diff changeset
811 // "n" == number of chars deleted
7847d281cbbf patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents: 16680
diff changeset
812 // If we delete a TAB, it may be replaced by several characters.
7847d281cbbf patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents: 16680
diff changeset
813 // Thus the number of characters may increase!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
814 n = bd.textlen - bd.startspaces - bd.endspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
815 oldp = ml_get(lnum);
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
816 newp = alloc(STRLEN(oldp) + 1 - n);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
817 if (newp == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 continue;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
819 // copy up to deleted part
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820 mch_memmove(newp, oldp, (size_t)bd.textcol);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
821 // insert spaces
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
822 vim_memset(newp + bd.textcol, ' ',
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823 (size_t)(bd.startspaces + bd.endspaces));
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
824 // copy the part after the deleted part
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
825 oldp += bd.textcol + bd.textlen;
1622
149d8b46404c updated for version 7.2a
vimboss
parents: 1563
diff changeset
826 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
827 // replace the line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
828 ml_replace(lnum, newp, FALSE);
16682
7847d281cbbf patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents: 16680
diff changeset
829
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
830 #ifdef FEAT_PROP_POPUP
16682
7847d281cbbf patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents: 16680
diff changeset
831 if (curbuf->b_has_textprop && n != 0)
16714
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
832 adjust_prop_columns(lnum, bd.textcol, -n, 0);
16682
7847d281cbbf patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents: 16680
diff changeset
833 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 check_cursor_col();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
837 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
838 oap->end.lnum + 1, 0L);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
839 oap->line_count = 0; // no lines deleted
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
840 }
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5730
diff changeset
841 else if (oap->motion_type == MLINE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
842 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
843 if (oap->op_type == OP_CHANGE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
845 // Delete the lines except the first one. Temporarily move the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
846 // cursor to the next line. Save the current line number, if the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
847 // last line is deleted it may be changed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
848 if (oap->line_count > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
849 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850 lnum = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
851 ++curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
852 del_lines((long)(oap->line_count - 1), TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853 curwin->w_cursor.lnum = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
854 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
855 if (u_save_cursor() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
856 return FAIL;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
857 if (curbuf->b_p_ai) // don't delete indent
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
858 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
859 beginline(BL_WHITE); // cursor on first non-white
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
860 did_ai = TRUE; // delete the indent when ESC hit
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
861 ai_col = curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
862 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
863 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
864 beginline(0); // cursor in column 0
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
865 truncate_line(FALSE); // delete the rest of the line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
866 // leave cursor past last char in line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
867 if (oap->line_count > 1)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
868 u_clearline(); // "U" command not possible after "2cc"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
869 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
870 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
871 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
872 del_lines(oap->line_count, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
873 beginline(BL_WHITE | BL_FIX);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
874 u_clearline(); // "U" command not possible after "dd"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
875 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
876 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
877 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
878 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
879 if (virtual_op)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
880 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
881 int endcol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
882
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
883 // For virtualedit: break the tabs that are partly included.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
884 if (gchar_pos(&oap->start) == '\t')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
885 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
886 if (u_save_cursor() == FAIL) // save first line for undo
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
887 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
888 if (oap->line_count == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
889 endcol = getviscol2(oap->end.col, oap->end.coladd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
890 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
891 oap->start = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
892 if (oap->line_count == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
893 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
894 coladvance(endcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
895 oap->end.col = curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
896 oap->end.coladd = curwin->w_cursor.coladd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
897 curwin->w_cursor = oap->start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
898 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
899 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
900
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
901 // Break a tab only when it's included in the area.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
902 if (gchar_pos(&oap->end) == '\t'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
903 && (int)oap->end.coladd < oap->inclusive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
904 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
905 // save last line for undo
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
906 if (u_save((linenr_T)(oap->end.lnum - 1),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
907 (linenr_T)(oap->end.lnum + 1)) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
908 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
909 curwin->w_cursor = oap->end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
911 oap->end = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
912 curwin->w_cursor = oap->start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
913 }
18481
26256dcadd77 patch 8.1.2235: "C" with 'virtualedit' set does not include multi-byte char
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
914 if (has_mbyte)
26256dcadd77 patch 8.1.2235: "C" with 'virtualedit' set does not include multi-byte char
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
915 mb_adjust_opend(oap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
916 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
917
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
918 if (oap->line_count == 1) // delete characters within one line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
919 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
920 if (u_save_cursor() == FAIL) // save line for undo
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
921 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
922
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
923 // if 'cpoptions' contains '$', display '$' at end of change
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5730
diff changeset
924 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
925 && oap->op_type == OP_CHANGE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
926 && oap->end.lnum == curwin->w_cursor.lnum
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5730
diff changeset
927 && !oap->is_VIsual)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
928 display_dollar(oap->end.col - !oap->inclusive);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
929
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
930 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
931
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
932 if (virtual_op)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
933 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
934 // fix up things for virtualedit-delete:
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
935 // break the tabs which are going to get in our way
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
936 char_u *curline = ml_get_curline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
937 int len = (int)STRLEN(curline);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
938
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
939 if (oap->end.coladd != 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
940 && (int)oap->end.col >= len - 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
941 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
942 n++;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
943 // Delete at least one char (e.g, when on a control char).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
944 if (n == 0 && oap->start.coladd != oap->end.coladd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
945 n = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
946
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
947 // When deleted a char in the line, reset coladd.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
948 if (gchar_cursor() != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
949 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
950 }
6826
bf3e6012dfbd patch 7.4.734
Bram Moolenaar <bram@vim.org>
parents: 6807
diff changeset
951 (void)del_bytes((long)n, !virtual_op,
bf3e6012dfbd patch 7.4.734
Bram Moolenaar <bram@vim.org>
parents: 6807
diff changeset
952 oap->op_type == OP_DELETE && !oap->is_VIsual);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
953 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
954 else // delete characters between lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
955 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
956 pos_T curpos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
957
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
958 // save deleted and changed lines for undo
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
959 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
960 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
961 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
962
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
963 truncate_line(TRUE); // delete from cursor to end of line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
964
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
965 curpos = curwin->w_cursor; // remember curwin->w_cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
966 ++curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
967 del_lines((long)(oap->line_count - 2), FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
968
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
969 // delete from start of line until op_end
2957
fe6ad3fd8532 updated for version 7.3.251
Bram Moolenaar <bram@vim.org>
parents: 2896
diff changeset
970 n = (oap->end.col + 1 - !oap->inclusive);
6826
bf3e6012dfbd patch 7.4.734
Bram Moolenaar <bram@vim.org>
parents: 6807
diff changeset
971 curwin->w_cursor.col = 0;
bf3e6012dfbd patch 7.4.734
Bram Moolenaar <bram@vim.org>
parents: 6807
diff changeset
972 (void)del_bytes((long)n, !virtual_op,
bf3e6012dfbd patch 7.4.734
Bram Moolenaar <bram@vim.org>
parents: 6807
diff changeset
973 oap->op_type == OP_DELETE && !oap->is_VIsual);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
974 curwin->w_cursor = curpos; // restore curwin->w_cursor
6826
bf3e6012dfbd patch 7.4.734
Bram Moolenaar <bram@vim.org>
parents: 6807
diff changeset
975 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
978
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
980
446
7472c565592a updated for version 7.0117
vimboss
parents: 419
diff changeset
981 setmarks:
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
982 if (!cmdmod.lockmarks)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
983 {
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
984 if (oap->block_mode)
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
985 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
986 curbuf->b_op_end.lnum = oap->end.lnum;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
987 curbuf->b_op_end.col = oap->start.col;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
988 }
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
989 else
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
990 curbuf->b_op_end = oap->start;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
991 curbuf->b_op_start = oap->start;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
992 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
993
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
994 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
995 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
996
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
997 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
998 * Adjust end of operating area for ending on a multi-byte character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
999 * Used for deletion.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1000 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1001 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1002 mb_adjust_opend(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1003 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1004 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1005
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1006 if (oap->inclusive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1007 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1008 p = ml_get(oap->end.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1009 oap->end.col += mb_tail_off(p, p + oap->end.col);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1010 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1011 }
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15555
diff changeset
1012
14216
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1013 /*
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1014 * Replace the character under the cursor with "c".
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1015 * This takes care of multi-byte characters.
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1016 */
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1017 static void
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1018 replace_character(int c)
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1019 {
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1020 int n = State;
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1021
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1022 State = REPLACE;
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1023 ins_char(c);
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1024 State = n;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1025 // Backup to the replaced character.
14216
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1026 dec_cursor();
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1027 }
15422
b55b89692fd2 patch 8.1.0719: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15326
diff changeset
1028
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1029 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1030 * Replace a whole area with one character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1031 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1032 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1033 op_replace(oparg_T *oap, int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1034 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1035 int n, numc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1036 int num_chars;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1037 char_u *newp, *oldp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1038 size_t oldlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1039 struct block_def bd;
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1040 char_u *after_p = NULL;
13202
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1041 int had_ctrl_v_cr = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1042
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1043 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1044 return OK; // nothing to do
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045
13202
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1046 if (c == REPLACE_CR_NCHAR)
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1047 {
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1048 had_ctrl_v_cr = TRUE;
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1049 c = CAR;
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1050 }
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1051 else if (c == REPLACE_NL_NCHAR)
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1052 {
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1053 had_ctrl_v_cr = TRUE;
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1054 c = NL;
2941a86f8aaa patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents: 13072
diff changeset
1055 }
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1056
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 mb_adjust_opend(oap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1059
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1060 if (u_save((linenr_T)(oap->start.lnum - 1),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061 (linenr_T)(oap->end.lnum + 1)) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1062 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1064 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1065 * block mode replace
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1066 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1067 if (oap->block_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1069 bd.is_MAX = (curwin->w_curswant == MAXCOL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1070 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1072 curwin->w_cursor.col = 0; // make sure cursor position is valid
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1073 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1075 continue; // nothing to replace
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1076
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1077 // n == number of extra chars required
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1078 // If we split a TAB, it may be replaced by several characters.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1079 // Thus the number of characters may increase!
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1080 // If the range starts in virtual space, count the initial
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1081 // coladd offset as part of "startspaces"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082 if (virtual_op && bd.is_short && *bd.textstart == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1083 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1084 pos_T vpos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1085
1982
b1b09b68d706 updated for version 7.2-279
vimboss
parents: 1969
diff changeset
1086 vpos.lnum = curwin->w_cursor.lnum;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1087 getvpos(&vpos, oap->start_vcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088 bd.startspaces += vpos.coladd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1089 n = bd.startspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1091 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1092 // allow for pre spaces
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1093 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1094
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1095 // allow for post spp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 n += (bd.endspaces
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 && !bd.is_oneChar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1099 // Figure out how many characters to replace.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100 numc = oap->end_vcol - oap->start_vcol + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101 if (bd.is_short && (!virtual_op || bd.is_MAX))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1102 numc -= (oap->end_vcol - bd.end_vcol) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1103
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1104 // A double-wide character can be replaced only up to half the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1105 // times.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1106 if ((*mb_char2cells)(c) > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1107 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1108 if ((numc & 1) && !bd.is_short)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1110 ++bd.endspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1111 ++n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1112 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1113 numc = numc / 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1114 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1115
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1116 // Compute bytes needed, move character count to num_chars.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1117 num_chars = numc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1118 numc *= (*mb_char2len)(c);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1119 // oldlen includes textlen, so don't double count
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1120 n += numc - bd.textlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1121
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1122 oldp = ml_get_curline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1123 oldlen = STRLEN(oldp);
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
1124 newp = alloc(oldlen + 1 + n);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1125 if (newp == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1126 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1127 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1128 // copy up to deleted part
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1129 mch_memmove(newp, oldp, (size_t)bd.textcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1130 oldp += bd.textcol + bd.textlen;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1131 // insert pre-spaces
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
1132 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1133 // insert replacement chars CHECK FOR ALLOCATED SPACE
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1134 // REPLACE_CR_NCHAR/REPLACE_NL_NCHAR is used for entering CR
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1135 // literally.
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1136 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137 {
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1138 if (has_mbyte)
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1139 {
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1140 n = (int)STRLEN(newp);
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1141 while (--num_chars >= 0)
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1142 n += (*mb_char2bytes)(c, newp + n);
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1143 }
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1144 else
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
1145 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1146 if (!bd.is_short)
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1147 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1148 // insert post-spaces
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
1149 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1150 // copy the part after the changed part
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1151 STRMOVE(newp + STRLEN(newp), oldp);
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1152 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1155 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1156 // Replacing with \r or \n means splitting the line.
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
1157 after_p = alloc(oldlen + 1 + n - STRLEN(newp));
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1158 if (after_p != NULL)
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1159 STRMOVE(after_p, oldp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1160 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1161 // replace the line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1162 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1163 if (after_p != NULL)
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1164 {
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1165 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1166 appended_lines_mark(curwin->w_cursor.lnum, 1L);
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1167 oap->end.lnum++;
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1168 vim_free(after_p);
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
1169 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1170 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1171 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1172 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1173 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1174 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175 * MCHAR and MLINE motion replace.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1176 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1177 if (oap->motion_type == MLINE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1178 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1179 oap->start.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1180 curwin->w_cursor.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1181 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1182 if (oap->end.col)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1183 --oap->end.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1184 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1185 else if (!oap->inclusive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 dec(&(oap->end));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1187
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11065
diff changeset
1188 while (LTOREQ_POS(curwin->w_cursor, oap->end))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1189 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1190 n = gchar_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1191 if (n != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1192 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1195 // This is slow, but it handles replacing a single-byte
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1196 // with a multi-byte and the other way around.
4203
eea32254940f updated for version 7.3.853
Bram Moolenaar <bram@vim.org>
parents: 4201
diff changeset
1197 if (curwin->w_cursor.lnum == oap->end.lnum)
eea32254940f updated for version 7.3.853
Bram Moolenaar <bram@vim.org>
parents: 4201
diff changeset
1198 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
14216
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1199 replace_character(c);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1200 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1201 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1202 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1203 if (n == TAB)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1204 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1205 int end_vcol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1206
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 if (curwin->w_cursor.lnum == oap->end.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1208 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1209 // oap->end has to be recalculated when
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1210 // the tab breaks
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 end_vcol = getviscol2(oap->end.col,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212 oap->end.coladd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1214 coladvance_force(getviscol());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1215 if (curwin->w_cursor.lnum == oap->end.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1216 getvpos(&oap->end, end_vcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217 }
14216
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1218 PBYTE(curwin->w_cursor, c);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1222 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223 int virtcols = oap->end.coladd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1225 if (curwin->w_cursor.lnum == oap->start.lnum
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1226 && oap->start.col == oap->end.col && oap->start.coladd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1227 virtcols -= oap->start.coladd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1228
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1229 // oap->end has been trimmed so it's effectively inclusive;
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1230 // as a result an extra +1 must be counted so we don't
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1231 // trample the NUL byte.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1233 curwin->w_cursor.col -= (virtcols + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 for (; virtcols >= 0; virtcols--)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1235 {
14216
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1236 if ((*mb_char2len)(c) > 1)
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1237 replace_character(c);
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1238 else
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1239 PBYTE(curwin->w_cursor, c);
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1240 if (inc(&curwin->w_cursor) == -1)
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1241 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1245 // Advance to next character, stop at the end of the file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 if (inc_cursor() == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1250
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1251 curwin->w_cursor = oap->start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1252 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1253 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1255 if (!cmdmod.lockmarks)
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1256 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1257 // Set "'[" and "']" marks.
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1258 curbuf->b_op_start = oap->start;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1259 curbuf->b_op_end = oap->end;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1260 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1262 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1263 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1264
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7576
diff changeset
1265 static int swapchars(int op_type, pos_T *pos, int length);
1525
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1266
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1268 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1269 */
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
1270 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1271 op_tilde(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1272 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1273 pos_T pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1274 struct block_def bd;
1528
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1275 int did_change = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 if (u_save((linenr_T)(oap->start.lnum - 1),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 (linenr_T)(oap->end.lnum + 1)) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1281 pos = oap->start;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1282 if (oap->block_mode) // Visual block mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1283 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1284 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1285 {
1766
bb4797166e4c updated for version 7.2-064
vimboss
parents: 1622
diff changeset
1286 int one_change;
bb4797166e4c updated for version 7.2-064
vimboss
parents: 1622
diff changeset
1287
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1288 block_prep(oap, &bd, pos.lnum, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1289 pos.col = bd.textcol;
1766
bb4797166e4c updated for version 7.2-064
vimboss
parents: 1622
diff changeset
1290 one_change = swapchars(oap->op_type, &pos, bd.textlen);
bb4797166e4c updated for version 7.2-064
vimboss
parents: 1622
diff changeset
1291 did_change |= one_change;
1525
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1292
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5730
diff changeset
1293 #ifdef FEAT_NETBEANS_INTG
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2061
diff changeset
1294 if (netbeans_active() && one_change)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1295 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1296 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1297
33
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 22
diff changeset
1298 netbeans_removed(curbuf, pos.lnum, bd.textcol,
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 22
diff changeset
1299 (long)bd.textlen);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1300 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2061
diff changeset
1301 &ptr[bd.textcol], bd.textlen);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1302 }
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5730
diff changeset
1303 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1304 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1305 if (did_change)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1306 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1307 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1308 else // not block mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1309 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1310 if (oap->motion_type == MLINE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1311 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1312 oap->start.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1313 pos.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1314 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1315 if (oap->end.col)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1316 --oap->end.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1317 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1318 else if (!oap->inclusive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1319 dec(&(oap->end));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1320
1528
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1321 if (pos.lnum == oap->end.lnum)
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1322 did_change = swapchars(oap->op_type, &pos,
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1323 oap->end.col - pos.col + 1);
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1324 else
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1325 for (;;)
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1326 {
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1327 did_change |= swapchars(oap->op_type, &pos,
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1328 pos.lnum == oap->end.lnum ? oap->end.col + 1:
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1329 (int)STRLEN(ml_get_pos(&pos)));
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11065
diff changeset
1330 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1)
1528
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1331 break;
e212d1a40ca9 updated for version 7.1-243
vimboss
parents: 1525
diff changeset
1332 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1333 if (did_change)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1334 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1335 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1337 #ifdef FEAT_NETBEANS_INTG
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2061
diff changeset
1338 if (netbeans_active() && did_change)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1339 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1340 char_u *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1341 int count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1342
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1343 pos = oap->start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1344 while (pos.lnum < oap->end.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1345 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1346 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 777
diff changeset
1347 count = (int)STRLEN(ptr) - pos.col;
33
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 22
diff changeset
1348 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1349 netbeans_inserted(curbuf, pos.lnum, pos.col,
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2061
diff changeset
1350 &ptr[pos.col], count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1351 pos.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1352 pos.lnum++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1353 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1354 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1355 count = oap->end.col - pos.col + 1;
33
f6033dcbaf31 updated for version 7.0020
vimboss
parents: 22
diff changeset
1356 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1357 netbeans_inserted(curbuf, pos.lnum, pos.col,
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2061
diff changeset
1358 &ptr[pos.col], count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1359 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1360 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1361 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1362 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1363
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1364 if (!did_change && oap->is_VIsual)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1365 // No change: need to remove the Visual selection
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1366 redraw_curbuf_later(INVERTED);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1367
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1368 if (!cmdmod.lockmarks)
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1369 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1370 // Set '[ and '] marks.
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1371 curbuf->b_op_start = oap->start;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1372 curbuf->b_op_end = oap->end;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1373 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1374
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1375 if (oap->line_count > p_report)
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15428
diff changeset
1376 smsg(NGETTEXT("%ld line changed", "%ld lines changed",
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
1377 oap->line_count), oap->line_count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1378 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1379
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1380 /*
1525
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1381 * Invoke swapchar() on "length" bytes at position "pos".
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1382 * "pos" is advanced to just after the changed characters.
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1383 * "length" is rounded up to include the whole last multi-byte character.
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1384 * Also works correctly when the number of bytes changes.
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1385 * Returns TRUE if some character was changed.
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1386 */
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1387 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1388 swapchars(int op_type, pos_T *pos, int length)
1525
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1389 {
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1390 int todo;
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1391 int did_change = 0;
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1392
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1393 for (todo = length; todo > 0; --todo)
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1394 {
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1395 if (has_mbyte)
5288
46cf49cc9289 updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents: 5245
diff changeset
1396 {
46cf49cc9289 updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents: 5245
diff changeset
1397 int len = (*mb_ptr2len)(ml_get_pos(pos));
46cf49cc9289 updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents: 5245
diff changeset
1398
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1399 // we're counting bytes, not characters
5288
46cf49cc9289 updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents: 5245
diff changeset
1400 if (len > 0)
46cf49cc9289 updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents: 5245
diff changeset
1401 todo -= len - 1;
46cf49cc9289 updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents: 5245
diff changeset
1402 }
1525
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1403 did_change |= swapchar(op_type, pos);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1404 if (inc(pos) == -1) // at end of file
1525
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1405 break;
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1406 }
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1407 return did_change;
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1408 }
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1409
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1410 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1411 * If op_type == OP_UPPER: make uppercase,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1412 * if op_type == OP_LOWER: make lowercase,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1413 * if op_type == OP_ROT13: do rot13 encoding,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1414 * else swap case of character at 'pos'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1415 * returns TRUE when something actually changed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1416 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1417 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1418 swapchar(int op_type, pos_T *pos)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1419 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1420 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1421 int nc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1422
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1423 c = gchar_pos(pos);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1424
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1425 // Only do rot13 encoding for ASCII characters.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1426 if (c >= 0x80 && op_type == OP_ROT13)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1427 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1428
1525
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1429 if (op_type == OP_UPPER && c == 0xdf
76985a406456 updated for version 7.1-240
vimboss
parents: 1516
diff changeset
1430 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
493
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1431 {
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1432 pos_T sp = curwin->w_cursor;
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1433
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1434 // Special handling of German sharp s: change to "SS".
493
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1435 curwin->w_cursor = *pos;
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1436 del_char(FALSE);
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1437 ins_char('S');
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1438 ins_char('S');
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1439 curwin->w_cursor = sp;
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1440 inc(pos);
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1441 }
06364aa0d597 updated for version 7.0135
vimboss
parents: 480
diff changeset
1442
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1443 if (enc_dbcs != 0 && c >= 0x100) // No lower/uppercase letter
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1444 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1445 nc = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1446 if (MB_ISLOWER(c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1447 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1448 if (op_type == OP_ROT13)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1449 nc = ROT13(c, 'a');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1450 else if (op_type != OP_LOWER)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1451 nc = MB_TOUPPER(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1452 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1453 else if (MB_ISUPPER(c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1454 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1455 if (op_type == OP_ROT13)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1456 nc = ROT13(c, 'A');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1457 else if (op_type != OP_UPPER)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1458 nc = MB_TOLOWER(c);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1459 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1460 if (nc != c)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1461 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1462 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1463 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1464 pos_T sp = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1465
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1466 curwin->w_cursor = *pos;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1467 // don't use del_char(), it also removes composing chars
2451
0b8612c2814d Fix: changing case of a character removed combining characters.
Bram Moolenaar <bram@vim.org>
parents: 2446
diff changeset
1468 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1469 ins_char(nc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1470 curwin->w_cursor = sp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1471 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1472 else
14216
12bdbf9f7e20 patch 8.1.0125: virtual edit replace with multi-byte fails at end of line
Christian Brabandt <cb@256bit.org>
parents: 14202
diff changeset
1473 PBYTE(*pos, nc);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1474 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1475 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1476 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1477 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1478
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1479 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1480 * op_insert - Insert and append operators for Visual mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1481 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1482 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1483 op_insert(oparg_T *oap, long count1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1484 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1485 long ins_len, pre_textlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1486 char_u *firstline, *ins_text;
12329
0b10cff73322 patch 8.0.1044: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 12327
diff changeset
1487 colnr_T ind_pre = 0, ind_post;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1488 struct block_def bd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1489 int i;
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1490 pos_T t1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1491
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1492 // edit() changes this - record it for OP_APPEND
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1493 bd.is_MAX = (curwin->w_curswant == MAXCOL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1494
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1495 // vis block is still marked. Get rid of it now.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1496 curwin->w_cursor.lnum = oap->start.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 update_screen(INVERTED);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1498
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1499 if (oap->block_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1500 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1501 // When 'virtualedit' is used, need to insert the extra spaces before
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1502 // doing block_prep(). When only "block" is used, virtual edit is
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1503 // already disabled, but still need it when calling
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1504 // coladvance_force().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1505 if (curwin->w_cursor.coladd > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1506 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1507 int old_ve_flags = ve_flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1508
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1509 ve_flags = VE_ALL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1510 if (u_save_cursor() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1511 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1512 coladvance_force(oap->op_type == OP_APPEND
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1513 ? oap->end_vcol + 1 : getviscol());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1514 if (oap->op_type == OP_APPEND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1515 --curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1516 ve_flags = old_ve_flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1517 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1518 // Get the info about the block before entering the text
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1519 block_prep(oap, &bd, oap->start.lnum, TRUE);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1520 // Get indent information
12323
4dba3e4f3b01 patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents: 11997
diff changeset
1521 ind_pre = (colnr_T)getwhitecols_curline();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1522 firstline = ml_get(oap->start.lnum) + bd.textcol;
12323
4dba3e4f3b01 patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents: 11997
diff changeset
1523
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1524 if (oap->op_type == OP_APPEND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1525 firstline += bd.textlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1526 pre_textlen = (long)STRLEN(firstline);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1527 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1528
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1529 if (oap->op_type == OP_APPEND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1530 {
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
1531 if (oap->block_mode && curwin->w_cursor.coladd == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1532 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1533 // Move the cursor to the character right of the block.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1534 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1535 while (*ml_get_cursor() != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 ++curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538 if (bd.is_short && !bd.is_MAX)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1539 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1540 // First line was too short, make it longer and adjust the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1541 // values in "bd".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1542 if (u_save_cursor() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1543 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1544 for (i = 0; i < bd.endspaces; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545 ins_char(' ');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1546 bd.textlen += bd.endspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1547 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1548 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1550 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1551 curwin->w_cursor = oap->end;
893
bf7803d0f5b9 updated for version 7.0-019
vimboss
parents: 856
diff changeset
1552 check_cursor_col();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1553
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1554 // Works just like an 'i'nsert on the next character.
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11065
diff changeset
1555 if (!LINEEMPTY(curwin->w_cursor.lnum)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1556 && oap->start_vcol != oap->end_vcol)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1557 inc_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1559 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1560
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1561 t1 = oap->start;
10803
065da86ca6d2 patch 8.0.0291: Visual block insertion does not insert in all lines
Christian Brabandt <cb@256bit.org>
parents: 10785
diff changeset
1562 (void)edit(NUL, FALSE, (linenr_T)count1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1563
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1564 // When a tab was inserted, and the characters in front of the tab
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1565 // have been converted to a tab as well, the column of the cursor
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1566 // might have actually been reduced, so need to adjust here.
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1567 if (t1.lnum == curbuf->b_op_start_orig.lnum
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11065
diff changeset
1568 && LT_POS(curbuf->b_op_start_orig, t1))
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1569 oap->start = curbuf->b_op_start_orig;
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1570
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1571 // If user has moved off this line, we don't know what to do, so do
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1572 // nothing.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1573 // Also don't repeat the insert when Insert mode ended with CTRL-C.
1477
2951f28a9bd3 updated for version 7.1-192
vimboss
parents: 1451
diff changeset
1574 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1575 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1576
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1577 if (oap->block_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1578 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1579 struct block_def bd2;
13620
4faf77b96432 patch 8.0.1682: auto indenting breaks inserting a block
Christian Brabandt <cb@256bit.org>
parents: 13614
diff changeset
1580 int did_indent = FALSE;
13814
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1581 size_t len;
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1582 int add;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1583
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1584 // If indent kicked in, the firstline might have changed
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1585 // but only do that, if the indent actually increased.
12327
17ed65e87db1 patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 12323
diff changeset
1586 ind_post = (colnr_T)getwhitecols_curline();
17ed65e87db1 patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 12323
diff changeset
1587 if (curbuf->b_op_start.col > ind_pre && ind_post > ind_pre)
17ed65e87db1 patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 12323
diff changeset
1588 {
17ed65e87db1 patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 12323
diff changeset
1589 bd.textcol += ind_post - ind_pre;
17ed65e87db1 patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 12323
diff changeset
1590 bd.start_vcol += ind_post - ind_pre;
13620
4faf77b96432 patch 8.0.1682: auto indenting breaks inserting a block
Christian Brabandt <cb@256bit.org>
parents: 13614
diff changeset
1591 did_indent = TRUE;
12327
17ed65e87db1 patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 12323
diff changeset
1592 }
17ed65e87db1 patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 12323
diff changeset
1593
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1594 // The user may have moved the cursor before inserting something, try
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1595 // to adjust the block for that. But only do it, if the difference
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1596 // does not come from indent kicking in.
13620
4faf77b96432 patch 8.0.1682: auto indenting breaks inserting a block
Christian Brabandt <cb@256bit.org>
parents: 13614
diff changeset
1597 if (oap->start.lnum == curbuf->b_op_start_orig.lnum
4faf77b96432 patch 8.0.1682: auto indenting breaks inserting a block
Christian Brabandt <cb@256bit.org>
parents: 13614
diff changeset
1598 && !bd.is_MAX && !did_indent)
5471
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1599 {
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1600 if (oap->op_type == OP_INSERT
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
1601 && oap->start.col + oap->start.coladd
5730
420fd9cb86d5 updated for version 7.4.210
Bram Moolenaar <bram@vim.org>
parents: 5680
diff changeset
1602 != curbuf->b_op_start_orig.col
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
1603 + curbuf->b_op_start_orig.coladd)
5471
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1604 {
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1605 int t = getviscol2(curbuf->b_op_start_orig.col,
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
1606 curbuf->b_op_start_orig.coladd);
5680
4d12112c5efa updated for version 7.4.186
Bram Moolenaar <bram@vim.org>
parents: 5664
diff changeset
1607 oap->start.col = curbuf->b_op_start_orig.col;
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1608 pre_textlen -= t - oap->start_vcol;
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1609 oap->start_vcol = t;
5471
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1610 }
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1611 else if (oap->op_type == OP_APPEND
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
1612 && oap->end.col + oap->end.coladd
5730
420fd9cb86d5 updated for version 7.4.210
Bram Moolenaar <bram@vim.org>
parents: 5680
diff changeset
1613 >= curbuf->b_op_start_orig.col
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
1614 + curbuf->b_op_start_orig.coladd)
5471
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1615 {
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1616 int t = getviscol2(curbuf->b_op_start_orig.col,
15636
6f1c7e9a6393 patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
1617 curbuf->b_op_start_orig.coladd);
5680
4d12112c5efa updated for version 7.4.186
Bram Moolenaar <bram@vim.org>
parents: 5664
diff changeset
1618 oap->start.col = curbuf->b_op_start_orig.col;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1619 // reset pre_textlen to the value of OP_INSERT
5471
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1620 pre_textlen += bd.textlen;
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1621 pre_textlen -= t - oap->start_vcol;
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
1622 oap->start_vcol = t;
5471
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1623 oap->op_type = OP_INSERT;
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1624 }
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1625 }
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
1626
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1627 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1628 * Spaces and tabs in the indent may have changed to other spaces and
1392
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1629 * tabs. Get the starting column again and correct the length.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1630 * Don't do this when "$" used, end-of-line will have changed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1631 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1632 block_prep(oap, &bd2, oap->start.lnum, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1633 if (!bd.is_MAX || bd2.textlen < bd.textlen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1634 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1635 if (oap->op_type == OP_APPEND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1636 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1637 pre_textlen += bd2.textlen - bd.textlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1638 if (bd2.endspaces)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1639 --bd2.textlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1640 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1641 bd.textcol = bd2.textcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1642 bd.textlen = bd2.textlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1643 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1644
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1645 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1646 * Subsequent calls to ml_get() flush the firstline data - take a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1647 * copy of the required string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1648 */
13814
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1649 firstline = ml_get(oap->start.lnum);
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1650 len = STRLEN(firstline);
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1651 add = bd.textcol;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1652 if (oap->op_type == OP_APPEND)
13814
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1653 add += bd.textlen;
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1654 if ((size_t)add > len)
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1655 firstline += len; // short line, point to the NUL
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1656 else
7ed76dcf0d94 patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents: 13620
diff changeset
1657 firstline += add;
3421
fb2c5a51dac7 updated for version 7.3.476
Bram Moolenaar <bram@vim.org>
parents: 3400
diff changeset
1658 if (pre_textlen >= 0
fb2c5a51dac7 updated for version 7.3.476
Bram Moolenaar <bram@vim.org>
parents: 3400
diff changeset
1659 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1660 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1661 ins_text = vim_strnsave(firstline, (int)ins_len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1662 if (ins_text != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1663 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1664 // block handled here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1665 if (u_save(oap->start.lnum,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1666 (linenr_T)(oap->end.lnum + 1)) == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1667 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1668 &bd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1669
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1670 curwin->w_cursor.col = oap->start.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1671 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1672 vim_free(ins_text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1673 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1674 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1675 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1676 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1677
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1678 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1679 * op_change - handle a change operation
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1680 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1681 * return TRUE if edit() returns because of a CTRL-O command
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1682 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1683 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1684 op_change(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1685 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1686 colnr_T l;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1687 int retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1688 long offset;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1689 linenr_T linenr;
1392
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1690 long ins_len;
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1691 long pre_textlen = 0;
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1692 long pre_indent = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1693 char_u *firstline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1694 char_u *ins_text, *newp, *oldp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1695 struct block_def bd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1696
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1697 l = oap->start.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1698 if (oap->motion_type == MLINE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1699 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1700 l = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1701 #ifdef FEAT_SMARTINDENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1702 if (!p_paste && curbuf->b_p_si
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1703 # ifdef FEAT_CINDENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1704 && !curbuf->b_p_cin
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1705 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1706 )
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1707 can_si = TRUE; // It's like opening a new line, do si
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1708 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1709 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1710
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1711 // First delete the text in the region. In an empty buffer only need to
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1712 // save for undo
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1713 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1714 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1715 if (u_save_cursor() == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1716 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1717 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1718 else if (op_delete(oap) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1719 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1720
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11065
diff changeset
1721 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1722 && !virtual_op)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1723 inc_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1724
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1725 // check for still on same line (<CR> in inserted text meaningless)
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1726 // skip blank lines too
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1727 if (oap->block_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1728 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1729 // Add spaces before getting the current line length.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1730 if (virtual_op && (curwin->w_cursor.coladd > 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1731 || gchar_cursor() == NUL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1732 coladvance_force(getviscol());
1392
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1733 firstline = ml_get(oap->start.lnum);
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1734 pre_textlen = (long)STRLEN(firstline);
12323
4dba3e4f3b01 patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents: 11997
diff changeset
1735 pre_indent = (long)getwhitecols(firstline);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1736 bd.textcol = curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1737 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1738
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1739 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1740 if (oap->motion_type == MLINE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1741 fix_indent();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1742 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1743
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1744 retval = edit(NUL, FALSE, (linenr_T)1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1745
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1746 /*
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
1747 * In Visual block mode, handle copying the new text to all lines of the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1748 * block.
1477
2951f28a9bd3 updated for version 7.1-192
vimboss
parents: 1451
diff changeset
1749 * Don't repeat the insert when Insert mode ended with CTRL-C.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1750 */
1477
2951f28a9bd3 updated for version 7.1-192
vimboss
parents: 1451
diff changeset
1751 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1752 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1753 // Auto-indenting may have changed the indent. If the cursor was past
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1754 // the indent, exclude that indent change from the inserted text.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1755 firstline = ml_get(oap->start.lnum);
1403
871231399cf5 updated for version 7.1-118
vimboss
parents: 1392
diff changeset
1756 if (bd.textcol > (colnr_T)pre_indent)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1757 {
12323
4dba3e4f3b01 patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents: 11997
diff changeset
1758 long new_indent = (long)getwhitecols(firstline);
1392
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1759
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1760 pre_textlen += new_indent - pre_indent;
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1761 bd.textcol += new_indent - pre_indent;
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1762 }
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1763
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1764 ins_len = (long)STRLEN(firstline) - pre_textlen;
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1765 if (ins_len > 0)
27782797c331 updated for version 7.1-107
vimboss
parents: 1304
diff changeset
1766 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1767 // Subsequent calls to ml_get() flush the firstline data - take a
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1768 // copy of the inserted text.
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
1769 if ((ins_text = alloc(ins_len + 1)) != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1770 {
419
f713fc55bf7b updated for version 7.0109
vimboss
parents: 356
diff changeset
1771 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1772 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1773 linenr++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1774 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1775 block_prep(oap, &bd, linenr, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1776 if (!bd.is_short || virtual_op)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1777 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1778 pos_T vpos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1779
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1780 // If the block starts in virtual space, count the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1781 // initial coladd offset as part of "startspaces"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782 if (bd.is_short)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1783 {
1982
b1b09b68d706 updated for version 7.2-279
vimboss
parents: 1969
diff changeset
1784 vpos.lnum = linenr;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785 (void)getvpos(&vpos, oap->start_vcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1786 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1787 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1788 vpos.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1789 oldp = ml_get(linenr);
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
1790 newp = alloc(STRLEN(oldp) + vpos.coladd + ins_len + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1791 if (newp == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1792 continue;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1793 // copy up to block start
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1794 mch_memmove(newp, oldp, (size_t)bd.textcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1795 offset = bd.textcol;
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
1796 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797 offset += vpos.coladd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1798 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1799 offset += ins_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1800 oldp += bd.textcol;
1622
149d8b46404c updated for version 7.2a
vimboss
parents: 1563
diff changeset
1801 STRMOVE(newp + offset, oldp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1802 ml_replace(linenr, newp, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1803 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1804 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1805 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1806
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1807 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1808 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1809 vim_free(ins_text);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1810 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1811 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1812
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1813 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1814 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1815
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1816 /*
844
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1817 * When the cursor is on the NUL past the end of the line and it should not be
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1818 * there move it left.
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1819 */
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1820 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1821 adjust_cursor_eol(void)
844
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1822 {
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1823 if (curwin->w_cursor.col > 0
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1824 && gchar_cursor() == NUL
773
8c9ef63b1ccc updated for version 7.0226
vimboss
parents: 714
diff changeset
1825 && (ve_flags & VE_ONEMORE) == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1826 && !(restart_edit || (State & INSERT)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1827 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1828 // Put the cursor on the last character in the line.
555
a5efb97bc104 updated for version 7.0157
vimboss
parents: 530
diff changeset
1829 dec_cursor();
844
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
1830
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1831 if (ve_flags == VE_ALL)
557
862863033fdd updated for version 7.0158
vimboss
parents: 555
diff changeset
1832 {
862863033fdd updated for version 7.0158
vimboss
parents: 555
diff changeset
1833 colnr_T scol, ecol;
862863033fdd updated for version 7.0158
vimboss
parents: 555
diff changeset
1834
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1835 // Coladd is set to the width of the last character.
557
862863033fdd updated for version 7.0158
vimboss
parents: 555
diff changeset
1836 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
862863033fdd updated for version 7.0158
vimboss
parents: 555
diff changeset
1837 curwin->w_cursor.coladd = ecol - scol + 1;
862863033fdd updated for version 7.0158
vimboss
parents: 555
diff changeset
1838 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1839 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1840 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1841
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1842 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1843 * If "process" is TRUE and the line begins with a comment leader (possibly
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1844 * after some white space), return a pointer to the text after it. Put a boolean
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1845 * value indicating whether the line ends with an unclosed comment in
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1846 * "is_comment".
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1847 * line - line to be processed,
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1848 * process - if FALSE, will only check whether the line ends with an unclosed
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
1849 * comment,
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1850 * include_space - whether to also skip space following the comment leader,
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1851 * is_comment - will indicate whether the current line ends with an unclosed
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
1852 * comment.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1853 */
11131
8d9ecf09183a patch 8.0.0453: adding fold marker creates new comment
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
1854 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1855 skip_comment(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1856 char_u *line,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1857 int process,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1858 int include_space,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1859 int *is_comment)
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1860 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1861 char_u *comment_flags = NULL;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1862 int lead_len;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1863 int leader_offset = get_last_leader_offset(line, &comment_flags);
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1864
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1865 *is_comment = FALSE;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1866 if (leader_offset != -1)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1867 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1868 // Let's check whether the line ends with an unclosed comment.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1869 // If the last comment leader has COM_END in flags, there's no comment.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1870 while (*comment_flags)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1871 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1872 if (*comment_flags == COM_END
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1873 || *comment_flags == ':')
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1874 break;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1875 ++comment_flags;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1876 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1877 if (*comment_flags != COM_END)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1878 *is_comment = TRUE;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1879 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1880
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1881 if (process == FALSE)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1882 return line;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1883
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1884 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1885
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1886 if (lead_len == 0)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1887 return line;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1888
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1889 // Find:
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1890 // - COM_END,
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1891 // - colon,
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1892 // whichever comes first.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1893 while (*comment_flags)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1894 {
3580
297771eff080 updated for version 7.3.550
Bram Moolenaar <bram@vim.org>
parents: 3576
diff changeset
1895 if (*comment_flags == COM_END
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1896 || *comment_flags == ':')
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1897 break;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1898 ++comment_flags;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1899 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1900
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1901 // If we found a colon, it means that we are not processing a line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1902 // starting with a closing part of a three-part comment. That's good,
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1903 // because we don't want to remove those as this would be annoying.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1904 if (*comment_flags == ':' || *comment_flags == NUL)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1905 line += lead_len;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1906
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1907 return line;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1908 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1909
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1910 /*
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1911 * Join 'count' lines (minimal 2) at cursor position.
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1912 * When "save_undo" is TRUE save lines for undo first.
5848
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
1913 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
1914 * leaders should not be removed.
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
1915 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
1916 * to set those marks.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1917 *
1217
82274b284600 updated for version 7.1b
vimboss
parents: 1157
diff changeset
1918 * return FAIL for failure, OK otherwise
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1919 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1920 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1921 do_join(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1922 long count,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1923 int insert_space,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1924 int save_undo,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1925 int use_formatoptions UNUSED,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1926 int setmark)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1927 {
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1928 char_u *curr = NULL;
2597
c3b5d3fe9404 updated for version 7.3.020
Bram Moolenaar <bram@vim.org>
parents: 2451
diff changeset
1929 char_u *curr_start = NULL;
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1930 char_u *cend;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1931 char_u *newp;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1932 char_u *spaces; // number of spaces inserted before a line
2310
3e4574a4b627 Fix a few compiler warnings.
Bram Moolenaar <bram@vim.org>
parents: 2298
diff changeset
1933 int endcurr1 = NUL;
3e4574a4b627 Fix a few compiler warnings.
Bram Moolenaar <bram@vim.org>
parents: 2298
diff changeset
1934 int endcurr2 = NUL;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1935 int currsize = 0; // size of the current line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1936 int sumsize = 0; // size of the long new line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1937 linenr_T t;
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1938 colnr_T col = 0;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1939 int ret = OK;
3574
4f4db5d661c4 updated for version 7.3.547
Bram Moolenaar <bram@vim.org>
parents: 3562
diff changeset
1940 int *comments = NULL;
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1941 int remove_comments = (use_formatoptions == TRUE)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1942 && has_format_option(FO_REMOVE_COMS);
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1943 int prev_was_comment;
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1944 #ifdef FEAT_PROP_POPUP
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
1945 textprop_T **prop_lines = NULL;
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
1946 int *prop_lengths = NULL;
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
1947 #endif
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1948
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1949 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1950 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1951 return FAIL;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1952
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1953 // Allocate an array to store the number of spaces inserted before each
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1954 // line. We will use it to pre-compute the length of the new line and the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1955 // proper placement of each original line in the new one.
16768
695d9ef00b03 patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
1956 spaces = lalloc_clear(count, TRUE);
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1957 if (spaces == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958 return FAIL;
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1959 if (remove_comments)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1960 {
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
1961 comments = lalloc_clear(count * sizeof(int), TRUE);
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1962 if (comments == NULL)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1963 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1964 vim_free(spaces);
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1965 return FAIL;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1966 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1967 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1968
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1969 /*
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
1970 * Don't move anything yet, just compute the final line length
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1971 * and setup the array of space strings lengths
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
1972 * This loops forward over the joined lines.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1973 */
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1974 for (t = 0; t < count; ++t)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
1975 {
2597
c3b5d3fe9404 updated for version 7.3.020
Bram Moolenaar <bram@vim.org>
parents: 2451
diff changeset
1976 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
1977 if (t == 0 && setmark && !cmdmod.lockmarks)
5664
647e6bb15aa3 updated for version 7.4.178
Bram Moolenaar <bram@vim.org>
parents: 5596
diff changeset
1978 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1979 // Set the '[ mark.
5664
647e6bb15aa3 updated for version 7.4.178
Bram Moolenaar <bram@vim.org>
parents: 5596
diff changeset
1980 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
647e6bb15aa3 updated for version 7.4.178
Bram Moolenaar <bram@vim.org>
parents: 5596
diff changeset
1981 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
647e6bb15aa3 updated for version 7.4.178
Bram Moolenaar <bram@vim.org>
parents: 5596
diff changeset
1982 }
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1983 if (remove_comments)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1984 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1985 // We don't want to remove the comment leader if the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1986 // previous line is not a comment.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1987 if (t > 0 && prev_was_comment)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1988 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1989
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1990 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1991 &prev_was_comment);
3576
8625e38066db updated for version 7.3.548
Bram Moolenaar <bram@vim.org>
parents: 3574
diff changeset
1992 comments[t] = (int)(new_curr - curr);
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1993 curr = new_curr;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1994 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1995 else
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1996 curr = skip_comment(curr, FALSE, insert_space,
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1997 &prev_was_comment);
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1998 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
1999
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2000 if (insert_space && t > 0)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2001 {
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2002 curr = skipwhite(curr);
18599
9cbdd58eeeb2 patch 8.1.2293: join adds trailing space when second line is empty
Bram Moolenaar <Bram@vim.org>
parents: 18574
diff changeset
2003 if (*curr != NUL && *curr != ')'
18914
4c0b420e7327 patch 8.2.0018: :join does not add white space where it should
Bram Moolenaar <Bram@vim.org>
parents: 18882
diff changeset
2004 && sumsize != 0 && endcurr1 != TAB
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2005 && (!has_format_option(FO_MBYTE_JOIN)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2006 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2007 && (!has_format_option(FO_MBYTE_JOIN2)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2008 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2009 )
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2010 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2011 // don't add a space if the line is ending in a space
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2012 if (endcurr1 == ' ')
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2013 endcurr1 = endcurr2;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2014 else
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2015 ++spaces[t];
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2016 // extra space when 'joinspaces' set and line ends in '.'
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2017 if ( p_js
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2018 && (endcurr1 == '.'
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2019 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2020 && (endcurr1 == '?' || endcurr1 == '!'))))
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2021 ++spaces[t];
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2022 }
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2023 }
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2024 currsize = (int)STRLEN(curr);
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2025 sumsize += currsize + spaces[t];
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2026 endcurr1 = endcurr2 = NUL;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2027 if (insert_space && currsize > 0)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2028 {
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2029 if (has_mbyte)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2030 {
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2031 cend = curr + currsize;
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
2032 MB_PTR_BACK(curr, cend);
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2033 endcurr1 = (*mb_ptr2char)(cend);
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2034 if (cend > curr)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2035 {
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
2036 MB_PTR_BACK(curr, cend);
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2037 endcurr2 = (*mb_ptr2char)(cend);
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2038 }
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2039 }
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2040 else
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2041 {
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2042 endcurr1 = *(curr + currsize - 1);
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2043 if (currsize > 1)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2044 endcurr2 = *(curr + currsize - 2);
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2045 }
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2046 }
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2047 line_breakcheck();
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2048 if (got_int)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2049 {
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2050 ret = FAIL;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2051 goto theend;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2052 }
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2053 }
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2054
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2055 // store the column position before last line
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2056 col = sumsize - currsize - spaces[count - 1];
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2057
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2058 // allocate the space for the new line
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
2059 newp = alloc(sumsize + 1);
17797
ec1717981acf patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents: 17789
diff changeset
2060 if (newp == NULL)
ec1717981acf patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents: 17789
diff changeset
2061 {
ec1717981acf patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents: 17789
diff changeset
2062 ret = FAIL;
ec1717981acf patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents: 17789
diff changeset
2063 goto theend;
ec1717981acf patch 8.1.1895: using NULL pointer when out of memory
Bram Moolenaar <Bram@vim.org>
parents: 17789
diff changeset
2064 }
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2065 cend = newp + sumsize;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2066 *cend = 0;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2067
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
2068 #ifdef FEAT_PROP_POPUP
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2069 // We need to move properties of the lines that are going to be deleted to
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2070 // the new long one.
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2071 if (curbuf->b_has_textprop && !text_prop_frozen)
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2072 {
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2073 // Allocate an array to copy the text properties of joined lines into.
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2074 // And another array to store the number of properties in each line.
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
2075 prop_lines = ALLOC_CLEAR_MULT(textprop_T *, count - 1);
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
2076 prop_lengths = ALLOC_CLEAR_MULT(int, count - 1);
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2077 if (prop_lengths == NULL)
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2078 VIM_CLEAR(prop_lines);
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2079 }
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2080 #endif
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2081
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2082 /*
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2083 * Move affected lines to the new long one.
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2084 * This loops backwards over the joined lines, including the original line.
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2085 *
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2086 * Move marks from each deleted line to the joined line, adjusting the
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2087 * column. This is not Vi compatible, but Vi deletes the marks, thus that
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2088 * should not really be a problem.
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2089 */
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2090 for (t = count - 1; ; --t)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2091 {
15326
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2092 int spaces_removed;
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2093
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2094 cend -= currsize;
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2095 mch_memmove(cend, curr, (size_t)currsize);
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2096 if (spaces[t] > 0)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2097 {
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2098 cend -= spaces[t];
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
2099 vim_memset(cend, ' ', (size_t)(spaces[t]));
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2100 }
15326
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2101
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2102 // If deleting more spaces than adding, the cursor moves no more than
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2103 // what is added if it is inside these spaces.
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2104 spaces_removed = (curr - curr_start) - spaces[t];
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2105
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2106 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
15326
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2107 (long)(cend - newp - spaces_removed), spaces_removed);
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2108 if (t == 0)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2109 break;
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
2110 #ifdef FEAT_PROP_POPUP
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2111 if (prop_lines != NULL)
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2112 adjust_props_for_join(curwin->w_cursor.lnum + t,
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2113 prop_lines + t - 1, prop_lengths + t - 1,
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2114 (long)(cend - newp - spaces_removed), spaces_removed);
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2115 #endif
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2116
2597
c3b5d3fe9404 updated for version 7.3.020
Bram Moolenaar <bram@vim.org>
parents: 2451
diff changeset
2117 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
2118 if (remove_comments)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
2119 curr += comments[t - 1];
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2120 if (insert_space && t > 1)
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2121 curr = skipwhite(curr);
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2122 currsize = (int)STRLEN(curr);
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2123 }
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2124
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
2125 #ifdef FEAT_PROP_POPUP
16678
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2126 if (prop_lines != NULL)
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2127 join_prop_lines(curwin->w_cursor.lnum, newp,
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2128 prop_lines, prop_lengths, count);
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2129 else
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2130 #endif
6f453673eb19 patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
2131 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2132
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
2133 if (setmark && !cmdmod.lockmarks)
5848
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
2134 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2135 // Set the '] mark.
5848
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
2136 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
16680
c263acbbd961 patch 8.1.1342: using freed memory when joining line with text property
Bram Moolenaar <Bram@vim.org>
parents: 16678
diff changeset
2137 curwin->w_buffer->b_op_end.col = (colnr_T)sumsize;
5848
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
2138 }
5664
647e6bb15aa3 updated for version 7.4.178
Bram Moolenaar <bram@vim.org>
parents: 5596
diff changeset
2139
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2140 // Only report the change in the first line here, del_lines() will report
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2141 // the deleted line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2142 changed_lines(curwin->w_cursor.lnum, currsize,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2143 curwin->w_cursor.lnum + 1, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2144 /*
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2145 * Delete following lines. To do this we move the cursor there
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2146 * briefly, and then move it back. After del_lines() the cursor may
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2147 * have moved up (last line deleted), so the current lnum is kept in t.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2148 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2149 t = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2150 ++curwin->w_cursor.lnum;
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2151 del_lines(count - 1, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2152 curwin->w_cursor.lnum = t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2153
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2154 /*
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2155 * Set the cursor column:
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2156 * Vi compatible: use the column of the first join
2311
ccda151dde4e Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents: 2310
diff changeset
2157 * vim: use the column of the last join
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2158 */
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2159 curwin->w_cursor.col =
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2160 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2161 check_cursor_col();
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2162
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2163 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2164 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2165
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2166 theend:
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2167 vim_free(spaces);
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
2168 if (remove_comments)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
2169 vim_free(comments);
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2170 return ret;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2171 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2172
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2173 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2174 * Return TRUE if the two comment leaders given are the same. "lnum" is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2175 * the first line. White-space is ignored. Note that the whole of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2176 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2177 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2178 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2179 same_leader(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2180 linenr_T lnum,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2181 int leader1_len,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2182 char_u *leader1_flags,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2183 int leader2_len,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2184 char_u *leader2_flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2185 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2186 int idx1 = 0, idx2 = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2187 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2188 char_u *line1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2189 char_u *line2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2190
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2191 if (leader1_len == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2192 return (leader2_len == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2193
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2194 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2195 * If first leader has 'f' flag, the lines can be joined only if the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2196 * second line does not have a leader.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2197 * If first leader has 'e' flag, the lines can never be joined.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2198 * If fist leader has 's' flag, the lines can only be joined if there is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2199 * some text after it and the second line has the 'm' flag.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2200 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2201 if (leader1_flags != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2202 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2203 for (p = leader1_flags; *p && *p != ':'; ++p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2204 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2205 if (*p == COM_FIRST)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2206 return (leader2_len == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2207 if (*p == COM_END)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2208 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2209 if (*p == COM_START)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2210 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2211 if (*(ml_get(lnum) + leader1_len) == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2212 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2213 if (leader2_flags == NULL || leader2_len == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2214 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2215 for (p = leader2_flags; *p && *p != ':'; ++p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2216 if (*p == COM_MIDDLE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2217 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2218 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2219 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2220 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2221 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2222
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2223 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2224 * Get current line and next line, compare the leaders.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2225 * The first line has to be saved, only one line can be locked at a time.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2226 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2227 line1 = vim_strsave(ml_get(lnum));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2228 if (line1 != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2229 {
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
2230 for (idx1 = 0; VIM_ISWHITE(line1[idx1]); ++idx1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2231 ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2232 line2 = ml_get(lnum + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2233 for (idx2 = 0; idx2 < leader2_len; ++idx2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2234 {
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
2235 if (!VIM_ISWHITE(line2[idx2]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2236 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2237 if (line1[idx1++] != line2[idx2])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2239 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2240 else
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
2241 while (VIM_ISWHITE(line1[idx1]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2242 ++idx1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2243 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2244 vim_free(line1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2245 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2246 return (idx2 == leader2_len && idx1 == leader1_len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2247 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2248
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2249 /*
3252
80c529a5650f updated for version 7.3.395
Bram Moolenaar <bram@vim.org>
parents: 3093
diff changeset
2250 * Implementation of the format operator 'gq'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2251 */
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
2252 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2253 op_format(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2254 oparg_T *oap,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2255 int keep_cursor) // keep cursor on same text char
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2257 long old_line_count = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2258
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2259 // Place the cursor where the "gq" or "gw" command was given, so that "u"
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2260 // can put it back there.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2261 curwin->w_cursor = oap->cursor_start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2262
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2263 if (u_save((linenr_T)(oap->start.lnum - 1),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2264 (linenr_T)(oap->end.lnum + 1)) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2265 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2266 curwin->w_cursor = oap->start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2267
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2268 if (oap->is_VIsual)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2269 // When there is no change: need to remove the Visual selection
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2270 redraw_curbuf_later(INVERTED);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2271
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
2272 if (!cmdmod.lockmarks)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2273 // Set '[ mark at the start of the formatted area
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
2274 curbuf->b_op_start = oap->start;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2275
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2276 // For "gw" remember the cursor position and put it back below (adjusted
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2277 // for joined and split lines).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2278 if (keep_cursor)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2279 saved_cursor = oap->cursor_start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2280
1563
ed7fefbef738 updated for version 7.1-276
vimboss
parents: 1550
diff changeset
2281 format_lines(oap->line_count, keep_cursor);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2282
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2283 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2284 * Leave the cursor at the first non-blank of the last formatted line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285 * If the cursor was moved one line back (e.g. with "Q}") go to the next
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2286 * line, so "." will do the next lines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2287 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2288 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2289 ++curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2290 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2291 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2292 msgmore(old_line_count);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2293
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
2294 if (!cmdmod.lockmarks)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2295 // put '] mark on the end of the formatted area
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
2296 curbuf->b_op_end = curwin->w_cursor;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2297
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2298 if (keep_cursor)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2299 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2300 curwin->w_cursor = saved_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2301 saved_cursor.lnum = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2302 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2303
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2304 if (oap->is_VIsual)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2305 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2306 win_T *wp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2307
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2308 FOR_ALL_WINDOWS(wp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2309 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2310 if (wp->w_old_cursor_lnum != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2311 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2312 // When lines have been inserted or deleted, adjust the end of
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2313 // the Visual area to be redrawn.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2314 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2315 wp->w_old_cursor_lnum += old_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2316 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2317 wp->w_old_visual_lnum += old_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2318 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2319 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2320 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2321 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2322
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2323 #if defined(FEAT_EVAL) || defined(PROTO)
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2324 /*
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2325 * Implementation of the format operator 'gq' for when using 'formatexpr'.
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2326 */
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
2327 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2328 op_formatexpr(oparg_T *oap)
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2329 {
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2330 if (oap->is_VIsual)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2331 // When there is no change: need to remove the Visual selection
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2332 redraw_curbuf_later(INVERTED);
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2333
2298
a3562a127cf6 When 'formatexpr' evaluates to non-zero fall back to internal formatting, also
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
2334 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2335 // As documented: when 'formatexpr' returns non-zero fall back to
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2336 // internal formatting.
2298
a3562a127cf6 When 'formatexpr' evaluates to non-zero fall back to internal formatting, also
Bram Moolenaar <bram@vim.org>
parents: 2294
diff changeset
2337 op_format(oap, FALSE);
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2338 }
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2339
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2340 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2341 fex_format(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2342 linenr_T lnum,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2343 long count,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2344 int c) // character to be inserted
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2345 {
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 667
diff changeset
2346 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
9364d114ed8d updated for version 7.0204
vimboss
parents: 667
diff changeset
2347 OPT_LOCAL);
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2348 int r;
10104
b2dbe79639a2 commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2349 char_u *fex;
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2350
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2351 /*
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2352 * Set v:lnum to the first line number and v:count to the number of lines.
844
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
2353 * Set v:char to the character to be inserted (can be NUL).
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2354 */
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2355 set_vim_var_nr(VV_LNUM, lnum);
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2356 set_vim_var_nr(VV_COUNT, count);
1969
2e915ea7110f updated for version 7.2-266
vimboss
parents: 1924
diff changeset
2357 set_vim_var_char(c);
844
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
2358
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2359 // Make a copy, the option could be changed while calling it.
10104
b2dbe79639a2 commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2360 fex = vim_strsave(curbuf->b_p_fex);
b2dbe79639a2 commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2361 if (fex == NULL)
b2dbe79639a2 commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2362 return 0;
b2dbe79639a2 commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2363
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2364 /*
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2365 * Evaluate the function.
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2366 */
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2367 if (use_sandbox)
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2368 ++sandbox;
10104
b2dbe79639a2 commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2369 r = (int)eval_to_number(fex);
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2370 if (use_sandbox)
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2371 --sandbox;
844
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
2372
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
2373 set_vim_var_string(VV_CHAR, NULL, -1);
10104
b2dbe79639a2 commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2374 vim_free(fex);
844
d3bbb5dd3913 updated for version 7.0f02
vimboss
parents: 840
diff changeset
2375
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2376 return r;
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2377 }
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2378 #endif
9090f866cd57 updated for version 7.0197
vimboss
parents: 613
diff changeset
2379
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2380 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2381 * Format "line_count" lines, starting at the cursor position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2382 * When "line_count" is negative, format until the end of the paragraph.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2383 * Lines after the cursor line are saved for undo, caller must have saved the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2384 * first line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2385 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2386 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2387 format_lines(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2388 linenr_T line_count,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2389 int avoid_fex) // don't use 'formatexpr'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2390 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2391 int max_len;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2392 int is_not_par; // current line not part of parag.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2393 int next_is_not_par; // next line not part of paragraph
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2394 int is_end_par; // at end of paragraph
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2395 int prev_is_end_par = FALSE;// prev. line not part of parag.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2396 int next_is_start_par = FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2397 int leader_len = 0; // leader len of current line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2398 int next_leader_len; // leader len of next line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2399 char_u *leader_flags = NULL; // flags for leader of current line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2400 char_u *next_leader_flags; // flags for leader of next line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2401 int do_comments; // format comments
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2402 int do_comments_list = 0; // format comments with 'n' or '2'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2403 int advance = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2404 int second_indent = -1; // indent for second line (comment
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2405 // aware)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2406 int do_second_indent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2407 int do_number_indent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2408 int do_trail_white;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2409 int first_par_line = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2410 int smd_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2411 long count;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2412 int need_set_indent = TRUE; // set indent of next paragraph
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2413 int force_format = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2414 int old_State = State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2415
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2416 // length of a line to force formatting: 3 * 'tw'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2417 max_len = comp_textwidth(TRUE) * 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2418
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2419 // check for 'q', '2' and '1' in 'formatoptions'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2420 do_comments = has_format_option(FO_Q_COMS);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2421 do_second_indent = has_format_option(FO_Q_SECOND);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2422 do_number_indent = has_format_option(FO_Q_NUMBER);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2423 do_trail_white = has_format_option(FO_WHITE_PAR);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2424
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2425 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2426 * Get info about the previous and current line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2427 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2428 if (curwin->w_cursor.lnum > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2429 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2430 , &leader_len, &leader_flags, do_comments);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2431 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2432 is_not_par = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2433 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2434 , &next_leader_len, &next_leader_flags, do_comments);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2435 is_end_par = (is_not_par || next_is_not_par);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2436 if (!is_end_par && do_trail_white)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2437 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2438
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2439 curwin->w_cursor.lnum--;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2440 for (count = line_count; count != 0 && !got_int; --count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2441 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2442 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2443 * Advance to next paragraph.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2444 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2445 if (advance)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2446 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2447 curwin->w_cursor.lnum++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2448 prev_is_end_par = is_end_par;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2449 is_not_par = next_is_not_par;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2450 leader_len = next_leader_len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2451 leader_flags = next_leader_flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2452 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2453
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2454 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2455 * The last line to be formatted.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2456 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2457 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2458 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2459 next_is_not_par = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2460 next_leader_len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2461 next_leader_flags = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2462 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2463 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2464 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2465 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2466 , &next_leader_len, &next_leader_flags, do_comments);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2467 if (do_number_indent)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2468 next_is_start_par =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2469 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2470 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2471 advance = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2472 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2473 if (!is_end_par && do_trail_white)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2474 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2475
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2476 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2477 * Skip lines that are not in a paragraph.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2478 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2479 if (is_not_par)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2480 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2481 if (line_count < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2482 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2483 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2484 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2485 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2486 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2487 * For the first line of a paragraph, check indent of second line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2488 * Don't do this for comments and empty lines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2489 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2490 if (first_par_line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2491 && (do_second_indent || do_number_indent)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2492 && prev_is_end_par
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2493 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2494 {
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11065
diff changeset
2495 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1))
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2496 {
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2497 if (leader_len == 0 && next_leader_len == 0)
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2498 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2499 // no comment found
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2500 second_indent =
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2501 get_indent_lnum(curwin->w_cursor.lnum + 1);
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2502 }
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2503 else
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2504 {
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2505 second_indent = next_leader_len;
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2506 do_comments_list = 1;
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2507 }
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2508 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2509 else if (do_number_indent)
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2510 {
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2511 if (leader_len == 0 && next_leader_len == 0)
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2512 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2513 // no comment found
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2514 second_indent =
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2515 get_number_indent(curwin->w_cursor.lnum);
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2516 }
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2517 else
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2518 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2519 // get_number_indent() is now "comment aware"...
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2520 second_indent =
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2521 get_number_indent(curwin->w_cursor.lnum);
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2522 do_comments_list = 1;
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2523 }
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2524 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2525 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2526
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2527 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2528 * When the comment leader changes, it's the end of the paragraph.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2529 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2530 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2531 || !same_leader(curwin->w_cursor.lnum,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2532 leader_len, leader_flags,
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2533 next_leader_len, next_leader_flags))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2534 is_end_par = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2535
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2536 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2537 * If we have got to the end of a paragraph, or the line is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2538 * getting long, format it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2540 if (is_end_par || force_format)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2541 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2542 if (need_set_indent)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2543 // replace indent in first line with minimal number of
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2544 // tabs and spaces, according to current options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2545 (void)set_indent(get_indent(), SIN_CHANGED);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2546
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2547 // put cursor on last non-space
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2548 State = NORMAL; // don't go past end-of-line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2549 coladvance((colnr_T)MAXCOL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2550 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2551 dec_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2552
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2553 // do the formatting, without 'showmode'
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2554 State = INSERT; // for open_line()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2555 smd_save = p_smd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2556 p_smd = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2557 insertchar(NUL, INSCHAR_FORMAT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2558 + (do_comments ? INSCHAR_DO_COM : 0)
3584
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2559 + (do_comments && do_comments_list
443c50cd3e88 updated for version 7.3.552
Bram Moolenaar <bram@vim.org>
parents: 3580
diff changeset
2560 ? INSCHAR_COM_LIST : 0)
1563
ed7fefbef738 updated for version 7.1-276
vimboss
parents: 1550
diff changeset
2561 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2562 State = old_State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2563 p_smd = smd_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2564 second_indent = -1;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2565 // at end of par.: need to set indent of next par.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2566 need_set_indent = is_end_par;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2567 if (is_end_par)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2568 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2569 // When called with a negative line count, break at the
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2570 // end of the paragraph.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2571 if (line_count < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2572 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2573 first_par_line = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2574 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2575 force_format = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2576 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2577
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2578 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2579 * When still in same paragraph, join the lines together. But
5403
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2580 * first delete the leader from the second line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2581 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2582 if (!is_end_par)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2583 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2584 advance = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2585 curwin->w_cursor.lnum++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2586 curwin->w_cursor.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2587 if (line_count < 0 && u_save_cursor() == FAIL)
2294
2209060c340d Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents: 2289
diff changeset
2588 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2589 if (next_leader_len > 0)
5403
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2590 {
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2591 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2592 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2593 (long)-next_leader_len, 0);
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2594 }
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2595 else if (second_indent > 0) // the "leader" for FO_Q_SECOND
5403
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2596 {
12323
4dba3e4f3b01 patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents: 11997
diff changeset
2597 int indent = getwhitecols_curline();
5403
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2598
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2599 if (indent > 0)
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2600 {
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2601 (void)del_bytes(indent, FALSE, FALSE);
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2602 mark_col_adjust(curwin->w_cursor.lnum,
15326
fe428bee74b3 patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2603 (colnr_T)0, 0L, (long)-indent, 0);
5415
fa8447ec5823 updated for version 7.4.058
Bram Moolenaar <bram@vim.org>
parents: 5403
diff changeset
2604 }
5403
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
2605 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2606 curwin->w_cursor.lnum--;
5848
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
2607 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2608 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2609 beep_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2610 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2611 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2612 first_par_line = FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2613 // If the line is getting long, format it next time
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2614 if (STRLEN(ml_get_curline()) > (size_t)max_len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2615 force_format = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2616 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2617 force_format = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2618 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2619 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2620 line_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2621 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2622 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2623
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2624 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2625 * Return TRUE if line "lnum" ends in a white character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2626 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2627 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2628 ends_in_white(linenr_T lnum)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2629 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2630 char_u *s = ml_get(lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2631 size_t l;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2632
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2633 if (*s == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2634 return FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2635 // Don't use STRLEN() inside VIM_ISWHITE(), SAS/C complains: "macro
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2636 // invocation may call function multiple times".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2637 l = STRLEN(s) - 1;
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
2638 return VIM_ISWHITE(s[l]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2639 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2640
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2641 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2642 * Blank lines, and lines containing only the comment leader, are left
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2643 * untouched by the formatting. The function returns TRUE in this
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2644 * case. It also returns TRUE when a line starts with the end of a comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2645 * ('e' in comment flags), so that this line is skipped, and not joined to the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2646 * previous line. A new paragraph starts after a blank line, or when the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2647 * comment leader changes -- webb.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2648 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2649 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2650 fmt_check_par(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2651 linenr_T lnum,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2652 int *leader_len,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2653 char_u **leader_flags,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2654 int do_comments)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2655 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2656 char_u *flags = NULL; // init for GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2657 char_u *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2658
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2659 ptr = ml_get(lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2660 if (do_comments)
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3510
diff changeset
2661 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2662 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2663 *leader_len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2664
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2665 if (*leader_len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2666 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2667 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2668 * Search for 'e' flag in comment leader flags.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2669 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2670 flags = *leader_flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2671 while (*flags && *flags != ':' && *flags != COM_END)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2672 ++flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2673 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2674
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2675 return (*skipwhite(ptr + *leader_len) == NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2676 || (*leader_len > 0 && *flags == COM_END)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2677 || startPS(lnum, NUL, FALSE));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2678 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2679
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2680 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2681 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2682 * previous line is in the same paragraph. Used for auto-formatting.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2683 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2684 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2685 paragraph_start(linenr_T lnum)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2686 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2687 char_u *p;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2688 int leader_len = 0; // leader len of current line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2689 char_u *leader_flags = NULL; // flags for leader of current line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2690 int next_leader_len; // leader len of next line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2691 char_u *next_leader_flags; // flags for leader of next line
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2692 int do_comments; // format comments
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2693
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2694 if (lnum <= 1)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2695 return TRUE; // start of the file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2696
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2697 p = ml_get(lnum - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2698 if (*p == NUL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2699 return TRUE; // after empty line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2700
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2701 do_comments = has_format_option(FO_Q_COMS);
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2702 if (fmt_check_par(lnum - 1, &leader_len, &leader_flags, do_comments))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2703 return TRUE; // after non-paragraph line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2704
18203
e0ec4cd7a865 patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
2705 if (fmt_check_par(lnum, &next_leader_len, &next_leader_flags, do_comments))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2706 return TRUE; // "lnum" is not a paragraph line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2707
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2708 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2709 return TRUE; // missing trailing space in previous line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2710
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2711 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2712 return TRUE; // numbered item starts in "lnum".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2713
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2714 if (!same_leader(lnum - 1, leader_len, leader_flags,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2715 next_leader_len, next_leader_flags))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2716 return TRUE; // change of comment leader.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2717
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2718 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2719 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2720
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2721 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2722 * prepare a few things for block mode yank/delete/tilde
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2723 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2724 * for delete:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2725 * - textlen includes the first/last char to be (partly) deleted
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2726 * - start/endspaces is the number of columns that are taken by the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2727 * first/last deleted char minus the number of columns that have to be
1839
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
2728 * deleted.
df7ceb64b0c6 updated for version 7.2-137
vimboss
parents: 1766
diff changeset
2729 * for yank and tilde:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2730 * - textlen includes the first/last char to be wholly yanked
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2731 * - start/endspaces is the number of columns of the first/last yanked char
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2732 * that are to be yanked.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2733 */
18164
f57481564f2c patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
2734 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2735 block_prep(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2736 oparg_T *oap,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2737 struct block_def *bdp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2738 linenr_T lnum,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2739 int is_del)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2740 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2741 int incr = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2742 char_u *pend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2743 char_u *pstart;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2744 char_u *line;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2745 char_u *prev_pstart;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2746 char_u *prev_pend;
19176
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2747 #ifdef FEAT_LINEBREAK
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2748 int lbr_saved = curwin->w_p_lbr;
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2749
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2750 // Avoid a problem with unwanted linebreaks in block mode.
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2751 curwin->w_p_lbr = FALSE;
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2752 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2753 bdp->startspaces = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2754 bdp->endspaces = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2755 bdp->textlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2756 bdp->start_vcol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2757 bdp->end_vcol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2758 bdp->is_short = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2759 bdp->is_oneChar = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2760 bdp->pre_whitesp = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2761 bdp->pre_whitesp_c = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2762 bdp->end_char_vcols = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2763 bdp->start_char_vcols = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2764
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2765 line = ml_get(lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2766 pstart = line;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2767 prev_pstart = line;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2768 while (bdp->start_vcol < oap->start_vcol && *pstart)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2769 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2770 // Count a tab for what it's worth (if list mode not on)
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
2771 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2772 bdp->start_vcol += incr;
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
2773 if (VIM_ISWHITE(*pstart))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2774 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2775 bdp->pre_whitesp += incr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2776 bdp->pre_whitesp_c++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2777 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2778 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2779 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2780 bdp->pre_whitesp = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2781 bdp->pre_whitesp_c = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2782 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2783 prev_pstart = pstart;
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
2784 MB_PTR_ADV(pstart);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2785 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2786 bdp->start_char_vcols = incr;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2787 if (bdp->start_vcol < oap->start_vcol) // line too short
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2788 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2789 bdp->end_vcol = bdp->start_vcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2790 bdp->is_short = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2791 if (!is_del || oap->op_type == OP_APPEND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2792 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2793 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2794 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2795 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2796 // notice: this converts partly selected Multibyte characters to
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2797 // spaces, too.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2798 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2799 if (is_del && bdp->startspaces)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2800 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2801 pend = pstart;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2802 bdp->end_vcol = bdp->start_vcol;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2803 if (bdp->end_vcol > oap->end_vcol) // it's all in one character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2804 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2805 bdp->is_oneChar = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2806 if (oap->op_type == OP_INSERT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2807 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2808 else if (oap->op_type == OP_APPEND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2809 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2810 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2811 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2812 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2813 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2814 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2815 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2816 if (is_del && oap->op_type != OP_LSHIFT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2817 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2818 // just putting the sum of those two into
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2819 // bdp->startspaces doesn't work for Visual replace,
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2820 // so we have to split the tab in two
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2821 bdp->startspaces = bdp->start_char_vcols
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2822 - (bdp->start_vcol - oap->start_vcol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2823 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2824 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2825 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2826 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2827 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2828 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2829 prev_pend = pend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2830 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2831 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2832 // Count a tab for what it's worth (if list mode not on)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2833 prev_pend = pend;
6535
f9d02ce2f745 updated for version 7.4.594
Bram Moolenaar <bram@vim.org>
parents: 6508
diff changeset
2834 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2835 bdp->end_vcol += incr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2836 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2837 if (bdp->end_vcol <= oap->end_vcol
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2838 && (!is_del
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2839 || oap->op_type == OP_APPEND
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2840 || oap->op_type == OP_REPLACE)) // line too short
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2841 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2842 bdp->is_short = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2843 // Alternative: include spaces to fill up the block.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2844 // Disadvantage: can lead to trailing spaces when the line is
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2845 // short where the text is put
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2846 // if (!is_del || oap->op_type == OP_APPEND)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2847 if (oap->op_type == OP_APPEND || virtual_op)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2848 bdp->endspaces = oap->end_vcol - bdp->end_vcol
593
d220eb88e4e4 updated for version 7.0168
vimboss
parents: 557
diff changeset
2849 + oap->inclusive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2850 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2851 bdp->endspaces = 0; // replace doesn't add characters
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2852 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2853 else if (bdp->end_vcol > oap->end_vcol)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2854 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2855 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2856 if (!is_del && bdp->endspaces)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2857 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2858 bdp->endspaces = incr - bdp->endspaces;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2859 if (pend != pstart)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2860 pend = prev_pend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2861 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2862 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2863 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2864 bdp->end_char_vcols = incr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2865 if (is_del && bdp->startspaces)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2866 pstart = prev_pstart;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2867 bdp->textlen = (int)(pend - pstart);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2868 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2869 bdp->textcol = (colnr_T) (pstart - line);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2870 bdp->textstart = pstart;
19176
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2871 #ifdef FEAT_LINEBREAK
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2872 curwin->w_p_lbr = lbr_saved;
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
2873 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2874 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2875
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2876 /*
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2877 * Handle the add/subtract operator.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2878 */
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2879 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2880 op_addsub(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2881 oparg_T *oap,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2882 linenr_T Prenum1, // Amount of add/subtract
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2883 int g_cmd) // was g<c-a>/g<c-x>
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2884 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2885 pos_T pos;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2886 struct block_def bd;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2887 int change_cnt = 0;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2888 linenr_T amount = Prenum1;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2889
15048
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2890 // do_addsub() might trigger re-evaluation of 'foldexpr' halfway, when the
15967
ddd82b1c9e9d patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents: 15840
diff changeset
2891 // buffer is not completely updated yet. Postpone updating folds until before
15048
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2892 // the call to changed_lines().
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2893 #ifdef FEAT_FOLDING
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2894 disable_fold_update++;
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2895 #endif
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2896
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2897 if (!VIsual_active)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2898 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2899 pos = curwin->w_cursor;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2900 if (u_save_cursor() == FAIL)
15048
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2901 {
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2902 #ifdef FEAT_FOLDING
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2903 disable_fold_update--;
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2904 #endif
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2905 return;
15048
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2906 }
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2907 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
15048
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2908 #ifdef FEAT_FOLDING
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2909 disable_fold_update--;
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2910 #endif
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2911 if (change_cnt)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2912 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2913 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2914 else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2915 {
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2916 int one_change;
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2917 int length;
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2918 pos_T startpos;
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2919
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2920 if (u_save((linenr_T)(oap->start.lnum - 1),
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2921 (linenr_T)(oap->end.lnum + 1)) == FAIL)
15048
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2922 {
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2923 #ifdef FEAT_FOLDING
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2924 disable_fold_update--;
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2925 #endif
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2926 return;
15048
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2927 }
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2928
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2929 pos = oap->start;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2930 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2931 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2932 if (oap->block_mode) // Visual block mode
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2933 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2934 block_prep(oap, &bd, pos.lnum, FALSE);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2935 pos.col = bd.textcol;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2936 length = bd.textlen;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2937 }
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2938 else if (oap->motion_type == MLINE)
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2939 {
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2940 curwin->w_cursor.col = 0;
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2941 pos.col = 0;
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2942 length = (colnr_T)STRLEN(ml_get(pos.lnum));
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2943 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2944 else // oap->motion_type == MCHAR
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2945 {
12996
973a0037f4c3 patch 8.0.1374: CTRL-A does not work with an empty line
Christian Brabandt <cb@256bit.org>
parents: 12642
diff changeset
2946 if (pos.lnum == oap->start.lnum && !oap->inclusive)
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2947 dec(&(oap->end));
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2948 length = (colnr_T)STRLEN(ml_get(pos.lnum));
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2949 pos.col = 0;
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2950 if (pos.lnum == oap->start.lnum)
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2951 {
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2952 pos.col += oap->start.col;
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2953 length -= oap->start.col;
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2954 }
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2955 if (pos.lnum == oap->end.lnum)
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2956 {
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2957 length = (int)STRLEN(ml_get(oap->end.lnum));
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2958 if (oap->end.col >= length)
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2959 oap->end.col = length - 1;
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2960 length = oap->end.col - pos.col + 1;
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2961 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2962 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2963 one_change = do_addsub(oap->op_type, &pos, length, amount);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2964 if (one_change)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2965 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2966 // Remember the start position of the first change.
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2967 if (change_cnt == 0)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2968 startpos = curbuf->b_op_start;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2969 ++change_cnt;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2970 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2971
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2972 #ifdef FEAT_NETBEANS_INTG
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2973 if (netbeans_active() && one_change)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2974 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2975 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2976
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2977 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2978 netbeans_inserted(curbuf, pos.lnum, pos.col,
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2979 &ptr[pos.col], length);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2980 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2981 #endif
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2982 if (g_cmd && one_change)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2983 amount += Prenum1;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2984 }
15048
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2985
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2986 #ifdef FEAT_FOLDING
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2987 disable_fold_update--;
73f59cd01ba7 patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
2988 #endif
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2989 if (change_cnt)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2990 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2991
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2992 if (!change_cnt && oap->is_VIsual)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2993 // No change: need to remove the Visual selection
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2994 redraw_curbuf_later(INVERTED);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2995
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2996 // Set '[ mark if something changed. Keep the last end
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2997 // position from do_addsub().
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
2998 if (change_cnt > 0 && !cmdmod.lockmarks)
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2999 curbuf->b_op_start = startpos;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3000
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3001 if (change_cnt > p_report)
19760
9daed26b788b patch 8.2.0436: no warnings for incorrect printf arguments
Bram Moolenaar <Bram@vim.org>
parents: 19665
diff changeset
3002 smsg(NGETTEXT("%d line changed", "%d lines changed",
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
3003 change_cnt), change_cnt);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3004 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3005 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3006
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3007 /*
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3008 * Add or subtract 'Prenum1' from a number in a line
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3009 * op_type is OP_NR_ADD or OP_NR_SUB
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3010 *
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3011 * Returns TRUE if some character was changed.
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3012 */
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3013 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3014 do_addsub(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3015 int op_type,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3016 pos_T *pos,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3017 int length,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3018 linenr_T Prenum1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3019 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3020 int col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3021 char_u *buf1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3022 char_u buf2[NUMBUFLEN];
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3023 int pre; // 'X'/'x': hex; '0': octal; 'B'/'b': bin
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3024 static int hexupper = FALSE; // 0xABC
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3025 uvarnumber_T n;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3026 uvarnumber_T oldn;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3027 char_u *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3028 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3029 int todel;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3030 int dohex;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3031 int dooct;
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3032 int dobin;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3033 int doalp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3034 int firstdigit;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3035 int subtract;
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3036 int negative = FALSE;
6891
f9876721bedc patch 7.4.765
Bram Moolenaar <bram@vim.org>
parents: 6868
diff changeset
3037 int was_positive = TRUE;
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3038 int visual = VIsual_active;
6921
1f78058351a6 patch 7.4.779
Bram Moolenaar <bram@vim.org>
parents: 6919
diff changeset
3039 int did_change = FALSE;
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
3040 pos_T save_cursor = curwin->w_cursor;
6927
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
3041 int maxlen = 0;
7570
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
3042 pos_T startpos;
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
3043 pos_T endpos;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3044
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
3045 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); // "heX"
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
3046 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); // "Octal"
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
3047 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); // "Bin"
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18062
diff changeset
3048 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); // "alPha"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3049
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3050 curwin->w_cursor = *pos;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3051 ptr = ml_get(pos->lnum);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3052 col = pos->col;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3053
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3054 if (*ptr == NUL)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3055 goto theend;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3056
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3057 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3058 * First check if we are on a hexadecimal number, after the "0x".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3059 */
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3060 if (!VIsual_active)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3061 {
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3062 if (dobin)
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3063 while (col > 0 && vim_isbdigit(ptr[col]))
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3064 {
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3065 --col;
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3066 if (has_mbyte)
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3067 col -= (*mb_head_off)(ptr, ptr + col);
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3068 }
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3069
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3070 if (dohex)
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3071 while (col > 0 && vim_isxdigit(ptr[col]))
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3072 {
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3073 --col;
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3074 if (has_mbyte)
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3075 col -= (*mb_head_off)(ptr, ptr + col);
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3076 }
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3077
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3078 if ( dobin
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3079 && dohex
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3080 && ! ((col > 0
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3081 && (ptr[col] == 'X'
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3082 || ptr[col] == 'x')
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3083 && ptr[col - 1] == '0'
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3084 && (!has_mbyte ||
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3085 !(*mb_head_off)(ptr, ptr + col - 1))
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3086 && vim_isxdigit(ptr[col + 1]))))
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3087 {
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3088
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3089 // In case of binary/hexadecimal pattern overlap match, rescan
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3090
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3091 col = pos->col;
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3092
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3093 while (col > 0 && vim_isdigit(ptr[col]))
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3094 {
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3095 col--;
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3096 if (has_mbyte)
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3097 col -= (*mb_head_off)(ptr, ptr + col);
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3098 }
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3099 }
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3100
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3101 if (( dohex
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3102 && col > 0
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3103 && (ptr[col] == 'X'
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3104 || ptr[col] == 'x')
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3105 && ptr[col - 1] == '0'
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3106 && (!has_mbyte ||
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3107 !(*mb_head_off)(ptr, ptr + col - 1))
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3108 && vim_isxdigit(ptr[col + 1])) ||
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3109 ( dobin
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3110 && col > 0
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3111 && (ptr[col] == 'B'
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3112 || ptr[col] == 'b')
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3113 && ptr[col - 1] == '0'
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3114 && (!has_mbyte ||
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3115 !(*mb_head_off)(ptr, ptr + col - 1))
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
3116 && vim_isbdigit(ptr[col + 1])))
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3117 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3118 // Found hexadecimal or binary number, move to its start.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3119 --col;
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3120 if (has_mbyte)
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3121 col -= (*mb_head_off)(ptr, ptr + col);
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3122 }
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3123 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3124 {
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3125 /*
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3126 * Search forward and then backward to find the start of number.
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3127 */
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3128 col = pos->col;
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3129
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3130 while (ptr[col] != NUL
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3131 && !vim_isdigit(ptr[col])
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3132 && !(doalp && ASCII_ISALPHA(ptr[col])))
18251
c8a53c0daeed patch 8.1.2120: some MB_ macros are more complicated than necessary
Bram Moolenaar <Bram@vim.org>
parents: 18219
diff changeset
3133 col += mb_ptr2len(ptr + col);
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3134
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3135 while (col > 0
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3136 && vim_isdigit(ptr[col - 1])
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3137 && !(doalp && ASCII_ISALPHA(ptr[col])))
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3138 {
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3139 --col;
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3140 if (has_mbyte)
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3141 col -= (*mb_head_off)(ptr, ptr + col);
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3142 }
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3143 }
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3144 }
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3145
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3146 if (visual)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3147 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3148 while (ptr[col] != NUL && length > 0
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3149 && !vim_isdigit(ptr[col])
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3150 && !(doalp && ASCII_ISALPHA(ptr[col])))
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3151 {
18251
c8a53c0daeed patch 8.1.2120: some MB_ macros are more complicated than necessary
Bram Moolenaar <Bram@vim.org>
parents: 18219
diff changeset
3152 int mb_len = mb_ptr2len(ptr + col);
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3153
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3154 col += mb_len;
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3155 length -= mb_len;
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3156 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3157
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3158 if (length == 0)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3159 goto theend;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3160
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3161 if (col > pos->col && ptr[col - 1] == '-'
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15555
diff changeset
3162 && (!has_mbyte || !(*mb_head_off)(ptr, ptr + col - 1)))
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3163 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3164 negative = TRUE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3165 was_positive = FALSE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3166 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3167 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3168
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3169 /*
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3170 * If a number was found, and saving for undo works, replace the number.
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3171 */
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3172 firstdigit = ptr[col];
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3173 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3174 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3175 beep_flush();
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3176 goto theend;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3177 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3178
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3179 if (doalp && ASCII_ISALPHA(firstdigit))
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3180 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3181 // decrement or increment alphabetic character
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3182 if (op_type == OP_NR_SUB)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3183 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3184 if (CharOrd(firstdigit) < Prenum1)
6927
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
3185 {
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3186 if (isupper(firstdigit))
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3187 firstdigit = 'A';
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3188 else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3189 firstdigit = 'a';
6927
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
3190 }
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3191 else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3192 #ifdef EBCDIC
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3193 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3194 #else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3195 firstdigit -= Prenum1;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3196 #endif
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3197 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3198 else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3199 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3200 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
6927
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
3201 {
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3202 if (isupper(firstdigit))
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3203 firstdigit = 'Z';
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3204 else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3205 firstdigit = 'z';
6927
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
3206 }
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3207 else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3208 #ifdef EBCDIC
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3209 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3210 #else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3211 firstdigit += Prenum1;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3212 #endif
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3213 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3214 curwin->w_cursor.col = col;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3215 if (!did_change)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3216 startpos = curwin->w_cursor;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3217 did_change = TRUE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3218 (void)del_char(FALSE);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3219 ins_char(firstdigit);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3220 endpos = curwin->w_cursor;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3221 curwin->w_cursor.col = col;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3222 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3223 else
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3224 {
9332
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3225 if (col > 0 && ptr[col - 1] == '-'
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3226 && (!has_mbyte ||
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3227 !(*mb_head_off)(ptr, ptr + col - 1))
a9b8f5613601 commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents: 9307
diff changeset
3228 && !visual)
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3229 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3230 // negative number
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3231 --col;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3232 negative = TRUE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3233 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3234 // get the number value (unsigned)
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3235 if (visual && VIsual_mode != 'V')
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3236 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3237 ? (int)STRLEN(ptr) - col
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3238 : length);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3239
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3240 vim_str2nr(ptr + col, &pre, &length,
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3241 0 + (dobin ? STR2NR_BIN : 0)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3242 + (dooct ? STR2NR_OCT : 0)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3243 + (dohex ? STR2NR_HEX : 0),
16706
77bcb5055fec patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents: 16698
diff changeset
3244 NULL, &n, maxlen, FALSE);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3245
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3246 // ignore leading '-' for hex and octal and bin numbers
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3247 if (pre && negative)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3248 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3249 ++col;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3250 --length;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3251 negative = FALSE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3252 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3253 // add or subtract
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3254 subtract = FALSE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3255 if (op_type == OP_NR_SUB)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3256 subtract ^= TRUE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3257 if (negative)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3258 subtract ^= TRUE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3259
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3260 oldn = n;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3261 if (subtract)
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3262 n -= (uvarnumber_T)Prenum1;
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3263 else
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3264 n += (uvarnumber_T)Prenum1;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3265 // handle wraparound for decimal numbers
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3266 if (!pre)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3267 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3268 if (subtract)
6927
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
3269 {
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3270 if (n > oldn)
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3271 {
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3272 n = 1 + (n ^ (uvarnumber_T)-1);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3273 negative ^= TRUE;
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3274 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3275 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3276 else
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3277 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3278 // add
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3279 if (n < oldn)
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3280 {
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3281 n = (n ^ (uvarnumber_T)-1);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3282 negative ^= TRUE;
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3283 }
6927
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
3284 }
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3285 if (n == 0)
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3286 negative = FALSE;
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3287 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3288
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3289 if (visual && !was_positive && !negative && col > 0)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3290 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3291 // need to remove the '-'
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3292 col--;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3293 length++;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3294 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3295
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3296 /*
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3297 * Delete the old number.
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3298 */
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3299 curwin->w_cursor.col = col;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3300 if (!did_change)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3301 startpos = curwin->w_cursor;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3302 did_change = TRUE;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3303 todel = length;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3304 c = gchar_cursor();
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3305 /*
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3306 * Don't include the '-' in the length, only the length of the
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3307 * part after it is kept the same.
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3308 */
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3309 if (c == '-')
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3310 --length;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3311 while (todel-- > 0)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3312 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3313 if (c < 0x100 && isalpha(c))
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3314 {
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3315 if (isupper(c))
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3316 hexupper = TRUE;
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3317 else
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3318 hexupper = FALSE;
6891
f9876721bedc patch 7.4.765
Bram Moolenaar <bram@vim.org>
parents: 6868
diff changeset
3319 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3320 // del_char() will mark line needing displaying
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3321 (void)del_char(FALSE);
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3322 c = gchar_cursor();
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3323 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3324
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3325 /*
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3326 * Prepare the leading characters in buf1[].
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3327 * When there are many leading zeros it could be very long.
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3328 * Allocate a bit too much.
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3329 */
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
3330 buf1 = alloc(length + NUMBUFLEN);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3331 if (buf1 == NULL)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3332 goto theend;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3333 ptr = buf1;
8989
e600e696c0a1 commit https://github.com/vim/vim/commit/dc633cf82758f67f656cda7fa8ccc30414ee53f8
Christian Brabandt <cb@256bit.org>
parents: 8863
diff changeset
3334 if (negative && (!visual || was_positive))
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3335 *ptr++ = '-';
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3336 if (pre)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3337 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3338 *ptr++ = '0';
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3339 --length;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3340 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3341 if (pre == 'b' || pre == 'B' ||
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3342 pre == 'x' || pre == 'X')
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3343 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3344 *ptr++ = pre;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3345 --length;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3346 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3347
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3348 /*
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3349 * Put the number characters in buf2[].
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3350 */
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3351 if (pre == 'b' || pre == 'B')
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3352 {
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3353 int i;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3354 int bit = 0;
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3355 int bits = sizeof(uvarnumber_T) * 8;
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3356
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3357 // leading zeros
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3358 for (bit = bits; bit > 0; bit--)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3359 if ((n >> (bit - 1)) & 0x1) break;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3360
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3361 for (i = 0; bit > 0; bit--)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3362 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3363
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3364 buf2[i] = '\0';
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3365 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3366 else if (pre == 0)
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3367 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu", (uvarnumber_T)n);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3368 else if (pre == '0')
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3369 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo", (uvarnumber_T)n);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3370 else if (pre && hexupper)
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3371 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX", (uvarnumber_T)n);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3372 else
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3373 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx", (uvarnumber_T)n);
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3374 length -= (int)STRLEN(buf2);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3375
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3376 /*
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3377 * Adjust number of zeros to the new number of digits, so the
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3378 * total length of the number remains the same.
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3379 * Don't do this when
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3380 * the result may look like an octal number.
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3381 */
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3382 if (firstdigit == '0' && !(dooct && pre == 0))
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3383 while (length-- > 0)
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
3384 *ptr++ = '0';
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3385 *ptr = NUL;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3386 STRCAT(buf1, buf2);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3387 ins_str(buf1); // insert the new number
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3388 vim_free(buf1);
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3389 endpos = curwin->w_cursor;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3390 if (did_change && curwin->w_cursor.col)
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3391 --curwin->w_cursor.col;
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3392 }
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3393
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
3394 if (did_change && !cmdmod.lockmarks)
7570
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
3395 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3396 // set the '[ and '] marks
7570
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
3397 curbuf->b_op_start = startpos;
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
3398 curbuf->b_op_end = endpos;
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
3399 if (curbuf->b_op_end.col > 0)
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
3400 --curbuf->b_op_end.col;
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
3401 }
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3402
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
3403 theend:
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
3404 if (visual)
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
3405 curwin->w_cursor = save_cursor;
8690
6a1becf4f282 commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents: 8399
diff changeset
3406 else if (did_change)
6a1becf4f282 commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents: 8399
diff changeset
3407 curwin->w_set_curswant = TRUE;
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
3408
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
3409 return did_change;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3410 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3411
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3412 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3413 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3414 * SELECTION / PRIMARY ('*')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3415 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3416 * Text selection stuff that uses the GUI selection register '*'. When using a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3417 * GUI this may be text from another window, otherwise it is the last text we
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3418 * had highlighted with VIsual mode. With mouse support, clicking the middle
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3419 * button performs the paste, otherwise you will need to do <"*p>. "
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3420 * If not under X, it is synonymous with the clipboard register '+'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3421 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3422 * X CLIPBOARD ('+')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3423 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3424 * Text selection stuff that uses the GUI clipboard register '+'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3425 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3426 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3427 * otherwise you will need to do <"+p>. "
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3428 * If not under X, it is synonymous with the selection register '*'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3429 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3430
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3431 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3432 * Routine to export any final X selection we had to the environment
11065
f5bd684e47a1 patch 8.0.0421: diff mode wrong when adding line at end of buffer
Christian Brabandt <cb@256bit.org>
parents: 10827
diff changeset
3433 * so that the text is still available after Vim has exited. X selections
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3434 * only exist while the owning application exists, so we write to the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3435 * permanent (while X runs) store CUT_BUFFER0.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3436 * Dump the CLIPBOARD selection if we own it (it's logically the more
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3437 * 'permanent' of the two), otherwise the PRIMARY one.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3438 * For now, use a hard-coded sanity limit of 1Mb of data.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3439 */
9834
80ace3687eec commit https://github.com/vim/vim/commit/a6b7a08ae04a3cd4d9c45c906bb7a197e2135179
Christian Brabandt <cb@256bit.org>
parents: 9389
diff changeset
3440 #if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3441 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3442 x11_export_final_selection(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3443 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3444 Display *dpy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3445 char_u *str = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3446 long_u len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3447 int motion_type = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3448
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3449 # ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3450 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3451 dpy = X_DISPLAY;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3452 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3453 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3454 # ifdef FEAT_XCLIPBOARD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3455 dpy = xterm_dpy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3456 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3457 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3458 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3459
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3460 // Get selection to export
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3461 if (clip_plus.owned)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3462 motion_type = clip_convert_selection(&str, &len, &clip_plus);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3463 else if (clip_star.owned)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3464 motion_type = clip_convert_selection(&str, &len, &clip_star);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3465
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3466 // Check it's OK
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3467 if (dpy != NULL && str != NULL && motion_type >= 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3468 && len < 1024*1024 && len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3469 {
4201
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3470 int ok = TRUE;
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3471
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3472 // The CUT_BUFFER0 is supposed to always contain latin1. Convert from
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3473 // 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3474 // encoding conversion usually doesn't work, so keep the text as-is.
1924
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3475 if (has_mbyte)
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3476 {
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3477 vimconv_T vc;
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3478
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3479 vc.vc_type = CONV_NONE;
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3480 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3481 {
2047
85da03763130 updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents: 2007
diff changeset
3482 int intlen = len;
85da03763130 updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents: 2007
diff changeset
3483 char_u *conv_str;
2007
b8ab4ba6b110 updated for version 7.2-304
vimboss
parents: 2000
diff changeset
3484
4201
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3485 vc.vc_fail = TRUE;
2007
b8ab4ba6b110 updated for version 7.2-304
vimboss
parents: 2000
diff changeset
3486 conv_str = string_convert(&vc, str, &intlen);
b8ab4ba6b110 updated for version 7.2-304
vimboss
parents: 2000
diff changeset
3487 len = intlen;
1924
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3488 if (conv_str != NULL)
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3489 {
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3490 vim_free(str);
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3491 str = conv_str;
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3492 }
4201
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3493 else
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3494 {
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3495 ok = FALSE;
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3496 }
1924
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3497 convert_setup(&vc, NULL, NULL);
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3498 }
4201
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3499 else
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3500 {
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3501 ok = FALSE;
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3502 }
1924
75a69023117c updated for version 7.2-221
vimboss
parents: 1893
diff changeset
3503 }
4201
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3504
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3505 // Do not store the string if conversion failed. Better to use any
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3506 // other selection than garbled text.
4201
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3507 if (ok)
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3508 {
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3509 XStoreBuffer(dpy, (char *)str, (int)len, 0);
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3510 XFlush(dpy);
3fd805ca2a6a updated for version 7.3.852
Bram Moolenaar <bram@vim.org>
parents: 4005
diff changeset
3511 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3512 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3513
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3514 vim_free(str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3515 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3516 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3517 #endif // FEAT_CLIPBOARD || PROTO
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3518
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3519 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3520 clear_oparg(oparg_T *oap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3521 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3522 vim_memset(oap, 0, sizeof(oparg_T));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3523 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3524
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3525 /*
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3526 * Count the number of bytes, characters and "words" in a line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3527 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3528 * "Words" are counted by looking for boundaries between non-space and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3529 * space characters. (it seems to produce results that match 'wc'.)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3530 *
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3531 * Return value is byte count; word count for the line is added to "*wc".
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3532 * Char count is added to "*cc".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3533 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3534 * The function will only examine the first "limit" characters in the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3535 * line, stopping if it encounters an end-of-line (NUL byte). In that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3536 * case, eol_size will be added to the character count to account for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3537 * the size of the EOL character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3538 */
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3539 static varnumber_T
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3540 line_count_info(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3541 char_u *line,
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3542 varnumber_T *wc,
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3543 varnumber_T *cc,
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3544 varnumber_T limit,
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3545 int eol_size)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3546 {
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3547 varnumber_T i;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3548 varnumber_T words = 0;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3549 varnumber_T chars = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3550 int is_word = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3551
3626
802b1a1b275f updated for version 7.3.573
Bram Moolenaar <bram@vim.org>
parents: 3584
diff changeset
3552 for (i = 0; i < limit && line[i] != NUL; )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3553 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3554 if (is_word)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3555 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3556 if (vim_isspace(line[i]))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3557 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3558 words++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3559 is_word = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3560 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3561 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3562 else if (!vim_isspace(line[i]))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3563 is_word = 1;
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3564 ++chars;
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 446
diff changeset
3565 i += (*mb_ptr2len)(line + i);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3566 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3567
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3568 if (is_word)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3569 words++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3570 *wc += words;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3571
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3572 // Add eol_size if the end of line was reached before hitting limit.
2996
b9182da84c7e updated for version 7.3.270
Bram Moolenaar <bram@vim.org>
parents: 2957
diff changeset
3573 if (i < limit && line[i] == NUL)
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3574 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3575 i += eol_size;
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3576 chars += eol_size;
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3577 }
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3578 *cc += chars;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3579 return i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3580 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3581
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3582 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3583 * Give some info about the position of the cursor (for "g CTRL-G").
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3584 * In Visual mode, give some info about the selected region. (In this case,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3585 * the *_count_cursor variables store running totals for the selection.)
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3586 * When "dict" is not NULL store the info there instead of showing it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3587 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3588 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3589 cursor_pos_info(dict_T *dict)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3590 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3591 char_u *p;
274
8fa8d7964cf1 updated for version 7.0073
vimboss
parents: 237
diff changeset
3592 char_u buf1[50];
8fa8d7964cf1 updated for version 7.0073
vimboss
parents: 237
diff changeset
3593 char_u buf2[40];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3594 linenr_T lnum;
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3595 varnumber_T byte_count = 0;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3596 varnumber_T bom_count = 0;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3597 varnumber_T byte_count_cursor = 0;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3598 varnumber_T char_count = 0;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3599 varnumber_T char_count_cursor = 0;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3600 varnumber_T word_count = 0;
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3601 varnumber_T word_count_cursor = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3602 int eol_size;
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3603 varnumber_T last_check = 100000L;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3604 long line_count_selected = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3605 pos_T min_pos, max_pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3606 oparg_T oparg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3607 struct block_def bd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3608
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3609 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3610 * Compute the length of the file in characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3611 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3612 if (curbuf->b_ml.ml_flags & ML_EMPTY)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3613 {
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3614 if (dict == NULL)
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3615 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15517
diff changeset
3616 msg(_(no_lines_msg));
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3617 return;
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3618 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3619 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3620 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3621 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3622 if (get_fileformat(curbuf) == EOL_DOS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3623 eol_size = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3624 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3625 eol_size = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3626
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3627 if (VIsual_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3628 {
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11065
diff changeset
3629 if (LT_POS(VIsual, curwin->w_cursor))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3630 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3631 min_pos = VIsual;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3632 max_pos = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3633 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3634 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3635 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3636 min_pos = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3637 max_pos = VIsual;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3638 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3639 if (*p_sel == 'e' && max_pos.col > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3640 --max_pos.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3641
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3642 if (VIsual_mode == Ctrl_V)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3643 {
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1860
diff changeset
3644 #ifdef FEAT_LINEBREAK
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1860
diff changeset
3645 char_u * saved_sbr = p_sbr;
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18481
diff changeset
3646 char_u * saved_w_sbr = curwin->w_p_sbr;
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1860
diff changeset
3647
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3648 // Make 'sbr' empty for a moment to get the correct size.
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1860
diff changeset
3649 p_sbr = empty_option;
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18481
diff changeset
3650 curwin->w_p_sbr = empty_option;
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1860
diff changeset
3651 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3652 oparg.is_VIsual = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3653 oparg.block_mode = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3654 oparg.op_type = OP_NOP;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3655 getvcols(curwin, &min_pos, &max_pos,
688
bcd2edc4539e updated for version 7.0207
vimboss
parents: 681
diff changeset
3656 &oparg.start_vcol, &oparg.end_vcol);
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1860
diff changeset
3657 #ifdef FEAT_LINEBREAK
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1860
diff changeset
3658 p_sbr = saved_sbr;
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18481
diff changeset
3659 curwin->w_p_sbr = saved_w_sbr;
1866
c474f5691c0c updated for version 7.2-164
vimboss
parents: 1860
diff changeset
3660 #endif
688
bcd2edc4539e updated for version 7.0207
vimboss
parents: 681
diff changeset
3661 if (curwin->w_curswant == MAXCOL)
bcd2edc4539e updated for version 7.0207
vimboss
parents: 681
diff changeset
3662 oparg.end_vcol = MAXCOL;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3663 // Swap the start, end vcol if needed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3664 if (oparg.end_vcol < oparg.start_vcol)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3665 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3666 oparg.end_vcol += oparg.start_vcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3667 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3668 oparg.end_vcol -= oparg.start_vcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3669 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3670 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3671 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3672 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3673
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3674 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3675 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3676 // Check for a CTRL-C every 100000 characters.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3677 if (byte_count > last_check)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3678 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3679 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3680 if (got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3681 return;
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3682 last_check = byte_count + 100000L;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3683 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3684
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3685 // Do extra processing for VIsual mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3686 if (VIsual_active
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3687 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3688 {
45
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3689 char_u *s = NULL;
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3690 long len = 0L;
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3691
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3692 switch (VIsual_mode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3693 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3694 case Ctrl_V:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3695 virtual_op = virtual_active();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3696 block_prep(&oparg, &bd, lnum, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3697 virtual_op = MAYBE;
45
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3698 s = bd.textstart;
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3699 len = (long)bd.textlen;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3700 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3701 case 'V':
45
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3702 s = ml_get(lnum);
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3703 len = MAXCOL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3704 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3705 case 'v':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3706 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3707 colnr_T start_col = (lnum == min_pos.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3708 ? min_pos.col : 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3709 colnr_T end_col = (lnum == max_pos.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3710 ? max_pos.col - start_col + 1 : MAXCOL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3711
45
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3712 s = ml_get(lnum) + start_col;
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3713 len = end_col;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3714 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3715 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3716 }
45
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3717 if (s != NULL)
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3718 {
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3719 byte_count_cursor += line_count_info(s, &word_count_cursor,
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3720 &char_count_cursor, len, eol_size);
45
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3721 if (lnum == curbuf->b_ml.ml_line_count
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3722 && !curbuf->b_p_eol
6933
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6929
diff changeset
3723 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
50
90188be4861f updated for version 7.0028
vimboss
parents: 45
diff changeset
3724 && (long)STRLEN(s) < len)
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3725 byte_count_cursor -= eol_size;
45
e474bae3795f updated for version 7.0027
vimboss
parents: 39
diff changeset
3726 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3727 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3728 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3729 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3730 // In non-visual mode, check for the line the cursor is on
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3731 if (lnum == curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3732 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3733 word_count_cursor += word_count;
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3734 char_count_cursor += char_count;
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3735 byte_count_cursor = byte_count +
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3736 line_count_info(ml_get(lnum),
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3737 &word_count_cursor, &char_count_cursor,
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3738 (varnumber_T)(curwin->w_cursor.col + 1),
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3739 eol_size);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3740 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3741 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3742 // Add to the running totals
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3743 byte_count += line_count_info(ml_get(lnum), &word_count,
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3744 &char_count, (varnumber_T)MAXCOL,
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3745 eol_size);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3746 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3747
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3748 // Correction for when last line doesn't have an EOL.
6933
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6929
diff changeset
3749 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3750 byte_count -= eol_size;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3751
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3752 if (dict == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3753 {
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3754 if (VIsual_active)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3755 {
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3756 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3757 {
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3758 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3759 &max_pos.col);
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3760 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3761 (long)(oparg.end_vcol - oparg.start_vcol + 1));
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3762 }
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3763 else
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3764 buf1[0] = NUL;
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3765
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3766 if (char_count_cursor == byte_count_cursor
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3767 && char_count == byte_count)
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3768 vim_snprintf((char *)IObuff, IOSIZE,
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3769 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3770 buf1, line_count_selected,
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3771 (long)curbuf->b_ml.ml_line_count,
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3772 (varnumber_T)word_count_cursor,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3773 (varnumber_T)word_count,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3774 (varnumber_T)byte_count_cursor,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3775 (varnumber_T)byte_count);
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3776 else
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3777 vim_snprintf((char *)IObuff, IOSIZE,
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3778 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Chars; %lld of %lld Bytes"),
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3779 buf1, line_count_selected,
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3780 (long)curbuf->b_ml.ml_line_count,
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3781 (varnumber_T)word_count_cursor,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3782 (varnumber_T)word_count,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3783 (varnumber_T)char_count_cursor,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3784 (varnumber_T)char_count,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3785 (varnumber_T)byte_count_cursor,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3786 (varnumber_T)byte_count);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3787 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3788 else
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3789 {
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3790 p = ml_get_curline();
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3791 validate_virtcol();
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3792 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3793 (int)curwin->w_virtcol + 1);
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3794 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3795 linetabsize(p));
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3796
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3797 if (char_count_cursor == byte_count_cursor
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3798 && char_count == byte_count)
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3799 vim_snprintf((char *)IObuff, IOSIZE,
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3800 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3801 (char *)buf1, (char *)buf2,
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3802 (long)curwin->w_cursor.lnum,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3803 (long)curbuf->b_ml.ml_line_count,
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3804 (varnumber_T)word_count_cursor, (varnumber_T)word_count,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3805 (varnumber_T)byte_count_cursor, (varnumber_T)byte_count);
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3806 else
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3807 vim_snprintf((char *)IObuff, IOSIZE,
9389
32e34e574716 commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents: 9332
diff changeset
3808 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Char %lld of %lld; Byte %lld of %lld"),
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3809 (char *)buf1, (char *)buf2,
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3810 (long)curwin->w_cursor.lnum,
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 140
diff changeset
3811 (long)curbuf->b_ml.ml_line_count,
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3812 (varnumber_T)word_count_cursor, (varnumber_T)word_count,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3813 (varnumber_T)char_count_cursor, (varnumber_T)char_count,
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3814 (varnumber_T)byte_count_cursor, (varnumber_T)byte_count);
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3815 }
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3816 }
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3817
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3818 bom_count = bomb_size();
18062
0b351691071c patch 8.1.2026: possibly using uninitialized memory
Bram Moolenaar <Bram@vim.org>
parents: 17797
diff changeset
3819 if (dict == NULL && bom_count > 0)
19005
53088656f5ed patch 8.2.0063: wrong size argument to vim_snprintf()
Bram Moolenaar <Bram@vim.org>
parents: 18914
diff changeset
3820 {
53088656f5ed patch 8.2.0063: wrong size argument to vim_snprintf()
Bram Moolenaar <Bram@vim.org>
parents: 18914
diff changeset
3821 size_t len = STRLEN(IObuff);
53088656f5ed patch 8.2.0063: wrong size argument to vim_snprintf()
Bram Moolenaar <Bram@vim.org>
parents: 18914
diff changeset
3822
53088656f5ed patch 8.2.0063: wrong size argument to vim_snprintf()
Bram Moolenaar <Bram@vim.org>
parents: 18914
diff changeset
3823 vim_snprintf((char *)IObuff + len, IOSIZE - len,
19477
2bb0e80fcd32 patch 8.2.0296: mixing up "long long" and __int64 may cause problems
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3824 _("(+%lld for BOM)"), (varnumber_T)bom_count);
19005
53088656f5ed patch 8.2.0063: wrong size argument to vim_snprintf()
Bram Moolenaar <Bram@vim.org>
parents: 18914
diff changeset
3825 }
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3826 if (dict == NULL)
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3827 {
18062
0b351691071c patch 8.1.2026: possibly using uninitialized memory
Bram Moolenaar <Bram@vim.org>
parents: 17797
diff changeset
3828 // Don't shorten this message, the user asked for it.
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3829 p = p_shm;
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3830 p_shm = (char_u *)"";
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15517
diff changeset
3831 msg((char *)IObuff);
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3832 p_shm = p;
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3833 }
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3834 }
7484
1fe988587423 commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents: 7480
diff changeset
3835 #if defined(FEAT_EVAL)
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3836 if (dict != NULL)
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
3837 {
14301
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
3838 dict_add_number(dict, "words", word_count);
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
3839 dict_add_number(dict, "chars", char_count);
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15555
diff changeset
3840 dict_add_number(dict, "bytes", byte_count + bom_count);
14301
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
3841 dict_add_number(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
3842 byte_count_cursor);
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
3843 dict_add_number(dict, VIsual_active ? "visual_chars" : "cursor_chars",
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
3844 char_count_cursor);
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
3845 dict_add_number(dict, VIsual_active ? "visual_words" : "cursor_words",
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14216
diff changeset
3846 word_count_cursor);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3847 }
7484
1fe988587423 commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents: 7480
diff changeset
3848 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3849 }
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3850
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3851 /*
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3852 * Handle indent and format operators and visual mode ":".
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3853 */
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3854 static void
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3855 op_colon(oparg_T *oap)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3856 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3857 stuffcharReadbuff(':');
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3858 if (oap->is_VIsual)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3859 stuffReadbuff((char_u *)"'<,'>");
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3860 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3861 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3862 // Make the range look nice, so it can be repeated.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3863 if (oap->start.lnum == curwin->w_cursor.lnum)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3864 stuffcharReadbuff('.');
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3865 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3866 stuffnumReadbuff((long)oap->start.lnum);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3867 if (oap->end.lnum != oap->start.lnum)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3868 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3869 stuffcharReadbuff(',');
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3870 if (oap->end.lnum == curwin->w_cursor.lnum)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3871 stuffcharReadbuff('.');
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3872 else if (oap->end.lnum == curbuf->b_ml.ml_line_count)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3873 stuffcharReadbuff('$');
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3874 else if (oap->start.lnum == curwin->w_cursor.lnum)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3875 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3876 stuffReadbuff((char_u *)".+");
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3877 stuffnumReadbuff((long)oap->line_count - 1);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3878 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3879 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3880 stuffnumReadbuff((long)oap->end.lnum);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3881 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3882 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3883 if (oap->op_type != OP_COLON)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3884 stuffReadbuff((char_u *)"!");
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3885 if (oap->op_type == OP_INDENT)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3886 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3887 #ifndef FEAT_CINDENT
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3888 if (*get_equalprg() == NUL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3889 stuffReadbuff((char_u *)"indent");
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3890 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3891 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3892 stuffReadbuff(get_equalprg());
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3893 stuffReadbuff((char_u *)"\n");
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3894 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3895 else if (oap->op_type == OP_FORMAT)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3896 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3897 if (*curbuf->b_p_fp != NUL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3898 stuffReadbuff(curbuf->b_p_fp);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3899 else if (*p_fp != NUL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3900 stuffReadbuff(p_fp);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3901 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3902 stuffReadbuff((char_u *)"fmt");
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3903 stuffReadbuff((char_u *)"\n']");
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3904 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3905
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3906 // do_cmdline() does the rest
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3907 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3908
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3909 /*
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3910 * Handle the "g@" operator: call 'operatorfunc'.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3911 */
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3912 static void
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3913 op_function(oparg_T *oap UNUSED)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3914 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3915 #ifdef FEAT_EVAL
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3916 typval_T argv[2];
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3917 int save_virtual_op = virtual_op;
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
3918 pos_T orig_start = curbuf->b_op_start;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
3919 pos_T orig_end = curbuf->b_op_end;
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3920
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3921 if (*p_opfunc == NUL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3922 emsg(_("E774: 'operatorfunc' is empty"));
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3923 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3924 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3925 // Set '[ and '] marks to text to be operated on.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3926 curbuf->b_op_start = oap->start;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3927 curbuf->b_op_end = oap->end;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3928 if (oap->motion_type != MLINE && !oap->inclusive)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3929 // Exclude the end position.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3930 decl(&curbuf->b_op_end);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3931
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3932 argv[0].v_type = VAR_STRING;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3933 if (oap->block_mode)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3934 argv[0].vval.v_string = (char_u *)"block";
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3935 else if (oap->motion_type == MLINE)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3936 argv[0].vval.v_string = (char_u *)"line";
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3937 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3938 argv[0].vval.v_string = (char_u *)"char";
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3939 argv[1].v_type = VAR_UNKNOWN;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3940
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3941 // Reset virtual_op so that 'virtualedit' can be changed in the
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3942 // function.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3943 virtual_op = MAYBE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3944
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3945 (void)call_func_retnr(p_opfunc, 1, argv);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3946
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3947 virtual_op = save_virtual_op;
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
3948 if (cmdmod.lockmarks)
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
3949 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
3950 curbuf->b_op_start = orig_start;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
3951 curbuf->b_op_end = orig_end;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18599
diff changeset
3952 }
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3953 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3954 #else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3955 emsg(_("E775: Eval feature not available"));
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3956 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3957 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3958
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3959 /*
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3960 * Calculate start/end virtual columns for operating in block mode.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3961 */
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3962 static void
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3963 get_op_vcol(
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3964 oparg_T *oap,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3965 colnr_T redo_VIsual_vcol,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3966 int initial) // when TRUE adjust position for 'selectmode'
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3967 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3968 colnr_T start, end;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3969
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3970 if (VIsual_mode != Ctrl_V
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3971 || (!initial && oap->end.col < curwin->w_width))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3972 return;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3973
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3974 oap->block_mode = TRUE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3975
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3976 // prevent from moving onto a trail byte
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3977 if (has_mbyte)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3978 mb_adjustpos(curwin->w_buffer, &oap->end);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3979
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3980 getvvcol(curwin, &(oap->start), &oap->start_vcol, NULL, &oap->end_vcol);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3981
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3982 if (!redo_VIsual_busy)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3983 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3984 getvvcol(curwin, &(oap->end), &start, NULL, &end);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3985
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3986 if (start < oap->start_vcol)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3987 oap->start_vcol = start;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3988 if (end > oap->end_vcol)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3989 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3990 if (initial && *p_sel == 'e' && start >= 1
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3991 && start - 1 >= oap->end_vcol)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3992 oap->end_vcol = start - 1;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3993 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3994 oap->end_vcol = end;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3995 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3996 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3997
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3998 // if '$' was used, get oap->end_vcol from longest line
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
3999 if (curwin->w_curswant == MAXCOL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4000 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4001 curwin->w_cursor.col = MAXCOL;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4002 oap->end_vcol = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4003 for (curwin->w_cursor.lnum = oap->start.lnum;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4004 curwin->w_cursor.lnum <= oap->end.lnum;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4005 ++curwin->w_cursor.lnum)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4006 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4007 getvvcol(curwin, &curwin->w_cursor, NULL, NULL, &end);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4008 if (end > oap->end_vcol)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4009 oap->end_vcol = end;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4010 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4011 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4012 else if (redo_VIsual_busy)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4013 oap->end_vcol = oap->start_vcol + redo_VIsual_vcol - 1;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4014 // Correct oap->end.col and oap->start.col to be the
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4015 // upper-left and lower-right corner of the block area.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4016 //
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4017 // (Actually, this does convert column positions into character
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4018 // positions)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4019 curwin->w_cursor.lnum = oap->end.lnum;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4020 coladvance(oap->end_vcol);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4021 oap->end = curwin->w_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4022
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4023 curwin->w_cursor = oap->start;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4024 coladvance(oap->start_vcol);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4025 oap->start = curwin->w_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4026 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4027
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4028 /*
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4029 * Handle an operator after Visual mode or when the movement is finished.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4030 * "gui_yank" is true when yanking text for the clipboard.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4031 */
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4032 void
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4033 do_pending_operator(cmdarg_T *cap, int old_col, int gui_yank)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4034 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4035 oparg_T *oap = cap->oap;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4036 pos_T old_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4037 int empty_region_error;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4038 int restart_edit_save;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4039 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4040 int lbr_saved = curwin->w_p_lbr;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4041 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4042
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4043 // The visual area is remembered for redo
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4044 static int redo_VIsual_mode = NUL; // 'v', 'V', or Ctrl-V
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4045 static linenr_T redo_VIsual_line_count; // number of lines
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4046 static colnr_T redo_VIsual_vcol; // number of cols or end column
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4047 static long redo_VIsual_count; // count for Visual operator
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4048 static int redo_VIsual_arg; // extra argument
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4049 int include_line_break = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4050
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4051 #if defined(FEAT_CLIPBOARD)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4052 // Yank the visual area into the GUI selection register before we operate
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4053 // on it and lose it forever.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4054 // Don't do it if a specific register was specified, so that ""x"*P works.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4055 // This could call do_pending_operator() recursively, but that's OK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4056 // because gui_yank will be TRUE for the nested call.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4057 if ((clip_star.available || clip_plus.available)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4058 && oap->op_type != OP_NOP
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4059 && !gui_yank
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4060 && VIsual_active
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4061 && !redo_VIsual_busy
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4062 && oap->regname == 0)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4063 clip_auto_select();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4064 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4065 old_cursor = curwin->w_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4066
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4067 // If an operation is pending, handle it...
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4068 if ((finish_op || VIsual_active) && oap->op_type != OP_NOP)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4069 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4070 // Yank can be redone when 'y' is in 'cpoptions', but not when yanking
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4071 // for the clipboard.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4072 int redo_yank = vim_strchr(p_cpo, CPO_YANK) != NULL && !gui_yank;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4073
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4074 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4075 // Avoid a problem with unwanted linebreaks in block mode.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4076 if (curwin->w_p_lbr)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4077 curwin->w_valid &= ~VALID_VIRTCOL;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4078 curwin->w_p_lbr = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4079 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4080 oap->is_VIsual = VIsual_active;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4081 if (oap->motion_force == 'V')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4082 oap->motion_type = MLINE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4083 else if (oap->motion_force == 'v')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4084 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4085 // If the motion was linewise, "inclusive" will not have been set.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4086 // Use "exclusive" to be consistent. Makes "dvj" work nice.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4087 if (oap->motion_type == MLINE)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4088 oap->inclusive = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4089 // If the motion already was characterwise, toggle "inclusive"
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4090 else if (oap->motion_type == MCHAR)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4091 oap->inclusive = !oap->inclusive;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4092 oap->motion_type = MCHAR;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4093 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4094 else if (oap->motion_force == Ctrl_V)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4095 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4096 // Change line- or characterwise motion into Visual block mode.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4097 if (!VIsual_active)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4098 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4099 VIsual_active = TRUE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4100 VIsual = oap->start;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4101 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4102 VIsual_mode = Ctrl_V;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4103 VIsual_select = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4104 VIsual_reselect = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4105 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4106
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4107 // Only redo yank when 'y' flag is in 'cpoptions'.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4108 // Never redo "zf" (define fold).
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4109 if ((redo_yank || oap->op_type != OP_YANK)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4110 && ((!VIsual_active || oap->motion_force)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4111 // Also redo Operator-pending Visual mode mappings
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4112 || (VIsual_active && cap->cmdchar == ':'
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4113 && oap->op_type != OP_COLON))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4114 && cap->cmdchar != 'D'
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4115 #ifdef FEAT_FOLDING
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4116 && oap->op_type != OP_FOLD
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4117 && oap->op_type != OP_FOLDOPEN
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4118 && oap->op_type != OP_FOLDOPENREC
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4119 && oap->op_type != OP_FOLDCLOSE
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4120 && oap->op_type != OP_FOLDCLOSEREC
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4121 && oap->op_type != OP_FOLDDEL
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4122 && oap->op_type != OP_FOLDDELREC
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4123 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4124 )
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4125 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4126 prep_redo(oap->regname, cap->count0,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4127 get_op_char(oap->op_type), get_extra_op_char(oap->op_type),
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4128 oap->motion_force, cap->cmdchar, cap->nchar);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4129 if (cap->cmdchar == '/' || cap->cmdchar == '?') // was a search
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4130 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4131 // If 'cpoptions' does not contain 'r', insert the search
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4132 // pattern to really repeat the same command.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4133 if (vim_strchr(p_cpo, CPO_REDO) == NULL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4134 AppendToRedobuffLit(cap->searchbuf, -1);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4135 AppendToRedobuff(NL_STR);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4136 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4137 else if (cap->cmdchar == ':')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4138 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4139 // do_cmdline() has stored the first typed line in
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4140 // "repeat_cmdline". When several lines are typed repeating
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4141 // won't be possible.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4142 if (repeat_cmdline == NULL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4143 ResetRedobuff();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4144 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4145 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4146 AppendToRedobuffLit(repeat_cmdline, -1);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4147 AppendToRedobuff(NL_STR);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4148 VIM_CLEAR(repeat_cmdline);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4149 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4150 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4151 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4152
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4153 if (redo_VIsual_busy)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4154 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4155 // Redo of an operation on a Visual area. Use the same size from
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4156 // redo_VIsual_line_count and redo_VIsual_vcol.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4157 oap->start = curwin->w_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4158 curwin->w_cursor.lnum += redo_VIsual_line_count - 1;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4159 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4160 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4161 VIsual_mode = redo_VIsual_mode;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4162 if (redo_VIsual_vcol == MAXCOL || VIsual_mode == 'v')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4163 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4164 if (VIsual_mode == 'v')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4165 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4166 if (redo_VIsual_line_count <= 1)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4167 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4168 validate_virtcol();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4169 curwin->w_curswant =
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4170 curwin->w_virtcol + redo_VIsual_vcol - 1;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4171 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4172 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4173 curwin->w_curswant = redo_VIsual_vcol;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4174 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4175 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4176 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4177 curwin->w_curswant = MAXCOL;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4178 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4179 coladvance(curwin->w_curswant);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4180 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4181 cap->count0 = redo_VIsual_count;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4182 if (redo_VIsual_count != 0)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4183 cap->count1 = redo_VIsual_count;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4184 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4185 cap->count1 = 1;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4186 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4187 else if (VIsual_active)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4188 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4189 if (!gui_yank)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4190 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4191 // Save the current VIsual area for '< and '> marks, and "gv"
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4192 curbuf->b_visual.vi_start = VIsual;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4193 curbuf->b_visual.vi_end = curwin->w_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4194 curbuf->b_visual.vi_mode = VIsual_mode;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4195 restore_visual_mode();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4196 curbuf->b_visual.vi_curswant = curwin->w_curswant;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4197 # ifdef FEAT_EVAL
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4198 curbuf->b_visual_mode_eval = VIsual_mode;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4199 # endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4200 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4201
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4202 // In Select mode, a linewise selection is operated upon like a
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4203 // characterwise selection.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4204 // Special case: gH<Del> deletes the last line.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4205 if (VIsual_select && VIsual_mode == 'V'
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4206 && cap->oap->op_type != OP_DELETE)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4207 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4208 if (LT_POS(VIsual, curwin->w_cursor))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4209 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4210 VIsual.col = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4211 curwin->w_cursor.col =
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4212 (colnr_T)STRLEN(ml_get(curwin->w_cursor.lnum));
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4213 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4214 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4215 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4216 curwin->w_cursor.col = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4217 VIsual.col = (colnr_T)STRLEN(ml_get(VIsual.lnum));
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4218 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4219 VIsual_mode = 'v';
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4220 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4221 // If 'selection' is "exclusive", backup one character for
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4222 // charwise selections.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4223 else if (VIsual_mode == 'v')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4224 include_line_break = unadjust_for_sel();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4225
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4226 oap->start = VIsual;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4227 if (VIsual_mode == 'V')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4228 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4229 oap->start.col = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4230 oap->start.coladd = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4231 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4232 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4233
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4234 // Set oap->start to the first position of the operated text, oap->end
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4235 // to the end of the operated text. w_cursor is equal to oap->start.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4236 if (LT_POS(oap->start, curwin->w_cursor))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4237 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4238 #ifdef FEAT_FOLDING
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4239 // Include folded lines completely.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4240 if (!VIsual_active)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4241 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4242 if (hasFolding(oap->start.lnum, &oap->start.lnum, NULL))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4243 oap->start.col = 0;
18882
f9e41ffd3539 patch 8.2.0002: "dj" only deletes first line of closed fold
Bram Moolenaar <Bram@vim.org>
parents: 18808
diff changeset
4244 if ((curwin->w_cursor.col > 0 || oap->inclusive
f9e41ffd3539 patch 8.2.0002: "dj" only deletes first line of closed fold
Bram Moolenaar <Bram@vim.org>
parents: 18808
diff changeset
4245 || oap->motion_type == MLINE)
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4246 && hasFolding(curwin->w_cursor.lnum, NULL,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4247 &curwin->w_cursor.lnum))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4248 curwin->w_cursor.col = (colnr_T)STRLEN(ml_get_curline());
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4249 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4250 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4251 oap->end = curwin->w_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4252 curwin->w_cursor = oap->start;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4253
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4254 // w_virtcol may have been updated; if the cursor goes back to its
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4255 // previous position w_virtcol becomes invalid and isn't updated
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4256 // automatically.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4257 curwin->w_valid &= ~VALID_VIRTCOL;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4258 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4259 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4260 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4261 #ifdef FEAT_FOLDING
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4262 // Include folded lines completely.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4263 if (!VIsual_active && oap->motion_type == MLINE)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4264 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4265 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4266 NULL))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4267 curwin->w_cursor.col = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4268 if (hasFolding(oap->start.lnum, NULL, &oap->start.lnum))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4269 oap->start.col = (colnr_T)STRLEN(ml_get(oap->start.lnum));
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4270 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4271 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4272 oap->end = oap->start;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4273 oap->start = curwin->w_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4274 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4275
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4276 // Just in case lines were deleted that make the position invalid.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4277 check_pos(curwin->w_buffer, &oap->end);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4278 oap->line_count = oap->end.lnum - oap->start.lnum + 1;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4279
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4280 // Set "virtual_op" before resetting VIsual_active.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4281 virtual_op = virtual_active();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4282
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4283 if (VIsual_active || redo_VIsual_busy)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4284 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4285 get_op_vcol(oap, redo_VIsual_vcol, TRUE);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4286
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4287 if (!redo_VIsual_busy && !gui_yank)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4288 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4289 // Prepare to reselect and redo Visual: this is based on the
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4290 // size of the Visual text
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4291 resel_VIsual_mode = VIsual_mode;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4292 if (curwin->w_curswant == MAXCOL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4293 resel_VIsual_vcol = MAXCOL;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4294 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4295 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4296 if (VIsual_mode != Ctrl_V)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4297 getvvcol(curwin, &(oap->end),
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4298 NULL, NULL, &oap->end_vcol);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4299 if (VIsual_mode == Ctrl_V || oap->line_count <= 1)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4300 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4301 if (VIsual_mode != Ctrl_V)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4302 getvvcol(curwin, &(oap->start),
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4303 &oap->start_vcol, NULL, NULL);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4304 resel_VIsual_vcol = oap->end_vcol - oap->start_vcol + 1;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4305 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4306 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4307 resel_VIsual_vcol = oap->end_vcol;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4308 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4309 resel_VIsual_line_count = oap->line_count;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4310 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4311
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4312 // can't redo yank (unless 'y' is in 'cpoptions') and ":"
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4313 if ((redo_yank || oap->op_type != OP_YANK)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4314 && oap->op_type != OP_COLON
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4315 #ifdef FEAT_FOLDING
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4316 && oap->op_type != OP_FOLD
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4317 && oap->op_type != OP_FOLDOPEN
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4318 && oap->op_type != OP_FOLDOPENREC
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4319 && oap->op_type != OP_FOLDCLOSE
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4320 && oap->op_type != OP_FOLDCLOSEREC
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4321 && oap->op_type != OP_FOLDDEL
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4322 && oap->op_type != OP_FOLDDELREC
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4323 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4324 && oap->motion_force == NUL
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4325 )
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4326 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4327 // Prepare for redoing. Only use the nchar field for "r",
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4328 // otherwise it might be the second char of the operator.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4329 if (cap->cmdchar == 'g' && (cap->nchar == 'n'
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4330 || cap->nchar == 'N'))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4331 prep_redo(oap->regname, cap->count0,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4332 get_op_char(oap->op_type),
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4333 get_extra_op_char(oap->op_type),
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4334 oap->motion_force, cap->cmdchar, cap->nchar);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4335 else if (cap->cmdchar != ':')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4336 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4337 int nchar = oap->op_type == OP_REPLACE ? cap->nchar : NUL;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4338
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4339 // reverse what nv_replace() did
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4340 if (nchar == REPLACE_CR_NCHAR)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4341 nchar = CAR;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4342 else if (nchar == REPLACE_NL_NCHAR)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4343 nchar = NL;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4344 prep_redo(oap->regname, 0L, NUL, 'v',
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4345 get_op_char(oap->op_type),
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4346 get_extra_op_char(oap->op_type),
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4347 nchar);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4348 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4349 if (!redo_VIsual_busy)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4350 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4351 redo_VIsual_mode = resel_VIsual_mode;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4352 redo_VIsual_vcol = resel_VIsual_vcol;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4353 redo_VIsual_line_count = resel_VIsual_line_count;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4354 redo_VIsual_count = cap->count0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4355 redo_VIsual_arg = cap->arg;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4356 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4357 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4358
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4359 // oap->inclusive defaults to TRUE.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4360 // If oap->end is on a NUL (empty line) oap->inclusive becomes
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4361 // FALSE. This makes "d}P" and "v}dP" work the same.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4362 if (oap->motion_force == NUL || oap->motion_type == MLINE)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4363 oap->inclusive = TRUE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4364 if (VIsual_mode == 'V')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4365 oap->motion_type = MLINE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4366 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4367 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4368 oap->motion_type = MCHAR;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4369 if (VIsual_mode != Ctrl_V && *ml_get_pos(&(oap->end)) == NUL
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4370 && (include_line_break || !virtual_op))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4371 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4372 oap->inclusive = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4373 // Try to include the newline, unless it's an operator
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4374 // that works on lines only.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4375 if (*p_sel != 'o'
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4376 && !op_on_lines(oap->op_type)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4377 && oap->end.lnum < curbuf->b_ml.ml_line_count)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4378 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4379 ++oap->end.lnum;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4380 oap->end.col = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4381 oap->end.coladd = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4382 ++oap->line_count;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4383 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4384 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4385 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4386
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4387 redo_VIsual_busy = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4388
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4389 // Switch Visual off now, so screen updating does
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4390 // not show inverted text when the screen is redrawn.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4391 // With OP_YANK and sometimes with OP_COLON and OP_FILTER there is
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4392 // no screen redraw, so it is done here to remove the inverted
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4393 // part.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4394 if (!gui_yank)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4395 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4396 VIsual_active = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4397 setmouse();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4398 mouse_dragging = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4399 may_clear_cmdline();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4400 if ((oap->op_type == OP_YANK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4401 || oap->op_type == OP_COLON
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4402 || oap->op_type == OP_FUNCTION
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4403 || oap->op_type == OP_FILTER)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4404 && oap->motion_force == NUL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4405 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4406 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4407 // make sure redrawing is correct
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4408 curwin->w_p_lbr = lbr_saved;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4409 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4410 redraw_curbuf_later(INVERTED);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4411 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4412 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4413 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4414
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4415 // Include the trailing byte of a multi-byte char.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4416 if (has_mbyte && oap->inclusive)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4417 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4418 int l;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4419
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4420 l = (*mb_ptr2len)(ml_get_pos(&oap->end));
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4421 if (l > 1)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4422 oap->end.col += l - 1;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4423 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4424 curwin->w_set_curswant = TRUE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4425
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4426 // oap->empty is set when start and end are the same. The inclusive
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4427 // flag affects this too, unless yanking and the end is on a NUL.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4428 oap->empty = (oap->motion_type == MCHAR
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4429 && (!oap->inclusive
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4430 || (oap->op_type == OP_YANK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4431 && gchar_pos(&oap->end) == NUL))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4432 && EQUAL_POS(oap->start, oap->end)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4433 && !(virtual_op && oap->start.coladd != oap->end.coladd));
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4434 // For delete, change and yank, it's an error to operate on an
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4435 // empty region, when 'E' included in 'cpoptions' (Vi compatible).
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4436 empty_region_error = (oap->empty
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4437 && vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4438
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4439 // Force a redraw when operating on an empty Visual region, when
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4440 // 'modifiable is off or creating a fold.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4441 if (oap->is_VIsual && (oap->empty || !curbuf->b_p_ma
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4442 #ifdef FEAT_FOLDING
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4443 || oap->op_type == OP_FOLD
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4444 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4445 ))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4446 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4447 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4448 curwin->w_p_lbr = lbr_saved;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4449 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4450 redraw_curbuf_later(INVERTED);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4451 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4452
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4453 // If the end of an operator is in column one while oap->motion_type
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4454 // is MCHAR and oap->inclusive is FALSE, we put op_end after the last
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4455 // character in the previous line. If op_start is on or before the
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4456 // first non-blank in the line, the operator becomes linewise
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4457 // (strange, but that's the way vi does it).
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4458 if ( oap->motion_type == MCHAR
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4459 && oap->inclusive == FALSE
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4460 && !(cap->retval & CA_NO_ADJ_OP_END)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4461 && oap->end.col == 0
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4462 && (!oap->is_VIsual || *p_sel == 'o')
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4463 && !oap->block_mode
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4464 && oap->line_count > 1)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4465 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4466 oap->end_adjusted = TRUE; // remember that we did this
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4467 --oap->line_count;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4468 --oap->end.lnum;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4469 if (inindent(0))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4470 oap->motion_type = MLINE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4471 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4472 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4473 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4474 if (oap->end.col)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4475 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4476 --oap->end.col;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4477 oap->inclusive = TRUE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4478 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4479 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4480 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4481 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4482 oap->end_adjusted = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4483
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4484 switch (oap->op_type)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4485 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4486 case OP_LSHIFT:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4487 case OP_RSHIFT:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4488 op_shift(oap, TRUE, oap->is_VIsual ? (int)cap->count1 : 1);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4489 auto_format(FALSE, TRUE);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4490 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4491
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4492 case OP_JOIN_NS:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4493 case OP_JOIN:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4494 if (oap->line_count < 2)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4495 oap->line_count = 2;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4496 if (curwin->w_cursor.lnum + oap->line_count - 1 >
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4497 curbuf->b_ml.ml_line_count)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4498 beep_flush();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4499 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4500 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4501 (void)do_join(oap->line_count, oap->op_type == OP_JOIN,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4502 TRUE, TRUE, TRUE);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4503 auto_format(FALSE, TRUE);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4504 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4505 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4506
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4507 case OP_DELETE:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4508 VIsual_reselect = FALSE; // don't reselect now
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4509 if (empty_region_error)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4510 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4511 vim_beep(BO_OPER);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4512 CancelRedo();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4513 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4514 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4515 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4516 (void)op_delete(oap);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4517 if (oap->motion_type == MLINE && has_format_option(FO_AUTO))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4518 u_save_cursor(); // cursor line wasn't saved yet
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4519 auto_format(FALSE, TRUE);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4520 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4521 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4522
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4523 case OP_YANK:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4524 if (empty_region_error)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4525 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4526 if (!gui_yank)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4527 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4528 vim_beep(BO_OPER);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4529 CancelRedo();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4530 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4531 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4532 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4533 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4534 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4535 curwin->w_p_lbr = lbr_saved;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4536 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4537 (void)op_yank(oap, FALSE, !gui_yank);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4538 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4539 check_cursor_col();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4540 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4541
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4542 case OP_CHANGE:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4543 VIsual_reselect = FALSE; // don't reselect now
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4544 if (empty_region_error)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4545 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4546 vim_beep(BO_OPER);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4547 CancelRedo();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4548 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4549 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4550 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4551 // This is a new edit command, not a restart. Need to
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4552 // remember it to make 'insertmode' work with mappings for
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4553 // Visual mode. But do this only once and not when typed and
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4554 // 'insertmode' isn't set.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4555 if (p_im || !KeyTyped)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4556 restart_edit_save = restart_edit;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4557 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4558 restart_edit_save = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4559 restart_edit = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4560 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4561 // Restore linebreak, so that when the user edits it looks as
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4562 // before.
19176
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
4563 curwin->w_p_lbr = lbr_saved;
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4564 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4565 // Reset finish_op now, don't want it set inside edit().
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4566 finish_op = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4567 if (op_change(oap)) // will call edit()
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4568 cap->retval |= CA_COMMAND_BUSY;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4569 if (restart_edit == 0)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4570 restart_edit = restart_edit_save;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4571 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4572 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4573
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4574 case OP_FILTER:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4575 if (vim_strchr(p_cpo, CPO_FILTER) != NULL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4576 AppendToRedobuff((char_u *)"!\r"); // use any last used !cmd
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4577 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4578 bangredo = TRUE; // do_bang() will put cmd in redo buffer
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4579 // FALLTHROUGH
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4580
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4581 case OP_INDENT:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4582 case OP_COLON:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4583
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4584 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4585 // If 'equalprg' is empty, do the indenting internally.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4586 if (oap->op_type == OP_INDENT && *get_equalprg() == NUL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4587 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4588 # ifdef FEAT_LISP
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4589 if (curbuf->b_p_lisp)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4590 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4591 op_reindent(oap, get_lisp_indent);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4592 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4593 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4594 # endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4595 # ifdef FEAT_CINDENT
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4596 op_reindent(oap,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4597 # ifdef FEAT_EVAL
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4598 *curbuf->b_p_inde != NUL ? get_expr_indent :
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4599 # endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4600 get_c_indent);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4601 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4602 # endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4603 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4604 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4605
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4606 op_colon(oap);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4607 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4608
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4609 case OP_TILDE:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4610 case OP_UPPER:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4611 case OP_LOWER:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4612 case OP_ROT13:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4613 if (empty_region_error)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4614 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4615 vim_beep(BO_OPER);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4616 CancelRedo();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4617 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4618 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4619 op_tilde(oap);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4620 check_cursor_col();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4621 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4622
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4623 case OP_FORMAT:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4624 #if defined(FEAT_EVAL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4625 if (*curbuf->b_p_fex != NUL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4626 op_formatexpr(oap); // use expression
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4627 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4628 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4629 if (*p_fp != NUL || *curbuf->b_p_fp != NUL)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4630 op_colon(oap); // use external command
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4631 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4632 op_format(oap, FALSE); // use internal function
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4633 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4634
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4635 case OP_FORMAT2:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4636 op_format(oap, TRUE); // use internal function
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4637 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4638
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4639 case OP_FUNCTION:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4640 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4641 // Restore linebreak, so that when the user edits it looks as
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4642 // before.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4643 curwin->w_p_lbr = lbr_saved;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4644 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4645 op_function(oap); // call 'operatorfunc'
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4646 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4647
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4648 case OP_INSERT:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4649 case OP_APPEND:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4650 VIsual_reselect = FALSE; // don't reselect now
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4651 if (empty_region_error)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4652 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4653 vim_beep(BO_OPER);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4654 CancelRedo();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4655 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4656 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4657 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4658 // This is a new edit command, not a restart. Need to
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4659 // remember it to make 'insertmode' work with mappings for
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4660 // Visual mode. But do this only once.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4661 restart_edit_save = restart_edit;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4662 restart_edit = 0;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4663 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4664 // Restore linebreak, so that when the user edits it looks as
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4665 // before.
19176
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
4666 curwin->w_p_lbr = lbr_saved;
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4667 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4668 op_insert(oap, cap->count1);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4669 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4670 // Reset linebreak, so that formatting works correctly.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4671 curwin->w_p_lbr = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4672 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4673
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4674 // TODO: when inserting in several lines, should format all
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4675 // the lines.
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4676 auto_format(FALSE, TRUE);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4677
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4678 if (restart_edit == 0)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4679 restart_edit = restart_edit_save;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4680 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4681 cap->retval |= CA_COMMAND_BUSY;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4682 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4683 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4684
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4685 case OP_REPLACE:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4686 VIsual_reselect = FALSE; // don't reselect now
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4687 if (empty_region_error)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4688 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4689 vim_beep(BO_OPER);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4690 CancelRedo();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4691 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4692 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4693 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4694 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4695 // Restore linebreak, so that when the user edits it looks as
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4696 // before.
19176
be81baeb69f8 patch 8.2.0147: block Visual mode operators not correct when 'linebreak' set
Bram Moolenaar <Bram@vim.org>
parents: 19005
diff changeset
4697 curwin->w_p_lbr = lbr_saved;
18219
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4698 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4699 op_replace(oap, cap->nchar);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4700 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4701 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4702
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4703 #ifdef FEAT_FOLDING
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4704 case OP_FOLD:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4705 VIsual_reselect = FALSE; // don't reselect now
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4706 foldCreate(oap->start.lnum, oap->end.lnum);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4707 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4708
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4709 case OP_FOLDOPEN:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4710 case OP_FOLDOPENREC:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4711 case OP_FOLDCLOSE:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4712 case OP_FOLDCLOSEREC:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4713 VIsual_reselect = FALSE; // don't reselect now
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4714 opFoldRange(oap->start.lnum, oap->end.lnum,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4715 oap->op_type == OP_FOLDOPEN
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4716 || oap->op_type == OP_FOLDOPENREC,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4717 oap->op_type == OP_FOLDOPENREC
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4718 || oap->op_type == OP_FOLDCLOSEREC,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4719 oap->is_VIsual);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4720 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4721
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4722 case OP_FOLDDEL:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4723 case OP_FOLDDELREC:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4724 VIsual_reselect = FALSE; // don't reselect now
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4725 deleteFold(oap->start.lnum, oap->end.lnum,
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4726 oap->op_type == OP_FOLDDELREC, oap->is_VIsual);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4727 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4728 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4729 case OP_NR_ADD:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4730 case OP_NR_SUB:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4731 if (empty_region_error)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4732 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4733 vim_beep(BO_OPER);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4734 CancelRedo();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4735 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4736 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4737 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4738 VIsual_active = TRUE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4739 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4740 curwin->w_p_lbr = lbr_saved;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4741 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4742 op_addsub(oap, cap->count1, redo_VIsual_arg);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4743 VIsual_active = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4744 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4745 check_cursor_col();
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4746 break;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4747 default:
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4748 clearopbeep(oap);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4749 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4750 virtual_op = MAYBE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4751 if (!gui_yank)
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4752 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4753 // if 'sol' not set, go back to old column for some commands
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4754 if (!p_sol && oap->motion_type == MLINE && !oap->end_adjusted
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4755 && (oap->op_type == OP_LSHIFT || oap->op_type == OP_RSHIFT
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4756 || oap->op_type == OP_DELETE))
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4757 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4758 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4759 curwin->w_p_lbr = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4760 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4761 coladvance(curwin->w_curswant = old_col);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4762 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4763 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4764 else
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4765 {
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4766 curwin->w_cursor = old_cursor;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4767 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4768 oap->block_mode = FALSE;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4769 clearop(oap);
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4770 motion_force = NUL;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4771 }
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4772 #ifdef FEAT_LINEBREAK
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4773 curwin->w_p_lbr = lbr_saved;
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4774 #endif
5d67f207f7c3 patch 8.1.2104: the normal.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
4775 }