Mercurial > vim
annotate src/ops.c @ 16714:ba592f30c082 v8.1.1359
patch 8.1.1359: text property wrong after :substitute with backslash
commit https://github.com/vim/vim/commit/f3333b02f34526da46cdae608f7e2d869bb8c654
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 19 22:53:40 2019 +0200
patch 8.1.1359: text property wrong after :substitute with backslash
Problem: Text property wrong after :substitute with backslash.
Solution: Adjust text property columns when removing backslashes.
(closes #4397)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 19 May 2019 23:00:05 +0200 |
parents | 77bcb5055fec |
children | ef00b6bc186b |
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 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * ops.c: implementation of various operators: op_shift, op_delete, op_tilde, | |
12 * op_change, op_yank, do_put, do_join | |
13 */ | |
14 | |
15 #include "vim.h" | |
16 | |
17 /* | |
18 * Number of registers. | |
19 * 0 = unnamed register, for normal yanks and puts | |
20 * 1..9 = registers '1' to '9', for deletes | |
21 * 10..35 = registers 'a' to 'z' | |
22 * 36 = delete register '-' | |
23 * 37 = Selection register '*'. Only if FEAT_CLIPBOARD defined | |
24 * 38 = Clipboard register '+'. Only if FEAT_CLIPBOARD and FEAT_X11 defined | |
25 */ | |
26 /* | |
27 * Symbolic names for some registers. | |
28 */ | |
29 #define DELETION_REGISTER 36 | |
30 #ifdef FEAT_CLIPBOARD | |
31 # define STAR_REGISTER 37 | |
32 # ifdef FEAT_X11 | |
33 # define PLUS_REGISTER 38 | |
34 # else | |
35 # define PLUS_REGISTER STAR_REGISTER /* there is only one */ | |
36 # endif | |
37 #endif | |
38 #ifdef FEAT_DND | |
39 # define TILDE_REGISTER (PLUS_REGISTER + 1) | |
40 #endif | |
41 | |
42 #ifdef FEAT_CLIPBOARD | |
43 # ifdef FEAT_DND | |
44 # define NUM_REGISTERS (TILDE_REGISTER + 1) | |
45 # else | |
46 # define NUM_REGISTERS (PLUS_REGISTER + 1) | |
47 # endif | |
48 #else | |
49 # define NUM_REGISTERS 37 | |
50 #endif | |
51 | |
52 /* | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
53 * Each yank register has an array of pointers to lines. |
7 | 54 */ |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
55 typedef struct |
7 | 56 { |
57 char_u **y_array; /* pointer to array of line pointers */ | |
58 linenr_T y_size; /* number of lines in y_array */ | |
59 char_u y_type; /* MLINE, MCHAR or MBLOCK */ | |
60 colnr_T y_width; /* only set if y_type == MBLOCK */ | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
61 #ifdef FEAT_VIMINFO |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
62 time_t y_time_set; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
63 #endif |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
64 } yankreg_T; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
65 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
66 static yankreg_T y_regs[NUM_REGISTERS]; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
67 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
68 static yankreg_T *y_current; /* ptr to current yankreg */ |
7 | 69 static int y_append; /* TRUE when appending */ |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
70 static yankreg_T *y_previous = NULL; /* ptr to last written yankreg */ |
7 | 71 |
72 /* | |
73 * structure used by block_prep, op_delete and op_yank for blockwise operators | |
74 * also op_change, op_shift, op_insert, op_replace - AKelly | |
75 */ | |
76 struct block_def | |
77 { | |
1839 | 78 int startspaces; /* 'extra' cols before first char */ |
79 int endspaces; /* 'extra' cols after last char */ | |
7 | 80 int textlen; /* chars in block */ |
1839 | 81 char_u *textstart; /* pointer to 1st char (partially) in block */ |
82 colnr_T textcol; /* index of chars (partially) in block */ | |
7 | 83 colnr_T start_vcol; /* start col of 1st char wholly inside block */ |
84 colnr_T end_vcol; /* start col of 1st char wholly after block */ | |
85 int is_short; /* TRUE if line is too short to fit in block */ | |
86 int is_MAX; /* TRUE if curswant==MAXCOL when starting */ | |
87 int is_oneChar; /* TRUE if block within one character */ | |
88 int pre_whitesp; /* screen cols of ws before block */ | |
89 int pre_whitesp_c; /* chars of ws before block */ | |
90 colnr_T end_char_vcols; /* number of vcols of post-block char */ | |
91 colnr_T start_char_vcols; /* number of vcols of pre-block char */ | |
92 }; | |
93 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
94 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
|
95 static int stuff_yank(int, char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
96 static void put_reedit_in_typebuf(int silent); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
97 static int put_in_typebuf(char_u *s, int esc, int colon, |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
98 int silent); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
99 static void stuffescaped(char_u *arg, int literally); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
100 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
|
101 static void free_yank_all(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
102 static int yank_copy_line(struct block_def *bd, long y_idx); |
7 | 103 #ifdef FEAT_CLIPBOARD |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
104 static void copy_yank_reg(yankreg_T *reg); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
105 static void may_set_selection(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
106 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
107 static void dis_msg(char_u *p, int skip_esc); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
108 static void block_prep(oparg_T *oap, struct block_def *, linenr_T, int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
109 static int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1); |
7 | 110 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL) |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
111 static void str_to_reg(yankreg_T *y_ptr, int yank_type, char_u *str, long len, long blocklen, int str_list); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
112 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
113 static int ends_in_white(linenr_T lnum); |
7 | 114 #ifdef FEAT_COMMENTS |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
115 static int fmt_check_par(linenr_T, int *, char_u **, int do_comments); |
7 | 116 #else |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
117 static int fmt_check_par(linenr_T); |
7 | 118 #endif |
119 | |
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
|
120 // 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
|
121 #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
|
122 #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
|
123 |
7 | 124 /* |
125 * The names of operators. | |
126 * 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
|
127 * The third field holds OPF_ flags. |
7 | 128 */ |
129 static char opchars[][3] = | |
130 { | |
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
|
131 {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
|
132 {'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
|
133 {'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
|
134 {'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
|
135 {'<', 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
|
136 {'>', 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
|
137 {'!', 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
|
138 {'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
|
139 {'=', 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
|
140 {'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
|
141 {':', 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
|
142 {'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
|
143 {'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
|
144 {'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
|
145 {'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
|
146 {'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
|
147 {'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
|
148 {'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
|
149 {'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
|
150 {'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
|
151 {'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
|
152 {'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
|
153 {'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
|
154 {'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
|
155 {'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
|
156 {'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
|
157 {'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
|
158 {'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
|
159 {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
|
160 {Ctrl_X, NUL, OPF_CHANGE}, // OP_NR_SUB |
7 | 161 }; |
162 | |
163 /* | |
164 * Translate a command name into an operator type. | |
165 * Must only be called with a valid operator name! | |
166 */ | |
167 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
168 get_op_type(int char1, int char2) |
7 | 169 { |
170 int i; | |
171 | |
172 if (char1 == 'r') /* ignore second character */ | |
173 return OP_REPLACE; | |
174 if (char1 == '~') /* when tilde is an operator */ | |
175 return OP_TILDE; | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
176 if (char1 == 'g' && char2 == Ctrl_A) /* add */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
177 return OP_NR_ADD; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
178 if (char1 == 'g' && char2 == Ctrl_X) /* subtract */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
179 return OP_NR_SUB; |
7 | 180 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
|
181 { |
7 | 182 if (opchars[i][0] == char1 && opchars[i][1] == char2) |
183 break; | |
13072
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
13047
diff
changeset
|
184 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
|
185 { |
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
13047
diff
changeset
|
186 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
|
187 break; |
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
13047
diff
changeset
|
188 } |
50aa6da392ce
patch 8.0.1411: reading invalid memory with CTRL-W :
Christian Brabandt <cb@256bit.org>
parents:
13047
diff
changeset
|
189 } |
7 | 190 return i; |
191 } | |
192 | |
193 /* | |
194 * Return TRUE if operator "op" always works on whole lines. | |
195 */ | |
196 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
197 op_on_lines(int op) |
7 | 198 { |
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
|
199 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
|
200 } |
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
|
201 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
202 #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
|
203 /* |
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
|
204 * 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
|
205 */ |
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
|
206 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
|
207 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
|
208 { |
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
|
209 return opchars[op][2] & OPF_CHANGE; |
7 | 210 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
211 #endif |
7 | 212 |
213 /* | |
214 * Get first operator command character. | |
215 * Returns 'g' or 'z' if there is another command character. | |
216 */ | |
217 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
218 get_op_char(int optype) |
7 | 219 { |
220 return opchars[optype][0]; | |
221 } | |
222 | |
223 /* | |
224 * Get second operator command character. | |
225 */ | |
226 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
227 get_extra_op_char(int optype) |
7 | 228 { |
229 return opchars[optype][1]; | |
230 } | |
231 | |
232 /* | |
233 * op_shift - handle a shift operation | |
234 */ | |
235 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
236 op_shift(oparg_T *oap, int curs_top, int amount) |
7 | 237 { |
238 long i; | |
239 int first_char; | |
240 int block_col = 0; | |
241 | |
242 if (u_save((linenr_T)(oap->start.lnum - 1), | |
243 (linenr_T)(oap->end.lnum + 1)) == FAIL) | |
244 return; | |
245 | |
246 if (oap->block_mode) | |
247 block_col = curwin->w_cursor.col; | |
248 | |
249 for (i = oap->line_count; --i >= 0; ) | |
250 { | |
251 first_char = *ml_get_curline(); | |
252 if (first_char == NUL) /* empty line */ | |
253 curwin->w_cursor.col = 0; | |
254 else if (oap->block_mode) | |
255 shift_block(oap, amount); | |
256 else | |
257 /* Move the line right if it doesn't start with '#', 'smartindent' | |
258 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */ | |
259 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) | |
260 if (first_char != '#' || !preprocs_left()) | |
261 #endif | |
1516 | 262 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE); |
7 | 263 ++curwin->w_cursor.lnum; |
264 } | |
265 | |
266 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L); | |
267 if (oap->block_mode) | |
268 { | |
269 curwin->w_cursor.lnum = oap->start.lnum; | |
270 curwin->w_cursor.col = block_col; | |
271 } | |
5735 | 272 else if (curs_top) /* put cursor on first line, for ">>" */ |
7 | 273 { |
274 curwin->w_cursor.lnum = oap->start.lnum; | |
275 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */ | |
276 } | |
277 else | |
278 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */ | |
279 | |
10486
99896ee0cac5
commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents:
10104
diff
changeset
|
280 #ifdef FEAT_FOLDING |
99896ee0cac5
commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents:
10104
diff
changeset
|
281 /* The cursor line is not in a closed fold */ |
99896ee0cac5
commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents:
10104
diff
changeset
|
282 foldOpenCursor(); |
99896ee0cac5
commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents:
10104
diff
changeset
|
283 #endif |
99896ee0cac5
commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents:
10104
diff
changeset
|
284 |
99896ee0cac5
commit https://github.com/vim/vim/commit/54b2bfa399017ebae76ed62f21578261d1b55c1f
Christian Brabandt <cb@256bit.org>
parents:
10104
diff
changeset
|
285 |
7 | 286 if (oap->line_count > p_report) |
287 { | |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
288 char *op; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
289 char *msg_line_single; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
290 char *msg_line_plural; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
291 |
7 | 292 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
|
293 op = ">"; |
7 | 294 else |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
295 op = "<"; |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
296 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
|
297 "%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
|
298 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
|
299 "%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
|
300 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
|
301 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
|
302 oap->line_count, op, amount); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
303 msg((char *)IObuff); |
7 | 304 } |
305 | |
306 /* | |
307 * Set "'[" and "']" marks. | |
308 */ | |
309 curbuf->b_op_start = oap->start; | |
310 curbuf->b_op_end.lnum = oap->end.lnum; | |
311 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum)); | |
312 if (curbuf->b_op_end.col > 0) | |
313 --curbuf->b_op_end.col; | |
314 } | |
315 | |
316 /* | |
15422
b55b89692fd2
patch 8.1.0719: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15326
diff
changeset
|
317 * 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
|
318 * leaves cursor on first blank in the line. |
7 | 319 */ |
320 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
321 shift_line( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
322 int left, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
323 int round, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
324 int amount, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
325 int call_changed_bytes) /* call changed_bytes() */ |
7 | 326 { |
327 int count; | |
328 int i, j; | |
15062
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
15048
diff
changeset
|
329 int p_sw = (int)get_sw_value_indent(curbuf); |
7 | 330 |
331 count = get_indent(); /* get current indent */ | |
332 | |
333 if (round) /* round off indent */ | |
334 { | |
335 i = count / p_sw; /* number of p_sw rounded down */ | |
336 j = count % p_sw; /* extra spaces */ | |
337 if (j && left) /* first remove extra spaces */ | |
338 --amount; | |
339 if (left) | |
340 { | |
341 i -= amount; | |
342 if (i < 0) | |
343 i = 0; | |
344 } | |
345 else | |
346 i += amount; | |
347 count = i * p_sw; | |
348 } | |
349 else /* original vi indent */ | |
350 { | |
351 if (left) | |
352 { | |
353 count -= p_sw * amount; | |
354 if (count < 0) | |
355 count = 0; | |
356 } | |
357 else | |
358 count += p_sw * amount; | |
359 } | |
360 | |
361 /* Set new indent */ | |
362 if (State & VREPLACE_FLAG) | |
1516 | 363 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes); |
7 | 364 else |
1516 | 365 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0); |
7 | 366 } |
367 | |
368 /* | |
369 * Shift one line of the current block one shiftwidth right or left. | |
370 * Leaves cursor on first character in block. | |
371 */ | |
372 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
373 shift_block(oparg_T *oap, int amount) |
7 | 374 { |
375 int left = (oap->op_type == OP_LSHIFT); | |
376 int oldstate = State; | |
1839 | 377 int total; |
378 char_u *newp, *oldp; | |
7 | 379 int oldcol = curwin->w_cursor.col; |
15062
3a94f7918980
patch 8.1.0542: shiftwidth() does not take 'vartabstop' into account
Bram Moolenaar <Bram@vim.org>
parents:
15048
diff
changeset
|
380 int p_sw = (int)get_sw_value_indent(curbuf); |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
381 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
382 int *p_vts = curbuf->b_p_vts_array; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
383 #endif |
7 | 384 int p_ts = (int)curbuf->b_p_ts; |
385 struct block_def bd; | |
386 int incr; | |
1839 | 387 colnr_T ws_vcol; |
7 | 388 int i = 0, j = 0; |
389 int len; | |
390 #ifdef FEAT_RIGHTLEFT | |
391 int old_p_ri = p_ri; | |
392 | |
4352 | 393 p_ri = 0; /* don't want revins in indent */ |
7 | 394 #endif |
395 | |
396 State = INSERT; /* don't want REPLACE for State */ | |
397 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE); | |
398 if (bd.is_short) | |
399 return; | |
400 | |
401 /* total is number of screen columns to be inserted/removed */ | |
11997
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11688
diff
changeset
|
402 total = (int)((unsigned)amount * (unsigned)p_sw); |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11688
diff
changeset
|
403 if ((total / p_sw) != amount) |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11688
diff
changeset
|
404 return; /* multiplication overflow */ |
66b677c77467
patch 8.0.0879: crash when shifting with huge number
Christian Brabandt <cb@256bit.org>
parents:
11688
diff
changeset
|
405 |
7 | 406 oldp = ml_get_curline(); |
407 | |
408 if (!left) | |
409 { | |
410 /* | |
411 * 1. Get start vcol | |
412 * 2. Total ws vcols | |
413 * 3. Divvy into TABs & spp | |
414 * 4. Construct new string | |
415 */ | |
416 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */ | |
417 ws_vcol = bd.start_vcol - bd.pre_whitesp; | |
418 if (bd.startspaces) | |
419 { | |
420 if (has_mbyte) | |
8399
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
421 { |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
422 if ((*mb_ptr2len)(bd.textstart) == 1) |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
423 ++bd.textstart; |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
424 else |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
425 { |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
426 ws_vcol = 0; |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
427 bd.startspaces = 0; |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
428 } |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
429 } |
1995 | 430 else |
431 ++bd.textstart; | |
7 | 432 } |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
433 for ( ; VIM_ISWHITE(*bd.textstart); ) |
7 | 434 { |
5995 | 435 /* TODO: is passing bd.textstart for start of the line OK? */ |
436 incr = lbr_chartabsize_adv(bd.textstart, &bd.textstart, | |
437 (colnr_T)(bd.start_vcol)); | |
7 | 438 total += incr; |
439 bd.start_vcol += incr; | |
440 } | |
441 /* OK, now total=all the VWS reqd, and textstart points at the 1st | |
442 * 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
|
443 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
444 if (!curbuf->b_p_et) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
445 tabstop_fromto(ws_vcol, ws_vcol + total, p_ts, p_vts, &i, &j); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
446 else |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
447 j = total; |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
448 #else |
7 | 449 if (!curbuf->b_p_et) |
450 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */ | |
451 if (i) | |
452 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */ | |
453 else | |
454 j = total; | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
455 #endif |
7 | 456 /* if we're splitting a TAB, allow for it */ |
457 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0); | |
458 len = (int)STRLEN(bd.textstart) + 1; | |
459 newp = alloc_check((unsigned)(bd.textcol + i + j + len)); | |
460 if (newp == NULL) | |
461 return; | |
462 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len)); | |
463 mch_memmove(newp, oldp, (size_t)bd.textcol); | |
6929 | 464 vim_memset(newp + bd.textcol, TAB, (size_t)i); |
465 vim_memset(newp + bd.textcol + i, ' ', (size_t)j); | |
7 | 466 /* the end */ |
467 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len); | |
468 } | |
469 else /* left */ | |
470 { | |
1839 | 471 colnr_T destination_col; /* column to which text in block will |
472 be shifted */ | |
473 char_u *verbatim_copy_end; /* end of the part of the line which is | |
474 copied verbatim */ | |
475 colnr_T verbatim_copy_width;/* the (displayed) width of this part | |
476 of line */ | |
477 unsigned fill; /* nr of spaces that replace a TAB */ | |
478 unsigned new_line_len; /* the length of the line after the | |
479 block shift */ | |
480 size_t block_space_width; | |
481 size_t shift_amount; | |
482 char_u *non_white = bd.textstart; | |
483 colnr_T non_white_col; | |
484 | |
485 /* | |
486 * Firstly, let's find the first non-whitespace character that is | |
487 * displayed after the block's start column and the character's column | |
488 * number. Also, let's calculate the width of all the whitespace | |
489 * characters that are displayed in the block and precede the searched | |
490 * non-whitespace character. | |
491 */ | |
492 | |
493 /* If "bd.startspaces" is set, "bd.textstart" points to the character, | |
494 * the part of which is displayed at the block's beginning. Let's start | |
495 * searching from the next character. */ | |
496 if (bd.startspaces) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
497 MB_PTR_ADV(non_white); |
1839 | 498 |
499 /* The character's column is in "bd.start_vcol". */ | |
500 non_white_col = bd.start_vcol; | |
501 | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
502 while (VIM_ISWHITE(*non_white)) |
7 | 503 { |
5995 | 504 incr = lbr_chartabsize_adv(bd.textstart, &non_white, non_white_col); |
1839 | 505 non_white_col += incr; |
7 | 506 } |
1839 | 507 |
508 block_space_width = non_white_col - oap->start_vcol; | |
509 /* We will shift by "total" or "block_space_width", whichever is less. | |
510 */ | |
1860 | 511 shift_amount = (block_space_width < (size_t)total |
512 ? block_space_width : (size_t)total); | |
1839 | 513 |
514 /* The column to which we will shift the text. */ | |
1860 | 515 destination_col = (colnr_T)(non_white_col - shift_amount); |
1839 | 516 |
517 /* Now let's find out how much of the beginning of the line we can | |
518 * reuse without modification. */ | |
519 verbatim_copy_end = bd.textstart; | |
520 verbatim_copy_width = bd.start_vcol; | |
521 | |
522 /* If "bd.startspaces" is set, "bd.textstart" points to the character | |
523 * preceding the block. We have to subtract its width to obtain its | |
524 * column number. */ | |
525 if (bd.startspaces) | |
526 verbatim_copy_width -= bd.start_char_vcols; | |
527 while (verbatim_copy_width < destination_col) | |
7 | 528 { |
5995 | 529 char_u *line = verbatim_copy_end; |
530 | |
531 /* TODO: is passing verbatim_copy_end for start of the line OK? */ | |
532 incr = lbr_chartabsize(line, verbatim_copy_end, | |
533 verbatim_copy_width); | |
1839 | 534 if (verbatim_copy_width + incr > destination_col) |
535 break; | |
536 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
|
537 MB_PTR_ADV(verbatim_copy_end); |
7 | 538 } |
539 | |
1839 | 540 /* If "destination_col" is different from the width of the initial |
541 * part of the line that will be copied, it means we encountered a tab | |
542 * character, which we will have to partly replace with spaces. */ | |
543 fill = destination_col - verbatim_copy_width; | |
544 | |
545 /* The replacement line will consist of: | |
546 * - the beginning of the original line up to "verbatim_copy_end", | |
547 * - "fill" number of spaces, | |
548 * - the rest of the line, pointed to by non_white. */ | |
549 new_line_len = (unsigned)(verbatim_copy_end - oldp) | |
550 + fill | |
551 + (unsigned)STRLEN(non_white) + 1; | |
552 | |
553 newp = alloc_check(new_line_len); | |
7 | 554 if (newp == NULL) |
555 return; | |
1839 | 556 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp)); |
6929 | 557 vim_memset(newp + (verbatim_copy_end - oldp), ' ', (size_t)fill); |
1839 | 558 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white); |
7 | 559 } |
560 /* replace the line */ | |
561 ml_replace(curwin->w_cursor.lnum, newp, FALSE); | |
562 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol); | |
563 State = oldstate; | |
564 curwin->w_cursor.col = oldcol; | |
565 #ifdef FEAT_RIGHTLEFT | |
566 p_ri = old_p_ri; | |
567 #endif | |
568 } | |
15422
b55b89692fd2
patch 8.1.0719: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15326
diff
changeset
|
569 |
7 | 570 /* |
571 * Insert string "s" (b_insert ? before : after) block :AKelly | |
572 * Caller must prepare for undo. | |
573 */ | |
574 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
575 block_insert( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
576 oparg_T *oap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
577 char_u *s, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
578 int b_insert, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
579 struct block_def *bdp) |
7 | 580 { |
581 int p_ts; | |
582 int count = 0; /* extra spaces to replace a cut TAB */ | |
583 int spaces = 0; /* non-zero if cutting a TAB */ | |
584 colnr_T offset; /* pointer along new line */ | |
585 unsigned s_len; /* STRLEN(s) */ | |
586 char_u *newp, *oldp; /* new, old lines */ | |
587 linenr_T lnum; /* loop var */ | |
588 int oldstate = State; | |
589 | |
590 State = INSERT; /* don't want REPLACE for State */ | |
591 s_len = (unsigned)STRLEN(s); | |
592 | |
593 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++) | |
594 { | |
595 block_prep(oap, bdp, lnum, TRUE); | |
596 if (bdp->is_short && b_insert) | |
597 continue; /* OP_INSERT, line ends before block start */ | |
598 | |
599 oldp = ml_get(lnum); | |
600 | |
601 if (b_insert) | |
602 { | |
603 p_ts = bdp->start_char_vcols; | |
604 spaces = bdp->startspaces; | |
605 if (spaces != 0) | |
606 count = p_ts - 1; /* we're cutting a TAB */ | |
607 offset = bdp->textcol; | |
608 } | |
609 else /* append */ | |
610 { | |
611 p_ts = bdp->end_char_vcols; | |
612 if (!bdp->is_short) /* spaces = padding after block */ | |
613 { | |
614 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0); | |
615 if (spaces != 0) | |
616 count = p_ts - 1; /* we're cutting a TAB */ | |
617 offset = bdp->textcol + bdp->textlen - (spaces != 0); | |
618 } | |
619 else /* spaces = padding to block edge */ | |
620 { | |
621 /* if $ used, just append to EOL (ie spaces==0) */ | |
622 if (!bdp->is_MAX) | |
623 spaces = (oap->end_vcol - bdp->end_vcol) + 1; | |
624 count = spaces; | |
625 offset = bdp->textcol + bdp->textlen; | |
626 } | |
627 } | |
628 | |
6140 | 629 if (has_mbyte && spaces > 0) |
630 { | |
6460 | 631 int off; |
632 | |
6140 | 633 /* Avoid starting halfway a multi-byte character. */ |
634 if (b_insert) | |
635 { | |
6460 | 636 off = (*mb_head_off)(oldp, oldp + offset + spaces); |
6140 | 637 } |
638 else | |
639 { | |
6460 | 640 off = (*mb_off_next)(oldp, oldp + offset); |
6140 | 641 offset += off; |
642 } | |
6460 | 643 spaces -= off; |
644 count -= off; | |
6140 | 645 } |
646 | |
7 | 647 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1); |
648 if (newp == NULL) | |
649 continue; | |
650 | |
651 /* copy up to shifted part */ | |
652 mch_memmove(newp, oldp, (size_t)(offset)); | |
653 oldp += offset; | |
654 | |
655 /* insert pre-padding */ | |
6929 | 656 vim_memset(newp + offset, ' ', (size_t)spaces); |
7 | 657 |
658 /* copy the new text */ | |
659 mch_memmove(newp + offset + spaces, s, (size_t)s_len); | |
660 offset += s_len; | |
661 | |
662 if (spaces && !bdp->is_short) | |
663 { | |
664 /* insert post-padding */ | |
6929 | 665 vim_memset(newp + offset + spaces, ' ', (size_t)(p_ts - spaces)); |
7 | 666 /* We're splitting a TAB, don't copy it. */ |
667 oldp++; | |
668 /* We allowed for that TAB, remember this now */ | |
669 count++; | |
670 } | |
671 | |
672 if (spaces > 0) | |
673 offset += count; | |
1622 | 674 STRMOVE(newp + offset, oldp); |
7 | 675 |
676 ml_replace(lnum, newp, FALSE); | |
677 | |
678 if (lnum == oap->end.lnum) | |
679 { | |
680 /* Set "']" mark to the end of the block instead of the end of | |
681 * the insert in the first line. */ | |
682 curbuf->b_op_end.lnum = oap->end.lnum; | |
683 curbuf->b_op_end.col = offset; | |
684 } | |
685 } /* for all lnum */ | |
686 | |
687 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L); | |
688 | |
689 State = oldstate; | |
690 } | |
691 | |
692 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO) | |
693 /* | |
694 * op_reindent - handle reindenting a block of lines. | |
695 */ | |
696 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
697 op_reindent(oparg_T *oap, int (*how)(void)) |
7 | 698 { |
699 long i; | |
700 char_u *l; | |
6971 | 701 int amount; |
7 | 702 linenr_T first_changed = 0; |
703 linenr_T last_changed = 0; | |
704 linenr_T start_lnum = curwin->w_cursor.lnum; | |
705 | |
216 | 706 /* Don't even try when 'modifiable' is off. */ |
707 if (!curbuf->b_p_ma) | |
708 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
709 emsg(_(e_modifiable)); |
216 | 710 return; |
711 } | |
712 | |
7 | 713 for (i = oap->line_count; --i >= 0 && !got_int; ) |
714 { | |
715 /* it's a slow thing to do, so give feedback so there's no worry that | |
716 * the computer's just hung. */ | |
717 | |
718 if (i > 1 | |
719 && (i % 50 == 0 || i == oap->line_count - 1) | |
720 && 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
|
721 smsg(_("%ld lines to indent... "), i); |
7 | 722 |
723 /* | |
724 * Be vi-compatible: For lisp indenting the first line is not | |
725 * indented, unless there is only one line. | |
726 */ | |
727 #ifdef FEAT_LISP | |
728 if (i != oap->line_count - 1 || oap->line_count == 1 | |
729 || how != get_lisp_indent) | |
730 #endif | |
731 { | |
732 l = skipwhite(ml_get_curline()); | |
733 if (*l == NUL) /* empty or blank line */ | |
6971 | 734 amount = 0; |
7 | 735 else |
6971 | 736 amount = how(); /* get the indent for this line */ |
737 | |
738 if (amount >= 0 && set_indent(amount, SIN_UNDO)) | |
7 | 739 { |
740 /* did change the indent, call changed_lines() later */ | |
741 if (first_changed == 0) | |
742 first_changed = curwin->w_cursor.lnum; | |
743 last_changed = curwin->w_cursor.lnum; | |
744 } | |
745 } | |
746 ++curwin->w_cursor.lnum; | |
1550 | 747 curwin->w_cursor.col = 0; /* make sure it's valid */ |
7 | 748 } |
749 | |
750 /* put cursor on first non-blank of indented line */ | |
751 curwin->w_cursor.lnum = start_lnum; | |
752 beginline(BL_SOL | BL_FIX); | |
753 | |
754 /* Mark changed lines so that they will be redrawn. When Visual | |
755 * highlighting was present, need to continue until the last line. When | |
756 * there is no change still need to remove the Visual highlighting. */ | |
757 if (last_changed != 0) | |
758 changed_lines(first_changed, 0, | |
759 oap->is_VIsual ? start_lnum + oap->line_count : | |
760 last_changed + 1, 0L); | |
761 else if (oap->is_VIsual) | |
762 redraw_curbuf_later(INVERTED); | |
763 | |
764 if (oap->line_count > p_report) | |
765 { | |
766 i = oap->line_count - (i + 1); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
767 smsg(NGETTEXT("%ld line indented ", |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
768 "%ld lines indented ", i), i); |
7 | 769 } |
770 /* set '[ and '] marks */ | |
771 curbuf->b_op_start = oap->start; | |
772 curbuf->b_op_end = oap->end; | |
773 } | |
774 #endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */ | |
775 | |
776 #if defined(FEAT_EVAL) || defined(PROTO) | |
777 /* | |
778 * Keep the last expression line here, for repeating. | |
779 */ | |
780 static char_u *expr_line = NULL; | |
781 | |
782 /* | |
783 * Get an expression for the "\"=expr1" or "CTRL-R =expr1" | |
784 * Returns '=' when OK, NUL otherwise. | |
785 */ | |
786 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
787 get_expr_register(void) |
7 | 788 { |
789 char_u *new_line; | |
790 | |
791 new_line = getcmdline('=', 0L, 0); | |
792 if (new_line == NULL) | |
793 return NUL; | |
794 if (*new_line == NUL) /* use previous line */ | |
795 vim_free(new_line); | |
796 else | |
797 set_expr_line(new_line); | |
798 return '='; | |
799 } | |
800 | |
801 /* | |
802 * Set the expression for the '=' register. | |
803 * Argument must be an allocated string. | |
804 */ | |
805 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
806 set_expr_line(char_u *new_line) |
7 | 807 { |
808 vim_free(expr_line); | |
809 expr_line = new_line; | |
810 } | |
811 | |
812 /* | |
813 * Get the result of the '=' register expression. | |
814 * Returns a pointer to allocated memory, or NULL for failure. | |
815 */ | |
816 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
817 get_expr_line(void) |
7 | 818 { |
819 char_u *expr_copy; | |
820 char_u *rv; | |
994 | 821 static int nested = 0; |
7 | 822 |
823 if (expr_line == NULL) | |
824 return NULL; | |
825 | |
826 /* Make a copy of the expression, because evaluating it may cause it to be | |
827 * changed. */ | |
828 expr_copy = vim_strsave(expr_line); | |
829 if (expr_copy == NULL) | |
830 return NULL; | |
831 | |
994 | 832 /* When we are invoked recursively limit the evaluation to 10 levels. |
833 * Then return the string as-is. */ | |
834 if (nested >= 10) | |
835 return expr_copy; | |
836 | |
837 ++nested; | |
714 | 838 rv = eval_to_string(expr_copy, NULL, TRUE); |
994 | 839 --nested; |
7 | 840 vim_free(expr_copy); |
841 return rv; | |
842 } | |
283 | 843 |
844 /* | |
845 * Get the '=' register expression itself, without evaluating it. | |
846 */ | |
847 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
848 get_expr_line_src(void) |
283 | 849 { |
850 if (expr_line == NULL) | |
851 return NULL; | |
852 return vim_strsave(expr_line); | |
853 } | |
7 | 854 #endif /* FEAT_EVAL */ |
855 | |
856 /* | |
857 * Check if 'regname' is a valid name of a yank register. | |
858 * Note: There is no check for 0 (default register), caller should do this | |
859 */ | |
860 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
861 valid_yank_reg( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
862 int regname, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
863 int writing) /* if TRUE check for writable registers */ |
7 | 864 { |
865 if ( (regname > 0 && ASCII_ISALNUM(regname)) | |
866 || (!writing && vim_strchr((char_u *) | |
867 #ifdef FEAT_EVAL | |
6557 | 868 "/.%:=" |
7 | 869 #else |
6557 | 870 "/.%:" |
7 | 871 #endif |
872 , regname) != NULL) | |
6557 | 873 || regname == '#' |
7 | 874 || regname == '"' |
875 || regname == '-' | |
876 || regname == '_' | |
877 #ifdef FEAT_CLIPBOARD | |
878 || regname == '*' | |
879 || regname == '+' | |
880 #endif | |
881 #ifdef FEAT_DND | |
882 || (!writing && regname == '~') | |
883 #endif | |
884 ) | |
885 return TRUE; | |
886 return FALSE; | |
887 } | |
888 | |
889 /* | |
890 * Set y_current and y_append, according to the value of "regname". | |
891 * Cannot handle the '_' register. | |
140 | 892 * Must only be called with a valid register name! |
7 | 893 * |
894 * If regname is 0 and writing, use register 0 | |
895 * If regname is 0 and reading, use previous register | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
896 * |
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
897 * Return TRUE when the register should be inserted literally (selection or |
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
898 * clipboard). |
7 | 899 */ |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
900 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
901 get_yank_register(int regname, int writing) |
7 | 902 { |
903 int i; | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
904 int ret = FALSE; |
7 | 905 |
906 y_append = FALSE; | |
907 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL) | |
908 { | |
909 y_current = y_previous; | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
910 return ret; |
7 | 911 } |
912 i = regname; | |
913 if (VIM_ISDIGIT(i)) | |
914 i -= '0'; | |
915 else if (ASCII_ISLOWER(i)) | |
916 i = CharOrdLow(i) + 10; | |
917 else if (ASCII_ISUPPER(i)) | |
918 { | |
919 i = CharOrdUp(i) + 10; | |
920 y_append = TRUE; | |
921 } | |
922 else if (regname == '-') | |
923 i = DELETION_REGISTER; | |
924 #ifdef FEAT_CLIPBOARD | |
925 /* When selection is not available, use register 0 instead of '*' */ | |
926 else if (clip_star.available && regname == '*') | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
927 { |
7 | 928 i = STAR_REGISTER; |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
929 ret = TRUE; |
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
930 } |
7 | 931 /* When clipboard is not available, use register 0 instead of '+' */ |
932 else if (clip_plus.available && regname == '+') | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
933 { |
7 | 934 i = PLUS_REGISTER; |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
935 ret = TRUE; |
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
936 } |
7 | 937 #endif |
938 #ifdef FEAT_DND | |
939 else if (!writing && regname == '~') | |
940 i = TILDE_REGISTER; | |
941 #endif | |
942 else /* not 0-9, a-z, A-Z or '-': use register 0 */ | |
943 i = 0; | |
944 y_current = &(y_regs[i]); | |
945 if (writing) /* remember the register we write into for do_put() */ | |
946 y_previous = y_current; | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
947 return ret; |
7 | 948 } |
949 | |
15 | 950 #if defined(FEAT_CLIPBOARD) || defined(PROTO) |
7 | 951 /* |
952 * When "regname" is a clipboard register, obtain the selection. If it's not | |
953 * available return zero, otherwise return "regname". | |
954 */ | |
15 | 955 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
956 may_get_selection(int regname) |
7 | 957 { |
958 if (regname == '*') | |
959 { | |
960 if (!clip_star.available) | |
961 regname = 0; | |
962 else | |
963 clip_get_selection(&clip_star); | |
964 } | |
965 else if (regname == '+') | |
966 { | |
967 if (!clip_plus.available) | |
968 regname = 0; | |
969 else | |
970 clip_get_selection(&clip_plus); | |
971 } | |
972 return regname; | |
973 } | |
974 #endif | |
975 | |
976 /* | |
977 * Obtain the contents of a "normal" register. The register is made empty. | |
978 * The returned pointer has allocated memory, use put_register() later. | |
979 */ | |
980 void * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
981 get_register( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
982 int name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
983 int copy) /* make a copy, if FALSE make register empty. */ |
7 | 984 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
985 yankreg_T *reg; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
986 int i; |
7 | 987 |
988 #ifdef FEAT_CLIPBOARD | |
989 /* When Visual area changed, may have to update selection. Obtain the | |
990 * selection too. */ | |
1435 | 991 if (name == '*' && clip_star.available) |
7 | 992 { |
3674 | 993 if (clip_isautosel_star()) |
994 clip_update_selection(&clip_star); | |
995 may_get_selection(name); | |
996 } | |
997 if (name == '+' && clip_plus.available) | |
998 { | |
999 if (clip_isautosel_plus()) | |
1000 clip_update_selection(&clip_plus); | |
7 | 1001 may_get_selection(name); |
1002 } | |
1003 #endif | |
1004 | |
1005 get_yank_register(name, 0); | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
1006 reg = (yankreg_T *)alloc((unsigned)sizeof(yankreg_T)); |
7 | 1007 if (reg != NULL) |
1008 { | |
1009 *reg = *y_current; | |
1010 if (copy) | |
1011 { | |
1012 /* If we run out of memory some or all of the lines are empty. */ | |
1013 if (reg->y_size == 0) | |
1014 reg->y_array = NULL; | |
1015 else | |
1016 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *) | |
1017 * reg->y_size)); | |
1018 if (reg->y_array != NULL) | |
1019 { | |
1020 for (i = 0; i < reg->y_size; ++i) | |
1021 reg->y_array[i] = vim_strsave(y_current->y_array[i]); | |
1022 } | |
1023 } | |
1024 else | |
1025 y_current->y_array = NULL; | |
1026 } | |
1027 return (void *)reg; | |
1028 } | |
1029 | |
1030 /* | |
1451 | 1031 * Put "reg" into register "name". Free any previous contents and "reg". |
7 | 1032 */ |
1033 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1034 put_register(int name, void *reg) |
7 | 1035 { |
1036 get_yank_register(name, 0); | |
1037 free_yank_all(); | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
1038 *y_current = *(yankreg_T *)reg; |
1451 | 1039 vim_free(reg); |
7 | 1040 |
5735 | 1041 #ifdef FEAT_CLIPBOARD |
7 | 1042 /* Send text written to clipboard register to the clipboard. */ |
1043 may_set_selection(); | |
5735 | 1044 #endif |
7 | 1045 } |
4209 | 1046 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1047 #if (defined(FEAT_CLIPBOARD) && defined(FEAT_X11) && defined(USE_SYSTEM)) \ |
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1048 || defined(PROTO) |
4209 | 1049 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1050 free_register(void *reg) |
4209 | 1051 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
1052 yankreg_T tmp; |
4209 | 1053 |
1054 tmp = *y_current; | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
1055 *y_current = *(yankreg_T *)reg; |
4209 | 1056 free_yank_all(); |
1057 vim_free(reg); | |
1058 *y_current = tmp; | |
1059 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1060 #endif |
7 | 1061 |
1062 #if defined(FEAT_MOUSE) || defined(PROTO) | |
1063 /* | |
1064 * return TRUE if the current yank register has type MLINE | |
1065 */ | |
1066 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1067 yank_register_mline(int regname) |
7 | 1068 { |
1069 if (regname != 0 && !valid_yank_reg(regname, FALSE)) | |
1070 return FALSE; | |
1071 if (regname == '_') /* black hole is always empty */ | |
1072 return FALSE; | |
1073 get_yank_register(regname, FALSE); | |
1074 return (y_current->y_type == MLINE); | |
1075 } | |
1076 #endif | |
1077 | |
1078 /* | |
1157 | 1079 * Start or stop recording into a yank register. |
7 | 1080 * |
1157 | 1081 * Return FAIL for failure, OK otherwise. |
7 | 1082 */ |
1083 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1084 do_record(int c) |
7 | 1085 { |
1157 | 1086 char_u *p; |
1087 static int regname; | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
1088 yankreg_T *old_y_previous, *old_y_current; |
1157 | 1089 int retval; |
7 | 1090 |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
1091 if (reg_recording == 0) /* start recording */ |
7 | 1092 { |
13620
4faf77b96432
patch 8.0.1682: auto indenting breaks inserting a block
Christian Brabandt <cb@256bit.org>
parents:
13614
diff
changeset
|
1093 /* registers 0-9, a-z and " are allowed */ |
7 | 1094 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"')) |
1095 retval = FAIL; | |
1096 else | |
1097 { | |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
1098 reg_recording = c; |
7 | 1099 showmode(); |
1100 regname = c; | |
1101 retval = OK; | |
1102 } | |
1103 } | |
1104 else /* stop recording */ | |
1105 { | |
1106 /* | |
1157 | 1107 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this |
1108 * needs to be removed again to put it in a register. exec_reg then | |
1109 * adds the escaping back later. | |
7 | 1110 */ |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
1111 reg_recording = 0; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
1112 msg(""); |
7 | 1113 p = get_recorded(); |
1114 if (p == NULL) | |
1115 retval = FAIL; | |
1116 else | |
1117 { | |
1081 | 1118 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */ |
1119 vim_unescape_csi(p); | |
1120 | |
7 | 1121 /* |
1122 * We don't want to change the default register here, so save and | |
1123 * restore the current register name. | |
1124 */ | |
1125 old_y_previous = y_previous; | |
1126 old_y_current = y_current; | |
1127 | |
1128 retval = stuff_yank(regname, p); | |
1129 | |
1130 y_previous = old_y_previous; | |
1131 y_current = old_y_current; | |
1132 } | |
1133 } | |
1134 return retval; | |
1135 } | |
1136 | |
1137 /* | |
1138 * Stuff string "p" into yank register "regname" as a single line (append if | |
1139 * uppercase). "p" must have been alloced. | |
1140 * | |
1141 * return FAIL for failure, OK otherwise | |
1142 */ | |
1143 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1144 stuff_yank(int regname, char_u *p) |
7 | 1145 { |
1146 char_u *lp; | |
1147 char_u **pp; | |
1148 | |
1149 /* check for read-only register */ | |
1150 if (regname != 0 && !valid_yank_reg(regname, TRUE)) | |
1151 { | |
1152 vim_free(p); | |
1153 return FAIL; | |
1154 } | |
1155 if (regname == '_') /* black hole: don't do anything */ | |
1156 { | |
1157 vim_free(p); | |
1158 return OK; | |
1159 } | |
1160 get_yank_register(regname, TRUE); | |
1161 if (y_append && y_current->y_array != NULL) | |
1162 { | |
1163 pp = &(y_current->y_array[y_current->y_size - 1]); | |
1164 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE); | |
1165 if (lp == NULL) | |
1166 { | |
1167 vim_free(p); | |
1168 return FAIL; | |
1169 } | |
1170 STRCPY(lp, *pp); | |
1171 STRCAT(lp, p); | |
1172 vim_free(p); | |
1173 vim_free(*pp); | |
1174 *pp = lp; | |
1175 } | |
1176 else | |
1177 { | |
1178 free_yank_all(); | |
1179 if ((y_current->y_array = | |
1180 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL) | |
1181 { | |
1182 vim_free(p); | |
1183 return FAIL; | |
1184 } | |
1185 y_current->y_array[0] = p; | |
1186 y_current->y_size = 1; | |
1187 y_current->y_type = MCHAR; /* used to be MLINE, why? */ | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
1188 #ifdef FEAT_VIMINFO |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
1189 y_current->y_time_set = vim_time(); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
1190 #endif |
7 | 1191 } |
1192 return OK; | |
1193 } | |
1194 | |
1893 | 1195 static int execreg_lastc = NUL; |
1196 | |
7 | 1197 /* |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
1198 * Execute a yank register: copy it into the stuff buffer. |
7 | 1199 * |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
1200 * Return FAIL for failure, OK otherwise. |
7 | 1201 */ |
1202 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1203 do_execreg( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1204 int regname, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1205 int colon, /* insert ':' before each line */ |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1206 int addcr, /* always add '\n' to end of line */ |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1207 int silent) /* set "silent" flag in typeahead buffer */ |
7 | 1208 { |
1209 long i; | |
1210 char_u *p; | |
1211 int retval = OK; | |
1212 int remap; | |
1213 | |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1214 // repeat previous one |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1215 if (regname == '@') |
168 | 1216 { |
1893 | 1217 if (execreg_lastc == NUL) |
168 | 1218 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
1219 emsg(_("E748: No previously used register")); |
168 | 1220 return FAIL; |
1221 } | |
1893 | 1222 regname = execreg_lastc; |
168 | 1223 } |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1224 // check for valid regname |
7 | 1225 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE)) |
168 | 1226 { |
1227 emsg_invreg(regname); | |
7 | 1228 return FAIL; |
168 | 1229 } |
1893 | 1230 execreg_lastc = regname; |
7 | 1231 |
1232 #ifdef FEAT_CLIPBOARD | |
1233 regname = may_get_selection(regname); | |
1234 #endif | |
1235 | |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1236 // black hole: don't stuff anything |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1237 if (regname == '_') |
7 | 1238 return OK; |
1239 | |
1240 #ifdef FEAT_CMDHIST | |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1241 // use last command line |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
1242 if (regname == ':') |
7 | 1243 { |
1244 if (last_cmdline == NULL) | |
1245 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
1246 emsg(_(e_nolastcmd)); |
7 | 1247 return FAIL; |
1248 } | |
15989
a14d8b4ef2b0
patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents:
15987
diff
changeset
|
1249 // don't keep the cmdline containing @: |
a14d8b4ef2b0
patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents:
15987
diff
changeset
|
1250 VIM_CLEAR(new_last_cmdline); |
a14d8b4ef2b0
patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents:
15987
diff
changeset
|
1251 // Escape all control characters with a CTRL-V |
16 | 1252 p = vim_strsave_escaped_ext(last_cmdline, |
15989
a14d8b4ef2b0
patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents:
15987
diff
changeset
|
1253 (char_u *)"\001\002\003\004\005\006\007" |
a14d8b4ef2b0
patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents:
15987
diff
changeset
|
1254 "\010\011\012\013\014\015\016\017" |
a14d8b4ef2b0
patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents:
15987
diff
changeset
|
1255 "\020\021\022\023\024\025\026\027" |
a14d8b4ef2b0
patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents:
15987
diff
changeset
|
1256 "\030\031\032\033\034\035\036\037", |
a14d8b4ef2b0
patch 8.1.1000: indenting is off
Bram Moolenaar <Bram@vim.org>
parents:
15987
diff
changeset
|
1257 Ctrl_V, FALSE); |
16 | 1258 if (p != NULL) |
480 | 1259 { |
1260 /* When in Visual mode "'<,'>" will be prepended to the command. | |
1261 * Remove it when it's already there. */ | |
1262 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0) | |
1077 | 1263 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent); |
480 | 1264 else |
1077 | 1265 retval = put_in_typebuf(p, TRUE, TRUE, silent); |
480 | 1266 } |
16 | 1267 vim_free(p); |
7 | 1268 } |
1269 #endif | |
1270 #ifdef FEAT_EVAL | |
1271 else if (regname == '=') | |
1272 { | |
1273 p = get_expr_line(); | |
1274 if (p == NULL) | |
1275 return FAIL; | |
1077 | 1276 retval = put_in_typebuf(p, TRUE, colon, silent); |
7 | 1277 vim_free(p); |
1278 } | |
1279 #endif | |
1280 else if (regname == '.') /* use last inserted text */ | |
1281 { | |
1282 p = get_last_insert_save(); | |
1283 if (p == NULL) | |
1284 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
1285 emsg(_(e_noinstext)); |
7 | 1286 return FAIL; |
1287 } | |
1077 | 1288 retval = put_in_typebuf(p, FALSE, colon, silent); |
7 | 1289 vim_free(p); |
1290 } | |
1291 else | |
1292 { | |
1293 get_yank_register(regname, FALSE); | |
1294 if (y_current->y_array == NULL) | |
1295 return FAIL; | |
1296 | |
1297 /* Disallow remaping for ":@r". */ | |
1298 remap = colon ? REMAP_NONE : REMAP_YES; | |
1299 | |
1300 /* | |
1301 * Insert lines into typeahead buffer, from last one to first one. | |
1302 */ | |
1034 | 1303 put_reedit_in_typebuf(silent); |
7 | 1304 for (i = y_current->y_size; --i >= 0; ) |
1305 { | |
1077 | 1306 char_u *escaped; |
1307 | |
7 | 1308 /* insert NL between lines and after last line if type is MLINE */ |
1309 if (y_current->y_type == MLINE || i < y_current->y_size - 1 | |
1310 || addcr) | |
1311 { | |
1034 | 1312 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL) |
7 | 1313 return FAIL; |
1314 } | |
1077 | 1315 escaped = vim_strsave_escape_csi(y_current->y_array[i]); |
1316 if (escaped == NULL) | |
1317 return FAIL; | |
1318 retval = ins_typebuf(escaped, remap, 0, TRUE, silent); | |
1319 vim_free(escaped); | |
1320 if (retval == FAIL) | |
7 | 1321 return FAIL; |
1034 | 1322 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent) |
7 | 1323 == FAIL) |
1324 return FAIL; | |
1325 } | |
14004
e124262d435e
patch 8.1.0020: cannot tell whether a register is executing or recording
Christian Brabandt <cb@256bit.org>
parents:
13831
diff
changeset
|
1326 reg_executing = regname == 0 ? '"' : regname; // disable "q" command |
7 | 1327 } |
1328 return retval; | |
1329 } | |
1330 | |
1331 /* | |
1332 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's | |
1333 * used only after other typeahead has been processed. | |
1334 */ | |
1335 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1336 put_reedit_in_typebuf(int silent) |
7 | 1337 { |
1338 char_u buf[3]; | |
1339 | |
1340 if (restart_edit != NUL) | |
1341 { | |
1342 if (restart_edit == 'V') | |
1343 { | |
1344 buf[0] = 'g'; | |
1345 buf[1] = 'R'; | |
1346 buf[2] = NUL; | |
1347 } | |
1348 else | |
1349 { | |
1350 buf[0] = restart_edit == 'I' ? 'i' : restart_edit; | |
1351 buf[1] = NUL; | |
1352 } | |
1034 | 1353 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK) |
7 | 1354 restart_edit = NUL; |
1355 } | |
1356 } | |
1357 | |
2061
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1358 /* |
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1359 * Insert register contents "s" into the typeahead buffer, so that it will be |
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1360 * executed again. |
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1361 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and |
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1362 * no remapping. |
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1363 */ |
7 | 1364 static int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1365 put_in_typebuf( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1366 char_u *s, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1367 int esc, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1368 int colon, /* add ':' before the line */ |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1369 int silent) |
7 | 1370 { |
1371 int retval = OK; | |
1372 | |
1034 | 1373 put_reedit_in_typebuf(silent); |
7 | 1374 if (colon) |
2061
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1375 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent); |
7 | 1376 if (retval == OK) |
1077 | 1377 { |
1378 char_u *p; | |
1379 | |
1380 if (esc) | |
1381 p = vim_strsave_escape_csi(s); | |
1382 else | |
1383 p = s; | |
1384 if (p == NULL) | |
1385 retval = FAIL; | |
1386 else | |
2061
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1387 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES, |
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1388 0, TRUE, silent); |
1077 | 1389 if (esc) |
1390 vim_free(p); | |
1391 } | |
7 | 1392 if (colon && retval == OK) |
2061
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
1393 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent); |
7 | 1394 return retval; |
1395 } | |
1396 | |
1397 /* | |
1398 * Insert a yank register: copy it into the Read buffer. | |
1399 * Used by CTRL-R command and middle mouse button in insert mode. | |
1400 * | |
1401 * return FAIL for failure, OK otherwise | |
1402 */ | |
1403 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1404 insert_reg( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1405 int regname, |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1406 int literally_arg) /* insert literally, not as if typed */ |
7 | 1407 { |
1408 long i; | |
1409 int retval = OK; | |
1410 char_u *arg; | |
1411 int allocated; | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1412 int literally = literally_arg; |
7 | 1413 |
1414 /* | |
1415 * It is possible to get into an endless loop by having CTRL-R a in | |
1416 * register a and then, in insert mode, doing CTRL-R a. | |
1417 * If you hit CTRL-C, the loop will be broken here. | |
1418 */ | |
1419 ui_breakcheck(); | |
1420 if (got_int) | |
1421 return FAIL; | |
1422 | |
1423 /* check for valid regname */ | |
1424 if (regname != NUL && !valid_yank_reg(regname, FALSE)) | |
1425 return FAIL; | |
1426 | |
1427 #ifdef FEAT_CLIPBOARD | |
1428 regname = may_get_selection(regname); | |
1429 #endif | |
1430 | |
1431 if (regname == '.') /* insert last inserted text */ | |
1432 retval = stuff_inserted(NUL, 1L, TRUE); | |
1433 else if (get_spec_reg(regname, &arg, &allocated, TRUE)) | |
1434 { | |
1435 if (arg == NULL) | |
1436 return FAIL; | |
1437 stuffescaped(arg, literally); | |
1438 if (allocated) | |
1439 vim_free(arg); | |
1440 } | |
1441 else /* name or number register */ | |
1442 { | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1443 if (get_yank_register(regname, FALSE)) |
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1444 literally = TRUE; |
7 | 1445 if (y_current->y_array == NULL) |
1446 retval = FAIL; | |
1447 else | |
1448 { | |
1449 for (i = 0; i < y_current->y_size; ++i) | |
1450 { | |
1451 stuffescaped(y_current->y_array[i], literally); | |
1452 /* | |
1453 * Insert a newline between lines and after last line if | |
1454 * y_type is MLINE. | |
1455 */ | |
1456 if (y_current->y_type == MLINE || i < y_current->y_size - 1) | |
1457 stuffcharReadbuff('\n'); | |
1458 } | |
1459 } | |
1460 } | |
1461 | |
1462 return retval; | |
1463 } | |
1464 | |
1465 /* | |
1466 * Stuff a string into the typeahead buffer, such that edit() will insert it | |
1467 * literally ("literally" TRUE) or interpret is as typed characters. | |
1468 */ | |
1469 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1470 stuffescaped(char_u *arg, int literally) |
7 | 1471 { |
1472 int c; | |
1473 char_u *start; | |
1474 | |
1475 while (*arg != NUL) | |
1476 { | |
1477 /* Stuff a sequence of normal ASCII characters, that's fast. Also | |
1478 * stuff K_SPECIAL to get the effect of a special key when "literally" | |
1479 * is TRUE. */ | |
1480 start = arg; | |
1481 while ((*arg >= ' ' | |
1482 #ifndef EBCDIC | |
1483 && *arg < DEL /* EBCDIC: chars above space are normal */ | |
1484 #endif | |
1485 ) | |
1486 || (*arg == K_SPECIAL && !literally)) | |
1487 ++arg; | |
1488 if (arg > start) | |
1489 stuffReadbuffLen(start, (long)(arg - start)); | |
1490 | |
1491 /* stuff a single special character */ | |
1492 if (*arg != NUL) | |
1493 { | |
1494 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
|
1495 c = mb_cptr2char_adv(&arg); |
7 | 1496 else |
1497 c = *arg++; | |
1498 if (literally && ((c < ' ' && c != TAB) || c == DEL)) | |
1499 stuffcharReadbuff(Ctrl_V); | |
1500 stuffcharReadbuff(c); | |
1501 } | |
1502 } | |
1503 } | |
1504 | |
1505 /* | |
1157 | 1506 * If "regname" is a special register, return TRUE and store a pointer to its |
1507 * value in "argp". | |
7 | 1508 */ |
15 | 1509 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1510 get_spec_reg( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1511 int regname, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1512 char_u **argp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1513 int *allocated, /* return: TRUE when value was allocated */ |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1514 int errmsg) /* give error message when failing */ |
7 | 1515 { |
1516 int cnt; | |
1517 | |
1518 *argp = NULL; | |
1519 *allocated = FALSE; | |
1520 switch (regname) | |
1521 { | |
1522 case '%': /* file name */ | |
1523 if (errmsg) | |
1524 check_fname(); /* will give emsg if not set */ | |
1525 *argp = curbuf->b_fname; | |
1526 return TRUE; | |
1527 | |
1528 case '#': /* alternate file name */ | |
1529 *argp = getaltfname(errmsg); /* may give emsg if not set */ | |
1530 return TRUE; | |
1531 | |
1532 #ifdef FEAT_EVAL | |
1533 case '=': /* result of expression */ | |
1534 *argp = get_expr_line(); | |
1535 *allocated = TRUE; | |
1536 return TRUE; | |
1537 #endif | |
1538 | |
1539 case ':': /* last command line */ | |
1540 if (last_cmdline == NULL && errmsg) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
1541 emsg(_(e_nolastcmd)); |
7 | 1542 *argp = last_cmdline; |
1543 return TRUE; | |
1544 | |
1545 case '/': /* last search-pattern */ | |
1546 if (last_search_pat() == NULL && errmsg) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
1547 emsg(_(e_noprevre)); |
7 | 1548 *argp = last_search_pat(); |
1549 return TRUE; | |
1550 | |
1551 case '.': /* last inserted text */ | |
1552 *argp = get_last_insert_save(); | |
1553 *allocated = TRUE; | |
1554 if (*argp == NULL && errmsg) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
1555 emsg(_(e_noinstext)); |
7 | 1556 return TRUE; |
1557 | |
1558 #ifdef FEAT_SEARCHPATH | |
1559 case Ctrl_F: /* Filename under cursor */ | |
1560 case Ctrl_P: /* Path under cursor, expand via "path" */ | |
1561 if (!errmsg) | |
1562 return FALSE; | |
1563 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP | |
681 | 1564 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL); |
7 | 1565 *allocated = TRUE; |
1566 return TRUE; | |
1567 #endif | |
1568 | |
1569 case Ctrl_W: /* word under cursor */ | |
1570 case Ctrl_A: /* WORD (mnemonic All) under cursor */ | |
1571 if (!errmsg) | |
1572 return FALSE; | |
1573 cnt = find_ident_under_cursor(argp, regname == Ctrl_W | |
1574 ? (FIND_IDENT|FIND_STRING) : FIND_STRING); | |
1575 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL; | |
1576 *allocated = TRUE; | |
1577 return TRUE; | |
1578 | |
13831
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13814
diff
changeset
|
1579 case Ctrl_L: /* Line under cursor */ |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13814
diff
changeset
|
1580 if (!errmsg) |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13814
diff
changeset
|
1581 return FALSE; |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13814
diff
changeset
|
1582 |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13814
diff
changeset
|
1583 *argp = ml_get_buf(curwin->w_buffer, |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13814
diff
changeset
|
1584 curwin->w_cursor.lnum, FALSE); |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13814
diff
changeset
|
1585 return TRUE; |
1f95ec5de238
patch 8.0.1787: cannot insert the whole cursor line
Christian Brabandt <cb@256bit.org>
parents:
13814
diff
changeset
|
1586 |
7 | 1587 case '_': /* black hole: always empty */ |
1588 *argp = (char_u *)""; | |
1589 return TRUE; | |
1590 } | |
1591 | |
1592 return FALSE; | |
1593 } | |
1594 | |
1595 /* | |
15 | 1596 * Paste a yank register into the command line. |
1597 * Only for non-special registers. | |
1598 * Used by CTRL-R command in command-line mode | |
7 | 1599 * insert_reg() can't be used here, because special characters from the |
1600 * register contents will be interpreted as commands. | |
1601 * | |
1602 * return FAIL for failure, OK otherwise | |
1603 */ | |
1604 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1605 cmdline_paste_reg( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1606 int regname, |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1607 int literally_arg, /* Insert text literally instead of "as typed" */ |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1608 int remcr) /* don't add CR characters */ |
7 | 1609 { |
1610 long i; | |
13425
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1611 int literally = literally_arg; |
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1612 |
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1613 if (get_yank_register(regname, FALSE)) |
bb789ed5113a
patch 8.0.1587: inserting from the clipboard doesn't work literally
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1614 literally = TRUE; |
7 | 1615 if (y_current->y_array == NULL) |
1616 return FAIL; | |
1617 | |
1618 for (i = 0; i < y_current->y_size; ++i) | |
1619 { | |
1620 cmdline_paste_str(y_current->y_array[i], literally); | |
1621 | |
1015 | 1622 /* Insert ^M between lines and after last line if type is MLINE. |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
1623 * Don't do this when "remcr" is TRUE. */ |
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
1624 if ((y_current->y_type == MLINE || i < y_current->y_size - 1) && !remcr) |
7 | 1625 cmdline_paste_str((char_u *)"\r", literally); |
1626 | |
1627 /* Check for CTRL-C, in case someone tries to paste a few thousand | |
1628 * lines and gets bored. */ | |
1629 ui_breakcheck(); | |
1630 if (got_int) | |
1631 return FAIL; | |
1632 } | |
1633 return OK; | |
1634 } | |
1635 | |
1636 #if defined(FEAT_CLIPBOARD) || defined(PROTO) | |
1637 /* | |
1638 * Adjust the register name pointed to with "rp" for the clipboard being | |
1639 * used always and the clipboard being available. | |
1640 */ | |
1641 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1642 adjust_clip_reg(int *rp) |
7 | 1643 { |
2654 | 1644 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard', |
1645 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */ | |
6116 | 1646 if (*rp == 0 && (clip_unnamed != 0 || clip_unnamed_saved != 0)) |
1647 { | |
1648 if (clip_unnamed != 0) | |
1649 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available) | |
2654 | 1650 ? '+' : '*'; |
6116 | 1651 else |
1652 *rp = ((clip_unnamed_saved & CLIP_UNNAMED_PLUS) && clip_plus.available) | |
1653 ? '+' : '*'; | |
1654 } | |
7 | 1655 if (!clip_star.available && *rp == '*') |
1656 *rp = 0; | |
1657 if (!clip_plus.available && *rp == '+') | |
1658 *rp = 0; | |
1659 } | |
1660 #endif | |
1661 | |
1662 /* | |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1663 * Shift the delete registers: "9 is cleared, "8 becomes "9, etc. |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1664 */ |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1665 void |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1666 shift_delete_registers() |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1667 { |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1668 int n; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1669 |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1670 y_current = &y_regs[9]; |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1671 free_yank_all(); /* free register nine */ |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1672 for (n = 9; n > 1; --n) |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1673 y_regs[n] = y_regs[n - 1]; |
11597
72b20190dce6
patch 8.0.0681: unnamed register only contains the last deleted text
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
1674 y_current = &y_regs[1]; |
72b20190dce6
patch 8.0.0681: unnamed register only contains the last deleted text
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
1675 if (!y_append) |
72b20190dce6
patch 8.0.0681: unnamed register only contains the last deleted text
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
1676 y_previous = y_current; |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1677 y_regs[1].y_array = NULL; /* set register one to empty */ |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1678 } |
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1679 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13254
diff
changeset
|
1680 #if defined(FEAT_EVAL) |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1681 static void |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1682 yank_do_autocmd(oparg_T *oap, yankreg_T *reg) |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1683 { |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1684 static int recursive = FALSE; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1685 dict_T *v_event; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1686 list_T *list; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1687 int n; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1688 char_u buf[NUMBUFLEN + 2]; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1689 long reglen = 0; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1690 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1691 if (recursive) |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1692 return; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1693 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1694 v_event = get_vim_var_dict(VV_EVENT); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1695 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1696 list = list_alloc(); |
13254
88cc06dc1a50
patch 8.0.1501: out-of-memory situation not correctly handled
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1697 if (list == NULL) |
88cc06dc1a50
patch 8.0.1501: out-of-memory situation not correctly handled
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1698 return; |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1699 for (n = 0; n < reg->y_size; n++) |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1700 list_append_string(list, reg->y_array[n], -1); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1701 list->lv_lock = VAR_FIXED; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1702 dict_add_list(v_event, "regcontents", list); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1703 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1704 buf[0] = (char_u)oap->regname; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1705 buf[1] = NUL; |
14301
3c80092eb211
patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents:
14216
diff
changeset
|
1706 dict_add_string(v_event, "regname", buf); |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1707 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1708 buf[0] = get_op_char(oap->op_type); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1709 buf[1] = get_extra_op_char(oap->op_type); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1710 buf[2] = NUL; |
14301
3c80092eb211
patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents:
14216
diff
changeset
|
1711 dict_add_string(v_event, "operator", buf); |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1712 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1713 buf[0] = NUL; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1714 buf[1] = NUL; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1715 switch (get_reg_type(oap->regname, ®len)) |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1716 { |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1717 case MLINE: buf[0] = 'V'; break; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1718 case MCHAR: buf[0] = 'v'; break; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1719 case MBLOCK: |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1720 vim_snprintf((char *)buf, sizeof(buf), "%c%ld", Ctrl_V, |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1721 reglen + 1); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1722 break; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1723 } |
14301
3c80092eb211
patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents:
14216
diff
changeset
|
1724 dict_add_string(v_event, "regtype", buf); |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1725 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1726 /* Lock the dictionary and its keys */ |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1727 dict_set_items_ro(v_event); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1728 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1729 recursive = TRUE; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1730 textlock++; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1731 apply_autocmds(EVENT_TEXTYANKPOST, NULL, NULL, FALSE, curbuf); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1732 textlock--; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1733 recursive = FALSE; |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1734 |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1735 /* Empty the dictionary, v:event is still valid */ |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1736 dict_free_contents(v_event); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1737 hash_init(&v_event->dv_hashtab); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1738 } |
13047
669c4f75a69e
patch 8.0.1399: warnings and errors when building tiny version
Christian Brabandt <cb@256bit.org>
parents:
13037
diff
changeset
|
1739 #endif |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1740 |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1741 /* |
2289
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1742 * Handle a delete operation. |
7 | 1743 * |
2289
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1744 * Return FAIL if undo failed, OK otherwise. |
7 | 1745 */ |
1746 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1747 op_delete(oparg_T *oap) |
7 | 1748 { |
1749 int n; | |
1750 linenr_T lnum; | |
1751 char_u *ptr; | |
1752 char_u *newp, *oldp; | |
1753 struct block_def bd; | |
1754 linenr_T old_lcount = curbuf->b_ml.ml_line_count; | |
1755 int did_yank = FALSE; | |
1756 | |
1757 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */ | |
1758 return OK; | |
1759 | |
1760 /* Nothing to delete, return here. Do prepare undo, for op_change(). */ | |
1761 if (oap->empty) | |
1762 return u_save_cursor(); | |
1763 | |
1764 if (!curbuf->b_p_ma) | |
1765 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
1766 emsg(_(e_modifiable)); |
7 | 1767 return FAIL; |
1768 } | |
1769 | |
1770 #ifdef FEAT_CLIPBOARD | |
1771 adjust_clip_reg(&oap->regname); | |
1772 #endif | |
1773 | |
1774 if (has_mbyte) | |
1775 mb_adjust_opend(oap); | |
1776 | |
2289
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1777 /* |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1778 * 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
|
1779 * 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
|
1780 * 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
|
1781 */ |
7 | 1782 if ( oap->motion_type == MCHAR |
1783 && !oap->is_VIsual | |
50 | 1784 && !oap->block_mode |
7 | 1785 && oap->line_count > 1 |
3254 | 1786 && oap->motion_force == NUL |
7 | 1787 && oap->op_type == OP_DELETE) |
1788 { | |
2957 | 1789 ptr = ml_get(oap->end.lnum) + oap->end.col; |
1790 if (*ptr != NUL) | |
1791 ptr += oap->inclusive; | |
7 | 1792 ptr = skipwhite(ptr); |
1793 if (*ptr == NUL && inindent(0)) | |
1794 oap->motion_type = MLINE; | |
1795 } | |
1796 | |
2289
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1797 /* |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1798 * 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
|
1799 * 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
|
1800 */ |
7 | 1801 if ( oap->motion_type == MCHAR |
1802 && oap->line_count == 1 | |
1803 && oap->op_type == OP_DELETE | |
1804 && *ml_get(oap->start.lnum) == NUL) | |
1805 { | |
1806 /* | |
446 | 1807 * It's an error to operate on an empty region, when 'E' included in |
7 | 1808 * 'cpoptions' (Vi compatible). |
1809 */ | |
446 | 1810 if (virtual_op) |
1811 /* Virtual editing: Nothing gets deleted, but we set the '[ and '] | |
1812 * marks as if it happened. */ | |
1813 goto setmarks; | |
7 | 1814 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL) |
1815 beep_flush(); | |
1816 return OK; | |
1817 } | |
1818 | |
2289
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1819 /* |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1820 * 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
|
1821 * 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
|
1822 * 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
|
1823 */ |
7 | 1824 if (oap->regname != '_') |
1825 { | |
1826 if (oap->regname != 0) | |
1827 { | |
1828 /* check for read-only register */ | |
1829 if (!valid_yank_reg(oap->regname, TRUE)) | |
1830 { | |
1831 beep_flush(); | |
1832 return OK; | |
1833 } | |
1834 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */ | |
1835 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */ | |
1836 did_yank = TRUE; | |
1837 } | |
1838 | |
1839 /* | |
1840 * 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
|
1841 * 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
|
1842 * compatible) |
3782 | 1843 * Use the register name from before adjust_clip_reg() may have |
1844 * changed it. | |
7 | 1845 */ |
15987
29de75f53b1a
patch 8.1.0999: use register one too often and not properly tested
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
1846 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
|
1847 || oap->use_reg_one) |
7 | 1848 { |
10827
e366b968bf08
patch 8.0.0303: bracketed paste does not work in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10803
diff
changeset
|
1849 shift_delete_registers(); |
7 | 1850 if (op_yank(oap, TRUE, FALSE) == OK) |
1851 did_yank = TRUE; | |
1852 } | |
1853 | |
3468 | 1854 /* Yank into small delete register when no named register specified |
1855 * and the delete is within one line. */ | |
1856 if (( | |
1857 #ifdef FEAT_CLIPBOARD | |
3584 | 1858 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') || |
1859 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') || | |
3468 | 1860 #endif |
1861 oap->regname == 0) && oap->motion_type != MLINE | |
7 | 1862 && oap->line_count == 1) |
1863 { | |
1864 oap->regname = '-'; | |
1865 get_yank_register(oap->regname, TRUE); | |
1866 if (op_yank(oap, TRUE, FALSE) == OK) | |
1867 did_yank = TRUE; | |
1868 oap->regname = 0; | |
1869 } | |
1870 | |
1871 /* | |
1872 * If there's too much stuff to fit in the yank register, then get a | |
1873 * confirmation before doing the delete. This is crude, but simple. | |
1874 * And it avoids doing a delete of something we can't put back if we | |
1875 * want. | |
1876 */ | |
1877 if (!did_yank) | |
1878 { | |
1879 int msg_silent_save = msg_silent; | |
1880 | |
1881 msg_silent = 0; /* must display the prompt */ | |
1882 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE); | |
1883 msg_silent = msg_silent_save; | |
1884 if (n != 'y') | |
1885 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
1886 emsg(_(e_abort)); |
7 | 1887 return FAIL; |
1888 } | |
1889 } | |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1890 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13254
diff
changeset
|
1891 #if defined(FEAT_EVAL) |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1892 if (did_yank && has_textyankpost()) |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1893 yank_do_autocmd(oap, y_current); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
1894 #endif |
7 | 1895 } |
1896 | |
2289
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1897 /* |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
1898 * 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
|
1899 */ |
7 | 1900 if (oap->block_mode) |
1901 { | |
1902 if (u_save((linenr_T)(oap->start.lnum - 1), | |
1903 (linenr_T)(oap->end.lnum + 1)) == FAIL) | |
1904 return FAIL; | |
1905 | |
1906 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum) | |
1907 { | |
1908 block_prep(oap, &bd, lnum, TRUE); | |
1909 if (bd.textlen == 0) /* nothing to delete */ | |
1910 continue; | |
1911 | |
1912 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */ | |
1913 if (lnum == curwin->w_cursor.lnum) | |
1914 { | |
1915 curwin->w_cursor.col = bd.textcol + bd.startspaces; | |
1916 curwin->w_cursor.coladd = 0; | |
1917 } | |
1918 | |
16682
7847d281cbbf
patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents:
16680
diff
changeset
|
1919 // "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
|
1920 // 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
|
1921 // Thus the number of characters may increase! |
7 | 1922 n = bd.textlen - bd.startspaces - bd.endspaces; |
1923 oldp = ml_get(lnum); | |
1924 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n); | |
1925 if (newp == NULL) | |
1926 continue; | |
1927 /* copy up to deleted part */ | |
1928 mch_memmove(newp, oldp, (size_t)bd.textcol); | |
1929 /* insert spaces */ | |
6929 | 1930 vim_memset(newp + bd.textcol, ' ', |
7 | 1931 (size_t)(bd.startspaces + bd.endspaces)); |
1932 /* copy the part after the deleted part */ | |
1933 oldp += bd.textcol + bd.textlen; | |
1622 | 1934 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp); |
7 | 1935 /* replace the line */ |
1936 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
|
1937 |
7847d281cbbf
patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents:
16680
diff
changeset
|
1938 #ifdef FEAT_TEXT_PROP |
7847d281cbbf
patch 8.1.1343: text properties not adjusted for Visual block mode delete
Bram Moolenaar <Bram@vim.org>
parents:
16680
diff
changeset
|
1939 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
|
1940 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
|
1941 #endif |
7 | 1942 } |
1943 | |
1944 check_cursor_col(); | |
1945 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col, | |
1946 oap->end.lnum + 1, 0L); | |
1947 oap->line_count = 0; /* no lines deleted */ | |
1948 } | |
5735 | 1949 else if (oap->motion_type == MLINE) |
7 | 1950 { |
1951 if (oap->op_type == OP_CHANGE) | |
1952 { | |
1953 /* Delete the lines except the first one. Temporarily move the | |
1954 * cursor to the next line. Save the current line number, if the | |
1955 * last line is deleted it may be changed. | |
1956 */ | |
1957 if (oap->line_count > 1) | |
1958 { | |
1959 lnum = curwin->w_cursor.lnum; | |
1960 ++curwin->w_cursor.lnum; | |
1961 del_lines((long)(oap->line_count - 1), TRUE); | |
1962 curwin->w_cursor.lnum = lnum; | |
1963 } | |
1964 if (u_save_cursor() == FAIL) | |
1965 return FAIL; | |
1966 if (curbuf->b_p_ai) /* don't delete indent */ | |
1967 { | |
1968 beginline(BL_WHITE); /* cursor on first non-white */ | |
1969 did_ai = TRUE; /* delete the indent when ESC hit */ | |
1970 ai_col = curwin->w_cursor.col; | |
1971 } | |
1972 else | |
1973 beginline(0); /* cursor in column 0 */ | |
1974 truncate_line(FALSE); /* delete the rest of the line */ | |
1975 /* leave cursor past last char in line */ | |
1976 if (oap->line_count > 1) | |
1977 u_clearline(); /* "U" command not possible after "2cc" */ | |
1978 } | |
1979 else | |
1980 { | |
1981 del_lines(oap->line_count, TRUE); | |
1982 beginline(BL_WHITE | BL_FIX); | |
1983 u_clearline(); /* "U" command not possible after "dd" */ | |
1984 } | |
1985 } | |
1986 else | |
1987 { | |
1988 if (virtual_op) | |
1989 { | |
1990 int endcol = 0; | |
1991 | |
1992 /* For virtualedit: break the tabs that are partly included. */ | |
1993 if (gchar_pos(&oap->start) == '\t') | |
1994 { | |
1995 if (u_save_cursor() == FAIL) /* save first line for undo */ | |
1996 return FAIL; | |
1997 if (oap->line_count == 1) | |
1998 endcol = getviscol2(oap->end.col, oap->end.coladd); | |
1999 coladvance_force(getviscol2(oap->start.col, oap->start.coladd)); | |
2000 oap->start = curwin->w_cursor; | |
2001 if (oap->line_count == 1) | |
2002 { | |
2003 coladvance(endcol); | |
2004 oap->end.col = curwin->w_cursor.col; | |
2005 oap->end.coladd = curwin->w_cursor.coladd; | |
2006 curwin->w_cursor = oap->start; | |
2007 } | |
2008 } | |
2009 | |
2010 /* Break a tab only when it's included in the area. */ | |
2011 if (gchar_pos(&oap->end) == '\t' | |
2012 && (int)oap->end.coladd < oap->inclusive) | |
2013 { | |
2014 /* save last line for undo */ | |
2015 if (u_save((linenr_T)(oap->end.lnum - 1), | |
2016 (linenr_T)(oap->end.lnum + 1)) == FAIL) | |
2017 return FAIL; | |
2018 curwin->w_cursor = oap->end; | |
2019 coladvance_force(getviscol2(oap->end.col, oap->end.coladd)); | |
2020 oap->end = curwin->w_cursor; | |
2021 curwin->w_cursor = oap->start; | |
2022 } | |
2023 } | |
2024 | |
2025 if (oap->line_count == 1) /* delete characters within one line */ | |
2026 { | |
2027 if (u_save_cursor() == FAIL) /* save line for undo */ | |
2028 return FAIL; | |
2029 | |
2030 /* if 'cpoptions' contains '$', display '$' at end of change */ | |
5735 | 2031 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL |
7 | 2032 && oap->op_type == OP_CHANGE |
2033 && oap->end.lnum == curwin->w_cursor.lnum | |
5735 | 2034 && !oap->is_VIsual) |
7 | 2035 display_dollar(oap->end.col - !oap->inclusive); |
2036 | |
2037 n = oap->end.col - oap->start.col + 1 - !oap->inclusive; | |
2038 | |
2039 if (virtual_op) | |
2040 { | |
2041 /* fix up things for virtualedit-delete: | |
2042 * break the tabs which are going to get in our way | |
2043 */ | |
2044 char_u *curline = ml_get_curline(); | |
2045 int len = (int)STRLEN(curline); | |
2046 | |
2047 if (oap->end.coladd != 0 | |
2048 && (int)oap->end.col >= len - 1 | |
2049 && !(oap->start.coladd && (int)oap->end.col >= len - 1)) | |
2050 n++; | |
2051 /* Delete at least one char (e.g, when on a control char). */ | |
2052 if (n == 0 && oap->start.coladd != oap->end.coladd) | |
2053 n = 1; | |
2054 | |
2055 /* When deleted a char in the line, reset coladd. */ | |
2056 if (gchar_cursor() != NUL) | |
2057 curwin->w_cursor.coladd = 0; | |
2058 } | |
6826 | 2059 (void)del_bytes((long)n, !virtual_op, |
2060 oap->op_type == OP_DELETE && !oap->is_VIsual); | |
7 | 2061 } |
2062 else /* delete characters between lines */ | |
2063 { | |
2064 pos_T curpos; | |
2065 | |
2066 /* save deleted and changed lines for undo */ | |
2067 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1), | |
2068 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL) | |
2069 return FAIL; | |
2070 | |
2071 truncate_line(TRUE); /* delete from cursor to end of line */ | |
2072 | |
2073 curpos = curwin->w_cursor; /* remember curwin->w_cursor */ | |
2074 ++curwin->w_cursor.lnum; | |
2075 del_lines((long)(oap->line_count - 2), FALSE); | |
2076 | |
6826 | 2077 /* delete from start of line until op_end */ |
2957 | 2078 n = (oap->end.col + 1 - !oap->inclusive); |
6826 | 2079 curwin->w_cursor.col = 0; |
2080 (void)del_bytes((long)n, !virtual_op, | |
2081 oap->op_type == OP_DELETE && !oap->is_VIsual); | |
2082 curwin->w_cursor = curpos; /* restore curwin->w_cursor */ | |
2083 (void)do_join(2, FALSE, FALSE, FALSE, FALSE); | |
7 | 2084 } |
2085 } | |
2086 | |
2087 msgmore(curbuf->b_ml.ml_line_count - old_lcount); | |
2088 | |
446 | 2089 setmarks: |
7 | 2090 if (oap->block_mode) |
2091 { | |
2092 curbuf->b_op_end.lnum = oap->end.lnum; | |
2093 curbuf->b_op_end.col = oap->start.col; | |
2094 } | |
2095 else | |
2096 curbuf->b_op_end = oap->start; | |
2097 curbuf->b_op_start = oap->start; | |
2098 | |
2099 return OK; | |
2100 } | |
2101 | |
2102 /* | |
2103 * Adjust end of operating area for ending on a multi-byte character. | |
2104 * Used for deletion. | |
2105 */ | |
2106 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2107 mb_adjust_opend(oparg_T *oap) |
7 | 2108 { |
2109 char_u *p; | |
2110 | |
2111 if (oap->inclusive) | |
2112 { | |
2113 p = ml_get(oap->end.lnum); | |
2114 oap->end.col += mb_tail_off(p, p + oap->end.col); | |
2115 } | |
2116 } | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2117 |
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
|
2118 /* |
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
|
2119 * 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
|
2120 * 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
|
2121 */ |
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
|
2122 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
|
2123 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
|
2124 { |
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
|
2125 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
|
2126 |
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
|
2127 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
|
2128 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
|
2129 State = n; |
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
|
2130 /* Backup to the replaced character. */ |
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
|
2131 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
|
2132 } |
15422
b55b89692fd2
patch 8.1.0719: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15326
diff
changeset
|
2133 |
7 | 2134 /* |
2135 * Replace a whole area with one character. | |
2136 */ | |
2137 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2138 op_replace(oparg_T *oap, int c) |
7 | 2139 { |
2140 int n, numc; | |
2141 int num_chars; | |
2142 char_u *newp, *oldp; | |
2143 size_t oldlen; | |
2144 struct block_def bd; | |
5428 | 2145 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
|
2146 int had_ctrl_v_cr = FALSE; |
7 | 2147 |
2148 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty) | |
2149 return OK; /* nothing to do */ | |
2150 | |
13202
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
2151 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
|
2152 { |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
2153 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
|
2154 c = CAR; |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
2155 } |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
2156 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
|
2157 { |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
2158 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
|
2159 c = NL; |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
2160 } |
5428 | 2161 |
7 | 2162 if (has_mbyte) |
2163 mb_adjust_opend(oap); | |
2164 | |
2165 if (u_save((linenr_T)(oap->start.lnum - 1), | |
2166 (linenr_T)(oap->end.lnum + 1)) == FAIL) | |
2167 return FAIL; | |
2168 | |
2169 /* | |
2170 * block mode replace | |
2171 */ | |
2172 if (oap->block_mode) | |
2173 { | |
2174 bd.is_MAX = (curwin->w_curswant == MAXCOL); | |
2175 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum) | |
2176 { | |
1982 | 2177 curwin->w_cursor.col = 0; /* make sure cursor position is valid */ |
7 | 2178 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE); |
2179 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX)) | |
2180 continue; /* nothing to replace */ | |
2181 | |
2182 /* n == number of extra chars required | |
2183 * If we split a TAB, it may be replaced by several characters. | |
2184 * Thus the number of characters may increase! | |
2185 */ | |
2186 /* If the range starts in virtual space, count the initial | |
2187 * coladd offset as part of "startspaces" */ | |
2188 if (virtual_op && bd.is_short && *bd.textstart == NUL) | |
2189 { | |
2190 pos_T vpos; | |
2191 | |
1982 | 2192 vpos.lnum = curwin->w_cursor.lnum; |
7 | 2193 getvpos(&vpos, oap->start_vcol); |
2194 bd.startspaces += vpos.coladd; | |
2195 n = bd.startspaces; | |
2196 } | |
2197 else | |
2198 /* allow for pre spaces */ | |
2199 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0); | |
2200 | |
2201 /* allow for post spp */ | |
2202 n += (bd.endspaces | |
2203 && !bd.is_oneChar | |
2204 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0; | |
2205 /* Figure out how many characters to replace. */ | |
2206 numc = oap->end_vcol - oap->start_vcol + 1; | |
2207 if (bd.is_short && (!virtual_op || bd.is_MAX)) | |
2208 numc -= (oap->end_vcol - bd.end_vcol) + 1; | |
2209 | |
2210 /* A double-wide character can be replaced only up to half the | |
2211 * times. */ | |
2212 if ((*mb_char2cells)(c) > 1) | |
2213 { | |
2214 if ((numc & 1) && !bd.is_short) | |
2215 { | |
2216 ++bd.endspaces; | |
2217 ++n; | |
2218 } | |
2219 numc = numc / 2; | |
2220 } | |
2221 | |
2222 /* Compute bytes needed, move character count to num_chars. */ | |
2223 num_chars = numc; | |
2224 numc *= (*mb_char2len)(c); | |
2225 /* oldlen includes textlen, so don't double count */ | |
2226 n += numc - bd.textlen; | |
2227 | |
2228 oldp = ml_get_curline(); | |
2229 oldlen = STRLEN(oldp); | |
2230 newp = alloc_check((unsigned)oldlen + 1 + n); | |
2231 if (newp == NULL) | |
2232 continue; | |
2233 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n)); | |
2234 /* copy up to deleted part */ | |
2235 mch_memmove(newp, oldp, (size_t)bd.textcol); | |
2236 oldp += bd.textcol + bd.textlen; | |
2237 /* insert pre-spaces */ | |
6929 | 2238 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces); |
7 | 2239 /* insert replacement chars CHECK FOR ALLOCATED SPACE */ |
13202
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
2240 /* REPLACE_CR_NCHAR/REPLACE_NL_NCHAR is used for entering CR |
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
2241 * literally. */ |
5428 | 2242 if (had_ctrl_v_cr || (c != '\r' && c != '\n')) |
7 | 2243 { |
5428 | 2244 if (has_mbyte) |
2245 { | |
2246 n = (int)STRLEN(newp); | |
2247 while (--num_chars >= 0) | |
2248 n += (*mb_char2bytes)(c, newp + n); | |
2249 } | |
2250 else | |
6929 | 2251 vim_memset(newp + STRLEN(newp), c, (size_t)numc); |
5428 | 2252 if (!bd.is_short) |
2253 { | |
2254 /* insert post-spaces */ | |
6929 | 2255 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces); |
5428 | 2256 /* copy the part after the changed part */ |
2257 STRMOVE(newp + STRLEN(newp), oldp); | |
2258 } | |
7 | 2259 } |
2260 else | |
2261 { | |
5428 | 2262 /* Replacing with \r or \n means splitting the line. */ |
5475 | 2263 after_p = alloc_check( |
2264 (unsigned)(oldlen + 1 + n - STRLEN(newp))); | |
5428 | 2265 if (after_p != NULL) |
2266 STRMOVE(after_p, oldp); | |
7 | 2267 } |
2268 /* replace the line */ | |
2269 ml_replace(curwin->w_cursor.lnum, newp, FALSE); | |
5428 | 2270 if (after_p != NULL) |
2271 { | |
2272 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE); | |
2273 appended_lines_mark(curwin->w_cursor.lnum, 1L); | |
2274 oap->end.lnum++; | |
2275 vim_free(after_p); | |
2276 } | |
7 | 2277 } |
2278 } | |
2279 else | |
2280 { | |
2281 /* | |
2282 * MCHAR and MLINE motion replace. | |
2283 */ | |
2284 if (oap->motion_type == MLINE) | |
2285 { | |
2286 oap->start.col = 0; | |
2287 curwin->w_cursor.col = 0; | |
2288 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum)); | |
2289 if (oap->end.col) | |
2290 --oap->end.col; | |
2291 } | |
2292 else if (!oap->inclusive) | |
2293 dec(&(oap->end)); | |
2294 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11065
diff
changeset
|
2295 while (LTOREQ_POS(curwin->w_cursor, oap->end)) |
7 | 2296 { |
2297 n = gchar_cursor(); | |
2298 if (n != NUL) | |
2299 { | |
2300 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1) | |
2301 { | |
2302 /* This is slow, but it handles replacing a single-byte | |
2303 * with a multi-byte and the other way around. */ | |
4203 | 2304 if (curwin->w_cursor.lnum == oap->end.lnum) |
2305 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
|
2306 replace_character(c); |
7 | 2307 } |
2308 else | |
2309 { | |
2310 if (n == TAB) | |
2311 { | |
2312 int end_vcol = 0; | |
2313 | |
2314 if (curwin->w_cursor.lnum == oap->end.lnum) | |
2315 { | |
2316 /* oap->end has to be recalculated when | |
2317 * the tab breaks */ | |
2318 end_vcol = getviscol2(oap->end.col, | |
2319 oap->end.coladd); | |
2320 } | |
2321 coladvance_force(getviscol()); | |
2322 if (curwin->w_cursor.lnum == oap->end.lnum) | |
2323 getvpos(&oap->end, end_vcol); | |
2324 } | |
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
|
2325 PBYTE(curwin->w_cursor, c); |
7 | 2326 } |
2327 } | |
2328 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum) | |
2329 { | |
2330 int virtcols = oap->end.coladd; | |
2331 | |
2332 if (curwin->w_cursor.lnum == oap->start.lnum | |
2333 && oap->start.col == oap->end.col && oap->start.coladd) | |
2334 virtcols -= oap->start.coladd; | |
2335 | |
2336 /* oap->end has been trimmed so it's effectively inclusive; | |
2337 * as a result an extra +1 must be counted so we don't | |
2338 * trample the NUL byte. */ | |
2339 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1); | |
2340 curwin->w_cursor.col -= (virtcols + 1); | |
2341 for (; virtcols >= 0; virtcols--) | |
2342 { | |
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
|
2343 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
|
2344 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
|
2345 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
|
2346 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
|
2347 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
|
2348 break; |
7 | 2349 } |
2350 } | |
2351 | |
2352 /* Advance to next character, stop at the end of the file. */ | |
2353 if (inc_cursor() == -1) | |
2354 break; | |
2355 } | |
2356 } | |
2357 | |
2358 curwin->w_cursor = oap->start; | |
2359 check_cursor(); | |
2360 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L); | |
2361 | |
2362 /* Set "'[" and "']" marks. */ | |
2363 curbuf->b_op_start = oap->start; | |
2364 curbuf->b_op_end = oap->end; | |
2365 | |
2366 return OK; | |
2367 } | |
2368 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
2369 static int swapchars(int op_type, pos_T *pos, int length); |
1525 | 2370 |
7 | 2371 /* |
2372 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?". | |
2373 */ | |
2374 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2375 op_tilde(oparg_T *oap) |
7 | 2376 { |
2377 pos_T pos; | |
2378 struct block_def bd; | |
1528 | 2379 int did_change = FALSE; |
7 | 2380 |
2381 if (u_save((linenr_T)(oap->start.lnum - 1), | |
2382 (linenr_T)(oap->end.lnum + 1)) == FAIL) | |
2383 return; | |
2384 | |
2385 pos = oap->start; | |
2386 if (oap->block_mode) /* Visual block mode */ | |
2387 { | |
2388 for (; pos.lnum <= oap->end.lnum; ++pos.lnum) | |
2389 { | |
1766 | 2390 int one_change; |
2391 | |
7 | 2392 block_prep(oap, &bd, pos.lnum, FALSE); |
2393 pos.col = bd.textcol; | |
1766 | 2394 one_change = swapchars(oap->op_type, &pos, bd.textlen); |
2395 did_change |= one_change; | |
1525 | 2396 |
5735 | 2397 #ifdef FEAT_NETBEANS_INTG |
2210 | 2398 if (netbeans_active() && one_change) |
7 | 2399 { |
2400 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE); | |
2401 | |
33 | 2402 netbeans_removed(curbuf, pos.lnum, bd.textcol, |
2403 (long)bd.textlen); | |
7 | 2404 netbeans_inserted(curbuf, pos.lnum, bd.textcol, |
2210 | 2405 &ptr[bd.textcol], bd.textlen); |
7 | 2406 } |
5735 | 2407 #endif |
7 | 2408 } |
2409 if (did_change) | |
2410 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L); | |
2411 } | |
2412 else /* not block mode */ | |
2413 { | |
2414 if (oap->motion_type == MLINE) | |
2415 { | |
2416 oap->start.col = 0; | |
2417 pos.col = 0; | |
2418 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum)); | |
2419 if (oap->end.col) | |
2420 --oap->end.col; | |
2421 } | |
2422 else if (!oap->inclusive) | |
2423 dec(&(oap->end)); | |
2424 | |
1528 | 2425 if (pos.lnum == oap->end.lnum) |
2426 did_change = swapchars(oap->op_type, &pos, | |
2427 oap->end.col - pos.col + 1); | |
2428 else | |
2429 for (;;) | |
2430 { | |
2431 did_change |= swapchars(oap->op_type, &pos, | |
2432 pos.lnum == oap->end.lnum ? oap->end.col + 1: | |
2433 (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
|
2434 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1) |
1528 | 2435 break; |
2436 } | |
7 | 2437 if (did_change) |
2438 { | |
2439 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, | |
2440 0L); | |
2441 #ifdef FEAT_NETBEANS_INTG | |
2210 | 2442 if (netbeans_active() && did_change) |
7 | 2443 { |
2444 char_u *ptr; | |
2445 int count; | |
2446 | |
2447 pos = oap->start; | |
2448 while (pos.lnum < oap->end.lnum) | |
2449 { | |
2450 ptr = ml_get_buf(curbuf, pos.lnum, FALSE); | |
835 | 2451 count = (int)STRLEN(ptr) - pos.col; |
33 | 2452 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count); |
7 | 2453 netbeans_inserted(curbuf, pos.lnum, pos.col, |
2210 | 2454 &ptr[pos.col], count); |
7 | 2455 pos.col = 0; |
2456 pos.lnum++; | |
2457 } | |
2458 ptr = ml_get_buf(curbuf, pos.lnum, FALSE); | |
2459 count = oap->end.col - pos.col + 1; | |
33 | 2460 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count); |
7 | 2461 netbeans_inserted(curbuf, pos.lnum, pos.col, |
2210 | 2462 &ptr[pos.col], count); |
7 | 2463 } |
2464 #endif | |
2465 } | |
2466 } | |
2467 | |
2468 if (!did_change && oap->is_VIsual) | |
2469 /* No change: need to remove the Visual selection */ | |
2470 redraw_curbuf_later(INVERTED); | |
2471 | |
2472 /* | |
2473 * Set '[ and '] marks. | |
2474 */ | |
2475 curbuf->b_op_start = oap->start; | |
2476 curbuf->b_op_end = oap->end; | |
2477 | |
2478 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
|
2479 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
|
2480 oap->line_count), oap->line_count); |
7 | 2481 } |
2482 | |
2483 /* | |
1525 | 2484 * Invoke swapchar() on "length" bytes at position "pos". |
2485 * "pos" is advanced to just after the changed characters. | |
2486 * "length" is rounded up to include the whole last multi-byte character. | |
2487 * Also works correctly when the number of bytes changes. | |
2488 * Returns TRUE if some character was changed. | |
2489 */ | |
2490 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2491 swapchars(int op_type, pos_T *pos, int length) |
1525 | 2492 { |
2493 int todo; | |
2494 int did_change = 0; | |
2495 | |
2496 for (todo = length; todo > 0; --todo) | |
2497 { | |
2498 if (has_mbyte) | |
5288
46cf49cc9289
updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents:
5245
diff
changeset
|
2499 { |
46cf49cc9289
updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents:
5245
diff
changeset
|
2500 int len = (*mb_ptr2len)(ml_get_pos(pos)); |
46cf49cc9289
updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents:
5245
diff
changeset
|
2501 |
1525 | 2502 /* we're counting bytes, not characters */ |
5288
46cf49cc9289
updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents:
5245
diff
changeset
|
2503 if (len > 0) |
46cf49cc9289
updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents:
5245
diff
changeset
|
2504 todo -= len - 1; |
46cf49cc9289
updated for version 7.4b.020
Bram Moolenaar <bram@vim.org>
parents:
5245
diff
changeset
|
2505 } |
1525 | 2506 did_change |= swapchar(op_type, pos); |
2507 if (inc(pos) == -1) /* at end of file */ | |
2508 break; | |
2509 } | |
2510 return did_change; | |
2511 } | |
2512 | |
2513 /* | |
7 | 2514 * If op_type == OP_UPPER: make uppercase, |
2515 * if op_type == OP_LOWER: make lowercase, | |
2516 * if op_type == OP_ROT13: do rot13 encoding, | |
2517 * else swap case of character at 'pos' | |
2518 * returns TRUE when something actually changed. | |
2519 */ | |
2520 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2521 swapchar(int op_type, pos_T *pos) |
7 | 2522 { |
2523 int c; | |
2524 int nc; | |
2525 | |
2526 c = gchar_pos(pos); | |
2527 | |
2528 /* Only do rot13 encoding for ASCII characters. */ | |
2529 if (c >= 0x80 && op_type == OP_ROT13) | |
2530 return FALSE; | |
2531 | |
1525 | 2532 if (op_type == OP_UPPER && c == 0xdf |
2533 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0)) | |
493 | 2534 { |
2535 pos_T sp = curwin->w_cursor; | |
2536 | |
2537 /* Special handling of German sharp s: change to "SS". */ | |
2538 curwin->w_cursor = *pos; | |
2539 del_char(FALSE); | |
2540 ins_char('S'); | |
2541 ins_char('S'); | |
2542 curwin->w_cursor = sp; | |
2543 inc(pos); | |
2544 } | |
2545 | |
7 | 2546 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */ |
2547 return FALSE; | |
2548 nc = c; | |
2549 if (MB_ISLOWER(c)) | |
2550 { | |
2551 if (op_type == OP_ROT13) | |
2552 nc = ROT13(c, 'a'); | |
2553 else if (op_type != OP_LOWER) | |
2554 nc = MB_TOUPPER(c); | |
2555 } | |
2556 else if (MB_ISUPPER(c)) | |
2557 { | |
2558 if (op_type == OP_ROT13) | |
2559 nc = ROT13(c, 'A'); | |
2560 else if (op_type != OP_UPPER) | |
2561 nc = MB_TOLOWER(c); | |
2562 } | |
2563 if (nc != c) | |
2564 { | |
2565 if (enc_utf8 && (c >= 0x80 || nc >= 0x80)) | |
2566 { | |
2567 pos_T sp = curwin->w_cursor; | |
2568 | |
2569 curwin->w_cursor = *pos; | |
2451
0b8612c2814d
Fix: changing case of a character removed combining characters.
Bram Moolenaar <bram@vim.org>
parents:
2446
diff
changeset
|
2570 /* don't use del_char(), it also removes composing chars */ |
0b8612c2814d
Fix: changing case of a character removed combining characters.
Bram Moolenaar <bram@vim.org>
parents:
2446
diff
changeset
|
2571 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE); |
7 | 2572 ins_char(nc); |
2573 curwin->w_cursor = sp; | |
2574 } | |
2575 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
|
2576 PBYTE(*pos, nc); |
7 | 2577 return TRUE; |
2578 } | |
2579 return FALSE; | |
2580 } | |
2581 | |
2582 /* | |
2583 * op_insert - Insert and append operators for Visual mode. | |
2584 */ | |
2585 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2586 op_insert(oparg_T *oap, long count1) |
7 | 2587 { |
2588 long ins_len, pre_textlen = 0; | |
2589 char_u *firstline, *ins_text; | |
12329
0b10cff73322
patch 8.0.1044: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12327
diff
changeset
|
2590 colnr_T ind_pre = 0, ind_post; |
7 | 2591 struct block_def bd; |
2592 int i; | |
6579 | 2593 pos_T t1; |
7 | 2594 |
2595 /* edit() changes this - record it for OP_APPEND */ | |
2596 bd.is_MAX = (curwin->w_curswant == MAXCOL); | |
2597 | |
2598 /* vis block is still marked. Get rid of it now. */ | |
2599 curwin->w_cursor.lnum = oap->start.lnum; | |
2600 update_screen(INVERTED); | |
2601 | |
2602 if (oap->block_mode) | |
2603 { | |
2604 /* When 'virtualedit' is used, need to insert the extra spaces before | |
2605 * doing block_prep(). When only "block" is used, virtual edit is | |
2606 * already disabled, but still need it when calling | |
2607 * coladvance_force(). */ | |
2608 if (curwin->w_cursor.coladd > 0) | |
2609 { | |
2610 int old_ve_flags = ve_flags; | |
2611 | |
2612 ve_flags = VE_ALL; | |
2613 if (u_save_cursor() == FAIL) | |
2614 return; | |
2615 coladvance_force(oap->op_type == OP_APPEND | |
2616 ? oap->end_vcol + 1 : getviscol()); | |
2617 if (oap->op_type == OP_APPEND) | |
2618 --curwin->w_cursor.col; | |
2619 ve_flags = old_ve_flags; | |
2620 } | |
2621 /* Get the info about the block before entering the text */ | |
2622 block_prep(oap, &bd, oap->start.lnum, TRUE); | |
12323
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
2623 /* Get indent information */ |
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
2624 ind_pre = (colnr_T)getwhitecols_curline(); |
7 | 2625 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
|
2626 |
7 | 2627 if (oap->op_type == OP_APPEND) |
2628 firstline += bd.textlen; | |
2629 pre_textlen = (long)STRLEN(firstline); | |
2630 } | |
2631 | |
2632 if (oap->op_type == OP_APPEND) | |
2633 { | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
2634 if (oap->block_mode && curwin->w_cursor.coladd == 0) |
7 | 2635 { |
2636 /* Move the cursor to the character right of the block. */ | |
2637 curwin->w_set_curswant = TRUE; | |
2638 while (*ml_get_cursor() != NUL | |
2639 && (curwin->w_cursor.col < bd.textcol + bd.textlen)) | |
2640 ++curwin->w_cursor.col; | |
2641 if (bd.is_short && !bd.is_MAX) | |
2642 { | |
2643 /* First line was too short, make it longer and adjust the | |
2644 * values in "bd". */ | |
2645 if (u_save_cursor() == FAIL) | |
2646 return; | |
2647 for (i = 0; i < bd.endspaces; ++i) | |
2648 ins_char(' '); | |
2649 bd.textlen += bd.endspaces; | |
2650 } | |
2651 } | |
2652 else | |
2653 { | |
2654 curwin->w_cursor = oap->end; | |
893 | 2655 check_cursor_col(); |
7 | 2656 |
2657 /* 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
|
2658 if (!LINEEMPTY(curwin->w_cursor.lnum) |
7 | 2659 && oap->start_vcol != oap->end_vcol) |
2660 inc_cursor(); | |
2661 } | |
2662 } | |
2663 | |
6579 | 2664 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
|
2665 (void)edit(NUL, FALSE, (linenr_T)count1); |
7 | 2666 |
6579 | 2667 /* When a tab was inserted, and the characters in front of the tab |
2668 * have been converted to a tab as well, the column of the cursor | |
2669 * might have actually been reduced, so need to adjust here. */ | |
2670 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
|
2671 && LT_POS(curbuf->b_op_start_orig, t1)) |
6579 | 2672 oap->start = curbuf->b_op_start_orig; |
2673 | |
1477 | 2674 /* If user has moved off this line, we don't know what to do, so do |
2675 * nothing. | |
2676 * Also don't repeat the insert when Insert mode ended with CTRL-C. */ | |
2677 if (curwin->w_cursor.lnum != oap->start.lnum || got_int) | |
7 | 2678 return; |
2679 | |
2680 if (oap->block_mode) | |
2681 { | |
2682 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
|
2683 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
|
2684 size_t len; |
7ed76dcf0d94
patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents:
13620
diff
changeset
|
2685 int add; |
7 | 2686 |
12327
17ed65e87db1
patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2687 /* If indent kicked in, the firstline might have changed |
17ed65e87db1
patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2688 * but only do that, if the indent actually increased. */ |
17ed65e87db1
patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2689 ind_post = (colnr_T)getwhitecols_curline(); |
17ed65e87db1
patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2690 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
|
2691 { |
17ed65e87db1
patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2692 bd.textcol += ind_post - ind_pre; |
17ed65e87db1
patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2693 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
|
2694 did_indent = TRUE; |
12327
17ed65e87db1
patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2695 } |
17ed65e87db1
patch 8.0.1043: warning for uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
12323
diff
changeset
|
2696 |
5471 | 2697 /* The user may have moved the cursor before inserting something, try |
13620
4faf77b96432
patch 8.0.1682: auto indenting breaks inserting a block
Christian Brabandt <cb@256bit.org>
parents:
13614
diff
changeset
|
2698 * to adjust the block for that. But only do it, if the difference |
4faf77b96432
patch 8.0.1682: auto indenting breaks inserting a block
Christian Brabandt <cb@256bit.org>
parents:
13614
diff
changeset
|
2699 * does not come from indent kicking in. */ |
4faf77b96432
patch 8.0.1682: auto indenting breaks inserting a block
Christian Brabandt <cb@256bit.org>
parents:
13614
diff
changeset
|
2700 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
|
2701 && !bd.is_MAX && !did_indent) |
5471 | 2702 { |
2703 if (oap->op_type == OP_INSERT | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
2704 && oap->start.col + oap->start.coladd |
5730 | 2705 != curbuf->b_op_start_orig.col |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
2706 + curbuf->b_op_start_orig.coladd) |
5471 | 2707 { |
6579 | 2708 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
|
2709 curbuf->b_op_start_orig.coladd); |
5680 | 2710 oap->start.col = curbuf->b_op_start_orig.col; |
6579 | 2711 pre_textlen -= t - oap->start_vcol; |
2712 oap->start_vcol = t; | |
5471 | 2713 } |
2714 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
|
2715 && oap->end.col + oap->end.coladd |
5730 | 2716 >= curbuf->b_op_start_orig.col |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
2717 + curbuf->b_op_start_orig.coladd) |
5471 | 2718 { |
6579 | 2719 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
|
2720 curbuf->b_op_start_orig.coladd); |
5680 | 2721 oap->start.col = curbuf->b_op_start_orig.col; |
5471 | 2722 /* reset pre_textlen to the value of OP_INSERT */ |
2723 pre_textlen += bd.textlen; | |
6579 | 2724 pre_textlen -= t - oap->start_vcol; |
2725 oap->start_vcol = t; | |
5471 | 2726 oap->op_type = OP_INSERT; |
2727 } | |
2728 } | |
2729 | |
7 | 2730 /* |
2731 * Spaces and tabs in the indent may have changed to other spaces and | |
1392 | 2732 * tabs. Get the starting column again and correct the length. |
7 | 2733 * Don't do this when "$" used, end-of-line will have changed. |
2734 */ | |
2735 block_prep(oap, &bd2, oap->start.lnum, TRUE); | |
2736 if (!bd.is_MAX || bd2.textlen < bd.textlen) | |
2737 { | |
2738 if (oap->op_type == OP_APPEND) | |
2739 { | |
2740 pre_textlen += bd2.textlen - bd.textlen; | |
2741 if (bd2.endspaces) | |
2742 --bd2.textlen; | |
2743 } | |
2744 bd.textcol = bd2.textcol; | |
2745 bd.textlen = bd2.textlen; | |
2746 } | |
2747 | |
2748 /* | |
2749 * Subsequent calls to ml_get() flush the firstline data - take a | |
2750 * copy of the required string. | |
2751 */ | |
13814
7ed76dcf0d94
patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents:
13620
diff
changeset
|
2752 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
|
2753 len = STRLEN(firstline); |
7ed76dcf0d94
patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents:
13620
diff
changeset
|
2754 add = bd.textcol; |
7 | 2755 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
|
2756 add += bd.textlen; |
7ed76dcf0d94
patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents:
13620
diff
changeset
|
2757 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
|
2758 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
|
2759 else |
7ed76dcf0d94
patch 8.0.1779: deleting in a block selection causes problems
Christian Brabandt <cb@256bit.org>
parents:
13620
diff
changeset
|
2760 firstline += add; |
3421 | 2761 if (pre_textlen >= 0 |
2762 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0) | |
7 | 2763 { |
2764 ins_text = vim_strnsave(firstline, (int)ins_len); | |
2765 if (ins_text != NULL) | |
2766 { | |
2767 /* block handled here */ | |
2768 if (u_save(oap->start.lnum, | |
2769 (linenr_T)(oap->end.lnum + 1)) == OK) | |
2770 block_insert(oap, ins_text, (oap->op_type == OP_INSERT), | |
2771 &bd); | |
2772 | |
2773 curwin->w_cursor.col = oap->start.col; | |
2774 check_cursor(); | |
2775 vim_free(ins_text); | |
2776 } | |
2777 } | |
2778 } | |
2779 } | |
2780 | |
2781 /* | |
2782 * op_change - handle a change operation | |
2783 * | |
2784 * return TRUE if edit() returns because of a CTRL-O command | |
2785 */ | |
2786 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2787 op_change(oparg_T *oap) |
7 | 2788 { |
2789 colnr_T l; | |
2790 int retval; | |
2791 long offset; | |
2792 linenr_T linenr; | |
1392 | 2793 long ins_len; |
2794 long pre_textlen = 0; | |
2795 long pre_indent = 0; | |
7 | 2796 char_u *firstline; |
2797 char_u *ins_text, *newp, *oldp; | |
2798 struct block_def bd; | |
2799 | |
2800 l = oap->start.col; | |
2801 if (oap->motion_type == MLINE) | |
2802 { | |
2803 l = 0; | |
2804 #ifdef FEAT_SMARTINDENT | |
2805 if (!p_paste && curbuf->b_p_si | |
2806 # ifdef FEAT_CINDENT | |
2807 && !curbuf->b_p_cin | |
2808 # endif | |
2809 ) | |
2810 can_si = TRUE; /* It's like opening a new line, do si */ | |
2811 #endif | |
2812 } | |
2813 | |
2814 /* First delete the text in the region. In an empty buffer only need to | |
2815 * save for undo */ | |
2816 if (curbuf->b_ml.ml_flags & ML_EMPTY) | |
2817 { | |
2818 if (u_save_cursor() == FAIL) | |
2819 return FALSE; | |
2820 } | |
2821 else if (op_delete(oap) == FAIL) | |
2822 return FALSE; | |
2823 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11065
diff
changeset
|
2824 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum) |
7 | 2825 && !virtual_op) |
2826 inc_cursor(); | |
2827 | |
2828 /* check for still on same line (<CR> in inserted text meaningless) */ | |
2829 /* skip blank lines too */ | |
2830 if (oap->block_mode) | |
2831 { | |
2832 /* Add spaces before getting the current line length. */ | |
2833 if (virtual_op && (curwin->w_cursor.coladd > 0 | |
2834 || gchar_cursor() == NUL)) | |
2835 coladvance_force(getviscol()); | |
1392 | 2836 firstline = ml_get(oap->start.lnum); |
2837 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
|
2838 pre_indent = (long)getwhitecols(firstline); |
7 | 2839 bd.textcol = curwin->w_cursor.col; |
2840 } | |
2841 | |
2842 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) | |
2843 if (oap->motion_type == MLINE) | |
2844 fix_indent(); | |
2845 #endif | |
2846 | |
2847 retval = edit(NUL, FALSE, (linenr_T)1); | |
2848 | |
2849 /* | |
39 | 2850 * In Visual block mode, handle copying the new text to all lines of the |
7 | 2851 * block. |
1477 | 2852 * Don't repeat the insert when Insert mode ended with CTRL-C. |
7 | 2853 */ |
1477 | 2854 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int) |
7 | 2855 { |
1392 | 2856 /* Auto-indenting may have changed the indent. If the cursor was past |
2857 * the indent, exclude that indent change from the inserted text. */ | |
7 | 2858 firstline = ml_get(oap->start.lnum); |
1403 | 2859 if (bd.textcol > (colnr_T)pre_indent) |
7 | 2860 { |
12323
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
2861 long new_indent = (long)getwhitecols(firstline); |
1392 | 2862 |
2863 pre_textlen += new_indent - pre_indent; | |
2864 bd.textcol += new_indent - pre_indent; | |
2865 } | |
2866 | |
2867 ins_len = (long)STRLEN(firstline) - pre_textlen; | |
2868 if (ins_len > 0) | |
2869 { | |
2870 /* Subsequent calls to ml_get() flush the firstline data - take a | |
2871 * copy of the inserted text. */ | |
7 | 2872 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL) |
2873 { | |
419 | 2874 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len); |
7 | 2875 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum; |
2876 linenr++) | |
2877 { | |
2878 block_prep(oap, &bd, linenr, TRUE); | |
2879 if (!bd.is_short || virtual_op) | |
2880 { | |
2881 pos_T vpos; | |
2882 | |
2883 /* If the block starts in virtual space, count the | |
2884 * initial coladd offset as part of "startspaces" */ | |
2885 if (bd.is_short) | |
2886 { | |
1982 | 2887 vpos.lnum = linenr; |
7 | 2888 (void)getvpos(&vpos, oap->start_vcol); |
2889 } | |
2890 else | |
2891 vpos.coladd = 0; | |
2892 oldp = ml_get(linenr); | |
2893 newp = alloc_check((unsigned)(STRLEN(oldp) | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
2894 + vpos.coladd + ins_len + 1)); |
7 | 2895 if (newp == NULL) |
2896 continue; | |
2897 /* copy up to block start */ | |
2898 mch_memmove(newp, oldp, (size_t)bd.textcol); | |
2899 offset = bd.textcol; | |
6929 | 2900 vim_memset(newp + offset, ' ', (size_t)vpos.coladd); |
7 | 2901 offset += vpos.coladd; |
2902 mch_memmove(newp + offset, ins_text, (size_t)ins_len); | |
2903 offset += ins_len; | |
2904 oldp += bd.textcol; | |
1622 | 2905 STRMOVE(newp + offset, oldp); |
7 | 2906 ml_replace(linenr, newp, FALSE); |
2907 } | |
2908 } | |
2909 check_cursor(); | |
2910 | |
2911 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L); | |
2912 } | |
2913 vim_free(ins_text); | |
2914 } | |
2915 } | |
2916 | |
2917 return retval; | |
2918 } | |
2919 | |
2920 /* | |
2921 * set all the yank registers to empty (called from main()) | |
2922 */ | |
2923 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2924 init_yank(void) |
7 | 2925 { |
2926 int i; | |
2927 | |
2928 for (i = 0; i < NUM_REGISTERS; ++i) | |
2929 y_regs[i].y_array = NULL; | |
2930 } | |
2931 | |
356 | 2932 #if defined(EXITFREE) || defined(PROTO) |
2933 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2934 clear_registers(void) |
356 | 2935 { |
2936 int i; | |
2937 | |
2938 for (i = 0; i < NUM_REGISTERS; ++i) | |
2939 { | |
2940 y_current = &y_regs[i]; | |
2941 if (y_current->y_array != NULL) | |
2942 free_yank_all(); | |
2943 } | |
2944 } | |
2945 #endif | |
2946 | |
7 | 2947 /* |
2948 * Free "n" lines from the current yank register. | |
2949 * Called for normal freeing and in case of error. | |
2950 */ | |
2951 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2952 free_yank(long n) |
7 | 2953 { |
2954 if (y_current->y_array != NULL) | |
2955 { | |
2956 long i; | |
2957 | |
2958 for (i = n; --i >= 0; ) | |
2959 { | |
2960 #ifdef AMIGA /* only for very slow machines */ | |
2961 if ((i & 1023) == 1023) /* this may take a while */ | |
2962 { | |
2963 /* | |
2964 * This message should never cause a hit-return message. | |
2965 * Overwrite this message with any next message. | |
2966 */ | |
2967 ++no_wait_return; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
2968 smsg(_("freeing %ld lines"), i + 1); |
7 | 2969 --no_wait_return; |
2970 msg_didout = FALSE; | |
2971 msg_col = 0; | |
2972 } | |
2973 #endif | |
2974 vim_free(y_current->y_array[i]); | |
2975 } | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13202
diff
changeset
|
2976 VIM_CLEAR(y_current->y_array); |
7 | 2977 #ifdef AMIGA |
2978 if (n >= 1000) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
2979 msg(""); |
7 | 2980 #endif |
2981 } | |
2982 } | |
2983 | |
2984 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2985 free_yank_all(void) |
7 | 2986 { |
2987 free_yank(y_current->y_size); | |
2988 } | |
2989 | |
2990 /* | |
2991 * Yank the text between "oap->start" and "oap->end" into a yank register. | |
2992 * If we are to append (uppercase register), we first yank into a new yank | |
2993 * register and then concatenate the old and the new one (so we keep the old | |
2994 * one in case of out-of-memory). | |
2995 * | |
5245
8c6615a30951
updated for version 7.4a.047
Bram Moolenaar <bram@vim.org>
parents:
5182
diff
changeset
|
2996 * Return FAIL for failure, OK otherwise. |
7 | 2997 */ |
2998 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2999 op_yank(oparg_T *oap, int deleting, int mess) |
7 | 3000 { |
3001 long y_idx; /* index in y_array[] */ | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3002 yankreg_T *curr; /* copy of y_current */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3003 yankreg_T newreg; /* new yank register when appending */ |
7 | 3004 char_u **new_ptr; |
3005 linenr_T lnum; /* current line number */ | |
3006 long j; | |
3007 int yanktype = oap->motion_type; | |
3008 long yanklines = oap->line_count; | |
3009 linenr_T yankendlnum = oap->end.lnum; | |
3010 char_u *p; | |
3011 char_u *pnew; | |
3012 struct block_def bd; | |
2658 | 3013 #if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
2654 | 3014 int did_star = FALSE; |
2658 | 3015 #endif |
7 | 3016 |
3017 /* check for read-only register */ | |
3018 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE)) | |
3019 { | |
3020 beep_flush(); | |
3021 return FAIL; | |
3022 } | |
3023 if (oap->regname == '_') /* black hole: nothing to do */ | |
3024 return OK; | |
3025 | |
3026 #ifdef FEAT_CLIPBOARD | |
3027 if (!clip_star.available && oap->regname == '*') | |
3028 oap->regname = 0; | |
3029 else if (!clip_plus.available && oap->regname == '+') | |
3030 oap->regname = 0; | |
3031 #endif | |
3032 | |
3033 if (!deleting) /* op_delete() already set y_current */ | |
3034 get_yank_register(oap->regname, TRUE); | |
3035 | |
3036 curr = y_current; | |
3037 /* append to existing contents */ | |
3038 if (y_append && y_current->y_array != NULL) | |
3039 y_current = &newreg; | |
3040 else | |
3041 free_yank_all(); /* free previously yanked lines */ | |
3042 | |
593 | 3043 /* |
3044 * If the cursor was in column 1 before and after the movement, and the | |
3045 * operator is not inclusive, the yank is always linewise. | |
3046 */ | |
7 | 3047 if ( oap->motion_type == MCHAR |
3048 && oap->start.col == 0 | |
3049 && !oap->inclusive | |
3050 && (!oap->is_VIsual || *p_sel == 'o') | |
50 | 3051 && !oap->block_mode |
7 | 3052 && oap->end.col == 0 |
3053 && yanklines > 1) | |
3054 { | |
3055 yanktype = MLINE; | |
3056 --yankendlnum; | |
3057 --yanklines; | |
3058 } | |
3059 | |
3060 y_current->y_size = yanklines; | |
3061 y_current->y_type = yanktype; /* set the yank register type */ | |
3062 y_current->y_width = 0; | |
3063 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) * | |
3064 yanklines), TRUE); | |
3065 if (y_current->y_array == NULL) | |
3066 { | |
3067 y_current = curr; | |
3068 return FAIL; | |
3069 } | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3070 #ifdef FEAT_VIMINFO |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3071 y_current->y_time_set = vim_time(); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3072 #endif |
7 | 3073 |
3074 y_idx = 0; | |
3075 lnum = oap->start.lnum; | |
3076 | |
3077 if (oap->block_mode) | |
3078 { | |
3079 /* Visual block mode */ | |
3080 y_current->y_type = MBLOCK; /* set the yank register type */ | |
3081 y_current->y_width = oap->end_vcol - oap->start_vcol; | |
3082 | |
3083 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0) | |
3084 y_current->y_width--; | |
3085 } | |
3086 | |
3087 for ( ; lnum <= yankendlnum; lnum++, y_idx++) | |
3088 { | |
3089 switch (y_current->y_type) | |
3090 { | |
3091 case MBLOCK: | |
3092 block_prep(oap, &bd, lnum, FALSE); | |
3093 if (yank_copy_line(&bd, y_idx) == FAIL) | |
3094 goto fail; | |
3095 break; | |
3096 | |
3097 case MLINE: | |
3098 if ((y_current->y_array[y_idx] = | |
3099 vim_strsave(ml_get(lnum))) == NULL) | |
3100 goto fail; | |
3101 break; | |
3102 | |
3103 case MCHAR: | |
3104 { | |
3105 colnr_T startcol = 0, endcol = MAXCOL; | |
3106 int is_oneChar = FALSE; | |
3107 colnr_T cs, ce; | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3108 |
7 | 3109 p = ml_get(lnum); |
3110 bd.startspaces = 0; | |
3111 bd.endspaces = 0; | |
3112 | |
3113 if (lnum == oap->start.lnum) | |
3114 { | |
3115 startcol = oap->start.col; | |
3116 if (virtual_op) | |
3117 { | |
3118 getvcol(curwin, &oap->start, &cs, NULL, &ce); | |
3119 if (ce != cs && oap->start.coladd > 0) | |
3120 { | |
3121 /* Part of a tab selected -- but don't | |
3122 * double-count it. */ | |
3123 bd.startspaces = (ce - cs + 1) | |
3124 - oap->start.coladd; | |
3125 startcol++; | |
3126 } | |
3127 } | |
3128 } | |
3129 | |
3130 if (lnum == oap->end.lnum) | |
3131 { | |
3132 endcol = oap->end.col; | |
3133 if (virtual_op) | |
3134 { | |
3135 getvcol(curwin, &oap->end, &cs, NULL, &ce); | |
3136 if (p[endcol] == NUL || (cs + oap->end.coladd < ce | |
3137 /* Don't add space for double-wide | |
3138 * char; endcol will be on last byte | |
3139 * of multi-byte char. */ | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
3140 && (*mb_head_off)(p, p + endcol) == 0)) |
7 | 3141 { |
3142 if (oap->start.lnum == oap->end.lnum | |
3143 && oap->start.col == oap->end.col) | |
3144 { | |
3145 /* Special case: inside a single char */ | |
3146 is_oneChar = TRUE; | |
3147 bd.startspaces = oap->end.coladd | |
3148 - oap->start.coladd + oap->inclusive; | |
3149 endcol = startcol; | |
3150 } | |
3151 else | |
3152 { | |
3153 bd.endspaces = oap->end.coladd | |
3154 + oap->inclusive; | |
3155 endcol -= oap->inclusive; | |
3156 } | |
3157 } | |
3158 } | |
3159 } | |
3510 | 3160 if (endcol == MAXCOL) |
3161 endcol = (colnr_T)STRLEN(p); | |
15636
6f1c7e9a6393
patch 8.1.0826: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15597
diff
changeset
|
3162 if (startcol > endcol || is_oneChar) |
7 | 3163 bd.textlen = 0; |
3164 else | |
3165 bd.textlen = endcol - startcol + oap->inclusive; | |
3166 bd.textstart = p + startcol; | |
3167 if (yank_copy_line(&bd, y_idx) == FAIL) | |
3168 goto fail; | |
3169 break; | |
3170 } | |
3171 /* NOTREACHED */ | |
3172 } | |
3173 } | |
3174 | |
3175 if (curr != y_current) /* append the new block to the old block */ | |
3176 { | |
3177 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) * | |
3178 (curr->y_size + y_current->y_size)), TRUE); | |
3179 if (new_ptr == NULL) | |
3180 goto fail; | |
3181 for (j = 0; j < curr->y_size; ++j) | |
3182 new_ptr[j] = curr->y_array[j]; | |
3183 vim_free(curr->y_array); | |
3184 curr->y_array = new_ptr; | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3185 #ifdef FEAT_VIMINFO |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3186 curr->y_time_set = vim_time(); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3187 #endif |
7 | 3188 |
3189 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */ | |
3190 curr->y_type = MLINE; | |
3191 | |
164 | 3192 /* Concatenate the last line of the old block with the first line of |
3193 * the new block, unless being Vi compatible. */ | |
3194 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL) | |
7 | 3195 { |
3196 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1]) | |
3197 + STRLEN(y_current->y_array[0]) + 1), TRUE); | |
3198 if (pnew == NULL) | |
3199 { | |
3200 y_idx = y_current->y_size - 1; | |
3201 goto fail; | |
3202 } | |
3203 STRCPY(pnew, curr->y_array[--j]); | |
3204 STRCAT(pnew, y_current->y_array[0]); | |
3205 vim_free(curr->y_array[j]); | |
3206 vim_free(y_current->y_array[0]); | |
3207 curr->y_array[j++] = pnew; | |
3208 y_idx = 1; | |
3209 } | |
3210 else | |
3211 y_idx = 0; | |
3212 while (y_idx < y_current->y_size) | |
3213 curr->y_array[j++] = y_current->y_array[y_idx++]; | |
3214 curr->y_size = j; | |
3215 vim_free(y_current->y_array); | |
3216 y_current = curr; | |
3217 } | |
5981 | 3218 if (curwin->w_p_rnu) |
3219 redraw_later(SOME_VALID); /* cursor moved to start */ | |
7 | 3220 if (mess) /* Display message about yank? */ |
3221 { | |
3222 if (yanktype == MCHAR | |
3223 && !oap->block_mode | |
3224 && yanklines == 1) | |
3225 yanklines = 0; | |
3226 /* Some versions of Vi use ">=" here, some don't... */ | |
3227 if (yanklines > p_report) | |
3228 { | |
11682
b9928ef8632f
patch 8.0.0724: the message for yanking doesn't indicate the register
Christian Brabandt <cb@256bit.org>
parents:
11597
diff
changeset
|
3229 char namebuf[100]; |
b9928ef8632f
patch 8.0.0724: the message for yanking doesn't indicate the register
Christian Brabandt <cb@256bit.org>
parents:
11597
diff
changeset
|
3230 |
b9928ef8632f
patch 8.0.0724: the message for yanking doesn't indicate the register
Christian Brabandt <cb@256bit.org>
parents:
11597
diff
changeset
|
3231 if (oap->regname == NUL) |
b9928ef8632f
patch 8.0.0724: the message for yanking doesn't indicate the register
Christian Brabandt <cb@256bit.org>
parents:
11597
diff
changeset
|
3232 *namebuf = NUL; |
b9928ef8632f
patch 8.0.0724: the message for yanking doesn't indicate the register
Christian Brabandt <cb@256bit.org>
parents:
11597
diff
changeset
|
3233 else |
b9928ef8632f
patch 8.0.0724: the message for yanking doesn't indicate the register
Christian Brabandt <cb@256bit.org>
parents:
11597
diff
changeset
|
3234 vim_snprintf(namebuf, sizeof(namebuf), |
11688
570f00932da8
patch 8.0.0727: message about what register to yank into is not translated
Christian Brabandt <cb@256bit.org>
parents:
11682
diff
changeset
|
3235 _(" into \"%c"), oap->regname); |
11682
b9928ef8632f
patch 8.0.0724: the message for yanking doesn't indicate the register
Christian Brabandt <cb@256bit.org>
parents:
11597
diff
changeset
|
3236 |
7 | 3237 /* redisplay now, so message is not deleted */ |
3238 update_topline_redraw(); | |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
3239 if (oap->block_mode) |
205 | 3240 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
3241 smsg(NGETTEXT("block of %ld line yanked%s", |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
3242 "block of %ld lines yanked%s", yanklines), |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
3243 yanklines, namebuf); |
205 | 3244 } |
7 | 3245 else |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
3246 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
3247 smsg(NGETTEXT("%ld line yanked%s", |
14585
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
3248 "%ld lines yanked%s", yanklines), |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
3249 yanklines, namebuf); |
c8f07e8b273e
patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents:
14424
diff
changeset
|
3250 } |
7 | 3251 } |
3252 } | |
3253 | |
3254 /* | |
3255 * Set "'[" and "']" marks. | |
3256 */ | |
3257 curbuf->b_op_start = oap->start; | |
3258 curbuf->b_op_end = oap->end; | |
5735 | 3259 if (yanktype == MLINE && !oap->block_mode) |
36 | 3260 { |
3261 curbuf->b_op_start.col = 0; | |
3262 curbuf->b_op_end.col = MAXCOL; | |
3263 } | |
7 | 3264 |
3265 #ifdef FEAT_CLIPBOARD | |
3266 /* | |
3267 * If we were yanking to the '*' register, send result to clipboard. | |
3268 * If no register was specified, and "unnamed" in 'clipboard', make a copy | |
3269 * to the '*' register. | |
3270 */ | |
3271 if (clip_star.available | |
3272 && (curr == &(y_regs[STAR_REGISTER]) | |
2654 | 3273 || (!deleting && oap->regname == 0 |
6116 | 3274 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED)))) |
7 | 3275 { |
3276 if (curr != &(y_regs[STAR_REGISTER])) | |
3277 /* Copy the text from register 0 to the clipboard register. */ | |
3278 copy_yank_reg(&(y_regs[STAR_REGISTER])); | |
3279 | |
3280 clip_own_selection(&clip_star); | |
3281 clip_gen_set_selection(&clip_star); | |
2658 | 3282 # ifdef FEAT_X11 |
2654 | 3283 did_star = TRUE; |
2658 | 3284 # endif |
7 | 3285 } |
3286 | |
3287 # ifdef FEAT_X11 | |
3288 /* | |
3289 * If we were yanking to the '+' register, send result to selection. | |
3290 * Also copy to the '*' register, in case auto-select is off. | |
3291 */ | |
2654 | 3292 if (clip_plus.available |
3293 && (curr == &(y_regs[PLUS_REGISTER]) | |
3294 || (!deleting && oap->regname == 0 | |
6116 | 3295 && ((clip_unnamed | clip_unnamed_saved) & |
3296 CLIP_UNNAMED_PLUS)))) | |
7 | 3297 { |
2654 | 3298 if (curr != &(y_regs[PLUS_REGISTER])) |
3299 /* Copy the text from register 0 to the clipboard register. */ | |
3300 copy_yank_reg(&(y_regs[PLUS_REGISTER])); | |
3301 | |
7 | 3302 clip_own_selection(&clip_plus); |
3303 clip_gen_set_selection(&clip_plus); | |
12642
d1cbe8cb05d0
patch 8.0.1199: when 'clipboard' is "autoselectplus" star register is set
Christian Brabandt <cb@256bit.org>
parents:
12329
diff
changeset
|
3304 if (!clip_isautosel_star() && !clip_isautosel_plus() |
d1cbe8cb05d0
patch 8.0.1199: when 'clipboard' is "autoselectplus" star register is set
Christian Brabandt <cb@256bit.org>
parents:
12329
diff
changeset
|
3305 && !did_star && curr == &(y_regs[PLUS_REGISTER])) |
7 | 3306 { |
3307 copy_yank_reg(&(y_regs[STAR_REGISTER])); | |
3308 clip_own_selection(&clip_star); | |
3309 clip_gen_set_selection(&clip_star); | |
3310 } | |
3311 } | |
3312 # endif | |
3313 #endif | |
3314 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13254
diff
changeset
|
3315 #if defined(FEAT_EVAL) |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
3316 if (!deleting && has_textyankpost()) |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
3317 yank_do_autocmd(oap, y_current); |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
3318 #endif |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12996
diff
changeset
|
3319 |
7 | 3320 return OK; |
3321 | |
3322 fail: /* free the allocated lines */ | |
3323 free_yank(y_idx + 1); | |
3324 y_current = curr; | |
3325 return FAIL; | |
3326 } | |
3327 | |
3328 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3329 yank_copy_line(struct block_def *bd, long y_idx) |
7 | 3330 { |
3331 char_u *pnew; | |
3332 | |
3333 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1)) | |
3334 == NULL) | |
3335 return FAIL; | |
3336 y_current->y_array[y_idx] = pnew; | |
6929 | 3337 vim_memset(pnew, ' ', (size_t)bd->startspaces); |
7 | 3338 pnew += bd->startspaces; |
3339 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen); | |
3340 pnew += bd->textlen; | |
6929 | 3341 vim_memset(pnew, ' ', (size_t)bd->endspaces); |
7 | 3342 pnew += bd->endspaces; |
3343 *pnew = NUL; | |
3344 return OK; | |
3345 } | |
3346 | |
3347 #ifdef FEAT_CLIPBOARD | |
3348 /* | |
3349 * Make a copy of the y_current register to register "reg". | |
3350 */ | |
3351 static void | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3352 copy_yank_reg(yankreg_T *reg) |
7 | 3353 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3354 yankreg_T *curr = y_current; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
3355 long j; |
7 | 3356 |
3357 y_current = reg; | |
3358 free_yank_all(); | |
3359 *y_current = *curr; | |
3360 y_current->y_array = (char_u **)lalloc_clear( | |
3361 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE); | |
3362 if (y_current->y_array == NULL) | |
3363 y_current->y_size = 0; | |
3364 else | |
3365 for (j = 0; j < y_current->y_size; ++j) | |
3366 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL) | |
3367 { | |
3368 free_yank(j); | |
3369 y_current->y_size = 0; | |
3370 break; | |
3371 } | |
3372 y_current = curr; | |
3373 } | |
3374 #endif | |
3375 | |
3376 /* | |
140 | 3377 * Put contents of register "regname" into the text. |
3378 * Caller must check "regname" to be valid! | |
3379 * "flags": PUT_FIXINDENT make indent look nice | |
3380 * PUT_CURSEND leave cursor after end of new text | |
3381 * PUT_LINE force linewise put (":put") | |
7 | 3382 */ |
3383 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3384 do_put( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3385 int regname, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3386 int dir, /* BACKWARD for 'P', FORWARD for 'p' */ |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3387 long count, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3388 int flags) |
7 | 3389 { |
3390 char_u *ptr; | |
3391 char_u *newp, *oldp; | |
3392 int yanklen; | |
3393 int totlen = 0; /* init for gcc */ | |
3394 linenr_T lnum; | |
3395 colnr_T col; | |
3396 long i; /* index in y_array[] */ | |
3397 int y_type; | |
3398 long y_size; | |
3399 int oldlen; | |
3400 long y_width = 0; | |
3401 colnr_T vcol; | |
3402 int delcount; | |
3403 int incr = 0; | |
3404 long j; | |
3405 struct block_def bd; | |
3406 char_u **y_array = NULL; | |
3407 long nr_lines = 0; | |
3408 pos_T new_cursor; | |
3409 int indent; | |
3410 int orig_indent = 0; /* init for gcc */ | |
3411 int indent_diff = 0; /* init for gcc */ | |
3412 int first_indent = TRUE; | |
3413 int lendiff = 0; | |
3414 pos_T old_pos; | |
3415 char_u *insert_string = NULL; | |
3416 int allocated = FALSE; | |
3417 long cnt; | |
3418 | |
3419 #ifdef FEAT_CLIPBOARD | |
3420 /* Adjust register name for "unnamed" in 'clipboard'. */ | |
3421 adjust_clip_reg(®name); | |
3422 (void)may_get_selection(regname); | |
3423 #endif | |
3424 | |
3425 if (flags & PUT_FIXINDENT) | |
3426 orig_indent = get_indent(); | |
3427 | |
3428 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */ | |
3429 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */ | |
3430 | |
3431 /* | |
3432 * Using inserted text works differently, because the register includes | |
3433 * special characters (newlines, etc.). | |
3434 */ | |
3435 if (regname == '.') | |
3436 { | |
10494
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
10486
diff
changeset
|
3437 if (VIsual_active) |
1e700d72561d
commit https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
Christian Brabandt <cb@256bit.org>
parents:
10486
diff
changeset
|
3438 stuffcharReadbuff(VIsual_mode); |
7 | 3439 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') : |
3440 (count == -1 ? 'O' : 'i')), count, FALSE); | |
3441 /* Putting the text is done later, so can't really move the cursor to | |
3442 * the next character. Use "l" to simulate it. */ | |
3443 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL) | |
3444 stuffcharReadbuff('l'); | |
3445 return; | |
3446 } | |
3447 | |
3448 /* | |
3449 * For special registers '%' (file name), '#' (alternate file name) and | |
3450 * ':' (last command line), etc. we have to create a fake yank register. | |
3451 */ | |
3452 if (get_spec_reg(regname, &insert_string, &allocated, TRUE)) | |
3453 { | |
3454 if (insert_string == NULL) | |
3455 return; | |
3456 } | |
3457 | |
14202
51693b1a640e
patch 8.1.0118: duplicate error message for put command
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
3458 /* Autocommands may be executed when saving lines for undo. This might |
51693b1a640e
patch 8.1.0118: duplicate error message for put command
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
3459 * make "y_array" invalid, so we start undo now to avoid that. */ |
51693b1a640e
patch 8.1.0118: duplicate error message for put command
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
3460 if (u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1) == FAIL) |
51693b1a640e
patch 8.1.0118: duplicate error message for put command
Christian Brabandt <cb@256bit.org>
parents:
14175
diff
changeset
|
3461 goto end; |
4005 | 3462 |
7 | 3463 if (insert_string != NULL) |
3464 { | |
3465 y_type = MCHAR; | |
3466 #ifdef FEAT_EVAL | |
3467 if (regname == '=') | |
3468 { | |
3469 /* For the = register we need to split the string at NL | |
3093 | 3470 * characters. |
3471 * Loop twice: count the number of lines and save them. */ | |
7 | 3472 for (;;) |
3473 { | |
3474 y_size = 0; | |
3475 ptr = insert_string; | |
3476 while (ptr != NULL) | |
3477 { | |
3478 if (y_array != NULL) | |
3479 y_array[y_size] = ptr; | |
3480 ++y_size; | |
3481 ptr = vim_strchr(ptr, '\n'); | |
3482 if (ptr != NULL) | |
3483 { | |
3484 if (y_array != NULL) | |
3485 *ptr = NUL; | |
3486 ++ptr; | |
3093 | 3487 /* A trailing '\n' makes the register linewise. */ |
7 | 3488 if (*ptr == NUL) |
3489 { | |
3490 y_type = MLINE; | |
3491 break; | |
3492 } | |
3493 } | |
3494 } | |
3495 if (y_array != NULL) | |
3496 break; | |
3497 y_array = (char_u **)alloc((unsigned) | |
3498 (y_size * sizeof(char_u *))); | |
3499 if (y_array == NULL) | |
3500 goto end; | |
3501 } | |
3502 } | |
3503 else | |
3504 #endif | |
3505 { | |
3506 y_size = 1; /* use fake one-line yank register */ | |
3507 y_array = &insert_string; | |
3508 } | |
3509 } | |
3510 else | |
3511 { | |
3512 get_yank_register(regname, FALSE); | |
3513 | |
3514 y_type = y_current->y_type; | |
3515 y_width = y_current->y_width; | |
3516 y_size = y_current->y_size; | |
3517 y_array = y_current->y_array; | |
3518 } | |
3519 | |
3520 if (y_type == MLINE) | |
3521 { | |
3522 if (flags & PUT_LINE_SPLIT) | |
3523 { | |
6845 | 3524 char_u *p; |
3525 | |
7 | 3526 /* "p" or "P" in Visual mode: split the lines to put the text in |
3527 * between. */ | |
3528 if (u_save_cursor() == FAIL) | |
3529 goto end; | |
6845 | 3530 p = ml_get_cursor(); |
3531 if (dir == FORWARD && *p != NUL) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3532 MB_PTR_ADV(p); |
6845 | 3533 ptr = vim_strsave(p); |
7 | 3534 if (ptr == NULL) |
3535 goto end; | |
3536 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE); | |
3537 vim_free(ptr); | |
3538 | |
6845 | 3539 oldp = ml_get_curline(); |
3540 p = oldp + curwin->w_cursor.col; | |
3541 if (dir == FORWARD && *p != NUL) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3542 MB_PTR_ADV(p); |
6845 | 3543 ptr = vim_strnsave(oldp, p - oldp); |
7 | 3544 if (ptr == NULL) |
3545 goto end; | |
3546 ml_replace(curwin->w_cursor.lnum, ptr, FALSE); | |
3547 ++nr_lines; | |
3548 dir = FORWARD; | |
3549 } | |
3550 if (flags & PUT_LINE_FORWARD) | |
3551 { | |
3552 /* Must be "p" for a Visual block, put lines below the block. */ | |
692 | 3553 curwin->w_cursor = curbuf->b_visual.vi_end; |
7 | 3554 dir = FORWARD; |
3555 } | |
3556 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */ | |
3557 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */ | |
3558 } | |
3559 | |
3560 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */ | |
3561 y_type = MLINE; | |
3562 | |
3563 if (y_size == 0 || y_array == NULL) | |
3564 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
3565 semsg(_("E353: Nothing in register %s"), |
7 | 3566 regname == 0 ? (char_u *)"\"" : transchar(regname)); |
3567 goto end; | |
3568 } | |
3569 | |
3570 if (y_type == MBLOCK) | |
3571 { | |
3572 lnum = curwin->w_cursor.lnum + y_size + 1; | |
3573 if (lnum > curbuf->b_ml.ml_line_count) | |
3574 lnum = curbuf->b_ml.ml_line_count + 1; | |
3575 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL) | |
3576 goto end; | |
3577 } | |
5735 | 3578 else if (y_type == MLINE) |
7 | 3579 { |
3580 lnum = curwin->w_cursor.lnum; | |
3581 #ifdef FEAT_FOLDING | |
3582 /* Correct line number for closed fold. Don't move the cursor yet, | |
3583 * u_save() uses it. */ | |
3584 if (dir == BACKWARD) | |
3585 (void)hasFolding(lnum, &lnum, NULL); | |
3586 else | |
3587 (void)hasFolding(lnum, NULL, &lnum); | |
3588 #endif | |
3589 if (dir == FORWARD) | |
3590 ++lnum; | |
5053
35b6fc57a286
updated for version 7.3.1270
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3591 /* In an empty buffer the empty line is going to be replaced, include |
35b6fc57a286
updated for version 7.3.1270
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
3592 * it in the saved lines. */ |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11065
diff
changeset
|
3593 if ((BUFEMPTY() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL) |
7 | 3594 goto end; |
3595 #ifdef FEAT_FOLDING | |
3596 if (dir == FORWARD) | |
3597 curwin->w_cursor.lnum = lnum - 1; | |
3598 else | |
3599 curwin->w_cursor.lnum = lnum; | |
3600 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */ | |
3601 #endif | |
3602 } | |
3603 else if (u_save_cursor() == FAIL) | |
3604 goto end; | |
3605 | |
3606 yanklen = (int)STRLEN(y_array[0]); | |
3607 | |
3608 if (ve_flags == VE_ALL && y_type == MCHAR) | |
3609 { | |
3610 if (gchar_cursor() == TAB) | |
3611 { | |
3612 /* Don't need to insert spaces when "p" on the last position of a | |
3613 * tab or "P" on the first position. */ | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3614 #ifdef FEAT_VARTABS |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3615 int viscol = getviscol(); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3616 if (dir == FORWARD |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3617 ? tabstop_padding(viscol, curbuf->b_p_ts, |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3618 curbuf->b_p_vts_array) != 1 |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3619 : curwin->w_cursor.coladd > 0) |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3620 coladvance_force(viscol); |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3621 #else |
7 | 3622 if (dir == FORWARD |
3623 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1 | |
3624 : curwin->w_cursor.coladd > 0) | |
3625 coladvance_force(getviscol()); | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
14019
diff
changeset
|
3626 #endif |
7 | 3627 else |
3628 curwin->w_cursor.coladd = 0; | |
3629 } | |
3630 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL) | |
3631 coladvance_force(getviscol() + (dir == FORWARD)); | |
3632 } | |
3633 | |
3634 lnum = curwin->w_cursor.lnum; | |
3635 col = curwin->w_cursor.col; | |
3636 | |
3637 /* | |
3638 * Block mode | |
3639 */ | |
3640 if (y_type == MBLOCK) | |
3641 { | |
10664
94db9c08e206
patch 8.0.0222: blockwise put on multi-byte character misplaced
Christian Brabandt <cb@256bit.org>
parents:
10494
diff
changeset
|
3642 int c = gchar_cursor(); |
7 | 3643 colnr_T endcol2 = 0; |
3644 | |
3645 if (dir == FORWARD && c != NUL) | |
3646 { | |
3647 if (ve_flags == VE_ALL) | |
3648 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2); | |
3649 else | |
3650 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col); | |
3651 | |
3652 if (has_mbyte) | |
3653 /* move to start of next multi-byte character */ | |
474 | 3654 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor()); |
7 | 3655 else |
3656 if (c != TAB || ve_flags != VE_ALL) | |
3657 ++curwin->w_cursor.col; | |
3658 ++col; | |
3659 } | |
3660 else | |
3661 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2); | |
3662 | |
3663 col += curwin->w_cursor.coladd; | |
1304 | 3664 if (ve_flags == VE_ALL |
3665 && (curwin->w_cursor.coladd > 0 | |
3666 || endcol2 == curwin->w_cursor.col)) | |
7 | 3667 { |
3668 if (dir == FORWARD && c == NUL) | |
3669 ++col; | |
3670 if (dir != FORWARD && c != NUL) | |
3671 ++curwin->w_cursor.col; | |
3672 if (c == TAB) | |
3673 { | |
3674 if (dir == BACKWARD && curwin->w_cursor.col) | |
3675 curwin->w_cursor.col--; | |
3676 if (dir == FORWARD && col - 1 == endcol2) | |
3677 curwin->w_cursor.col++; | |
3678 } | |
3679 } | |
3680 curwin->w_cursor.coladd = 0; | |
699 | 3681 bd.textcol = 0; |
7 | 3682 for (i = 0; i < y_size; ++i) |
3683 { | |
3684 int spaces; | |
3685 char shortline; | |
3686 | |
3687 bd.startspaces = 0; | |
3688 bd.endspaces = 0; | |
3689 vcol = 0; | |
3690 delcount = 0; | |
3691 | |
3692 /* add a new line */ | |
3693 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) | |
3694 { | |
3695 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"", | |
3696 (colnr_T)1, FALSE) == FAIL) | |
3697 break; | |
3698 ++nr_lines; | |
3699 } | |
3700 /* get the old line and advance to the position to insert at */ | |
3701 oldp = ml_get_curline(); | |
3702 oldlen = (int)STRLEN(oldp); | |
3703 for (ptr = oldp; vcol < col && *ptr; ) | |
3704 { | |
3705 /* Count a tab for what it's worth (if list mode not on) */ | |
5995 | 3706 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol); |
7 | 3707 vcol += incr; |
3708 } | |
3709 bd.textcol = (colnr_T)(ptr - oldp); | |
3710 | |
3711 shortline = (vcol < col) || (vcol == col && !*ptr) ; | |
3712 | |
3713 if (vcol < col) /* line too short, padd with spaces */ | |
3714 bd.startspaces = col - vcol; | |
3715 else if (vcol > col) | |
3716 { | |
3717 bd.endspaces = vcol - col; | |
3718 bd.startspaces = incr - bd.endspaces; | |
3719 --bd.textcol; | |
3720 delcount = 1; | |
3721 if (has_mbyte) | |
3722 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol); | |
3723 if (oldp[bd.textcol] != TAB) | |
3724 { | |
3725 /* Only a Tab can be split into spaces. Other | |
3726 * characters will have to be moved to after the | |
3727 * block, causing misalignment. */ | |
3728 delcount = 0; | |
3729 bd.endspaces = 0; | |
3730 } | |
3731 } | |
3732 | |
3733 yanklen = (int)STRLEN(y_array[i]); | |
3734 | |
3735 /* calculate number of spaces required to fill right side of block*/ | |
3736 spaces = y_width + 1; | |
3737 for (j = 0; j < yanklen; j++) | |
5995 | 3738 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0); |
7 | 3739 if (spaces < 0) |
3740 spaces = 0; | |
3741 | |
3742 /* insert the new text */ | |
3743 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces; | |
3744 newp = alloc_check((unsigned)totlen + oldlen + 1); | |
3745 if (newp == NULL) | |
3746 break; | |
3747 /* copy part up to cursor to new line */ | |
3748 ptr = newp; | |
3749 mch_memmove(ptr, oldp, (size_t)bd.textcol); | |
3750 ptr += bd.textcol; | |
3751 /* may insert some spaces before the new text */ | |
6929 | 3752 vim_memset(ptr, ' ', (size_t)bd.startspaces); |
7 | 3753 ptr += bd.startspaces; |
3754 /* insert the new text */ | |
3755 for (j = 0; j < count; ++j) | |
3756 { | |
3757 mch_memmove(ptr, y_array[i], (size_t)yanklen); | |
3758 ptr += yanklen; | |
3759 | |
3760 /* insert block's trailing spaces only if there's text behind */ | |
3761 if ((j < count - 1 || !shortline) && spaces) | |
3762 { | |
6929 | 3763 vim_memset(ptr, ' ', (size_t)spaces); |
7 | 3764 ptr += spaces; |
3765 } | |
3766 } | |
3767 /* may insert some spaces after the new text */ | |
6929 | 3768 vim_memset(ptr, ' ', (size_t)bd.endspaces); |
7 | 3769 ptr += bd.endspaces; |
3770 /* move the text after the cursor to the end of the line. */ | |
3771 mch_memmove(ptr, oldp + bd.textcol + delcount, | |
3772 (size_t)(oldlen - bd.textcol - delcount + 1)); | |
3773 ml_replace(curwin->w_cursor.lnum, newp, FALSE); | |
3774 | |
3775 ++curwin->w_cursor.lnum; | |
3776 if (i == 0) | |
3777 curwin->w_cursor.col += bd.startspaces; | |
3778 } | |
3779 | |
3780 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines); | |
3781 | |
3782 /* Set '[ mark. */ | |
3783 curbuf->b_op_start = curwin->w_cursor; | |
3784 curbuf->b_op_start.lnum = lnum; | |
3785 | |
3786 /* adjust '] mark */ | |
3787 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1; | |
3788 curbuf->b_op_end.col = bd.textcol + totlen - 1; | |
3789 curbuf->b_op_end.coladd = 0; | |
3790 if (flags & PUT_CURSEND) | |
3791 { | |
916 | 3792 colnr_T len; |
3793 | |
7 | 3794 curwin->w_cursor = curbuf->b_op_end; |
3795 curwin->w_cursor.col++; | |
916 | 3796 |
3797 /* in Insert mode we might be after the NUL, correct for that */ | |
3798 len = (colnr_T)STRLEN(ml_get_curline()); | |
3799 if (curwin->w_cursor.col > len) | |
3800 curwin->w_cursor.col = len; | |
7 | 3801 } |
3802 else | |
3803 curwin->w_cursor.lnum = lnum; | |
3804 } | |
3805 else | |
3806 { | |
3807 /* | |
3808 * Character or Line mode | |
3809 */ | |
3810 if (y_type == MCHAR) | |
3811 { | |
3812 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next | |
3813 * char */ | |
3814 if (dir == FORWARD && gchar_cursor() != NUL) | |
3815 { | |
3816 if (has_mbyte) | |
3817 { | |
474 | 3818 int bytelen = (*mb_ptr2len)(ml_get_cursor()); |
7 | 3819 |
3820 /* put it on the next of the multi-byte character. */ | |
3821 col += bytelen; | |
3822 if (yanklen) | |
3823 { | |
3824 curwin->w_cursor.col += bytelen; | |
3825 curbuf->b_op_end.col += bytelen; | |
3826 } | |
3827 } | |
3828 else | |
3829 { | |
3830 ++col; | |
3831 if (yanklen) | |
3832 { | |
3833 ++curwin->w_cursor.col; | |
3834 ++curbuf->b_op_end.col; | |
3835 } | |
3836 } | |
3837 } | |
3838 curbuf->b_op_start = curwin->w_cursor; | |
3839 } | |
3840 /* | |
3841 * Line mode: BACKWARD is the same as FORWARD on the previous line | |
3842 */ | |
3843 else if (dir == BACKWARD) | |
3844 --lnum; | |
699 | 3845 new_cursor = curwin->w_cursor; |
7 | 3846 |
3847 /* | |
3848 * simple case: insert into current line | |
3849 */ | |
3850 if (y_type == MCHAR && y_size == 1) | |
3851 { | |
10692
d9aeddd9086b
patch 8.0.0236: gcc complains about uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10688
diff
changeset
|
3852 linenr_T end_lnum = 0; /* init for gcc */ |
10688
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3853 |
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3854 if (VIsual_active) |
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3855 { |
10692
d9aeddd9086b
patch 8.0.0236: gcc complains about uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10688
diff
changeset
|
3856 end_lnum = curbuf->b_visual.vi_end.lnum; |
d9aeddd9086b
patch 8.0.0236: gcc complains about uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10688
diff
changeset
|
3857 if (end_lnum < curbuf->b_visual.vi_start.lnum) |
d9aeddd9086b
patch 8.0.0236: gcc complains about uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10688
diff
changeset
|
3858 end_lnum = curbuf->b_visual.vi_start.lnum; |
10688
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3859 } |
10670
bce3eccea39a
patch 8.0.0225: put in Visual block mode terminates early
Christian Brabandt <cb@256bit.org>
parents:
10664
diff
changeset
|
3860 |
5365 | 3861 do { |
3862 totlen = count * yanklen; | |
3863 if (totlen > 0) | |
7 | 3864 { |
5365 | 3865 oldp = ml_get(lnum); |
10688
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3866 if (VIsual_active && col > (int)STRLEN(oldp)) |
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3867 { |
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3868 lnum++; |
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3869 continue; |
3d1872fbecc4
patch 8.0.0234: crash when using put in Visual mode
Christian Brabandt <cb@256bit.org>
parents:
10670
diff
changeset
|
3870 } |
5365 | 3871 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1)); |
3872 if (newp == NULL) | |
3873 goto end; /* alloc() gave an error message */ | |
3874 mch_memmove(newp, oldp, (size_t)col); | |
3875 ptr = newp + col; | |
3876 for (i = 0; i < count; ++i) | |
3877 { | |
3878 mch_memmove(ptr, y_array[0], (size_t)yanklen); | |
3879 ptr += yanklen; | |
3880 } | |
3881 STRMOVE(ptr, oldp + col); | |
3882 ml_replace(lnum, newp, FALSE); | |
3883 /* Place cursor on last putted char. */ | |
3884 if (lnum == curwin->w_cursor.lnum) | |
5496 | 3885 { |
3886 /* make sure curwin->w_virtcol is updated */ | |
3887 changed_cline_bef_curs(); | |
5365 | 3888 curwin->w_cursor.col += (colnr_T)(totlen - 1); |
5496 | 3889 } |
7 | 3890 } |
5365 | 3891 if (VIsual_active) |
3892 lnum++; | |
10692
d9aeddd9086b
patch 8.0.0236: gcc complains about uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10688
diff
changeset
|
3893 } while (VIsual_active && lnum <= end_lnum); |
5365 | 3894 |
6379 | 3895 if (VIsual_active) /* reset lnum to the last visual line */ |
3896 lnum--; | |
3897 | |
7 | 3898 curbuf->b_op_end = curwin->w_cursor; |
3899 /* For "CTRL-O p" in Insert mode, put cursor after last char */ | |
3900 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND))) | |
3901 ++curwin->w_cursor.col; | |
3902 changed_bytes(lnum, col); | |
3903 } | |
3904 else | |
3905 { | |
3906 /* | |
3907 * Insert at least one line. When y_type is MCHAR, break the first | |
3908 * line in two. | |
3909 */ | |
3910 for (cnt = 1; cnt <= count; ++cnt) | |
3911 { | |
3912 i = 0; | |
3913 if (y_type == MCHAR) | |
3914 { | |
3915 /* | |
3916 * Split the current line in two at the insert position. | |
3917 * First insert y_array[size - 1] in front of second line. | |
3918 * Then append y_array[0] to first line. | |
3919 */ | |
3920 lnum = new_cursor.lnum; | |
3921 ptr = ml_get(lnum) + col; | |
3922 totlen = (int)STRLEN(y_array[y_size - 1]); | |
3923 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1)); | |
3924 if (newp == NULL) | |
3925 goto error; | |
3926 STRCPY(newp, y_array[y_size - 1]); | |
3927 STRCAT(newp, ptr); | |
3928 /* insert second line */ | |
3929 ml_append(lnum, newp, (colnr_T)0, FALSE); | |
3930 vim_free(newp); | |
3931 | |
3932 oldp = ml_get(lnum); | |
3933 newp = alloc_check((unsigned)(col + yanklen + 1)); | |
3934 if (newp == NULL) | |
3935 goto error; | |
3936 /* copy first part of line */ | |
3937 mch_memmove(newp, oldp, (size_t)col); | |
3938 /* append to first line */ | |
3939 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1)); | |
3940 ml_replace(lnum, newp, FALSE); | |
3941 | |
3942 curwin->w_cursor.lnum = lnum; | |
3943 i = 1; | |
3944 } | |
3945 | |
3946 for (; i < y_size; ++i) | |
3947 { | |
3948 if ((y_type != MCHAR || i < y_size - 1) | |
3949 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE) | |
3950 == FAIL) | |
3951 goto error; | |
3952 lnum++; | |
3953 ++nr_lines; | |
3954 if (flags & PUT_FIXINDENT) | |
3955 { | |
3956 old_pos = curwin->w_cursor; | |
3957 curwin->w_cursor.lnum = lnum; | |
3958 ptr = ml_get(lnum); | |
3959 if (cnt == count && i == y_size - 1) | |
3960 lendiff = (int)STRLEN(ptr); | |
3961 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) | |
3962 if (*ptr == '#' && preprocs_left()) | |
3963 indent = 0; /* Leave # lines at start */ | |
3964 else | |
3965 #endif | |
3966 if (*ptr == NUL) | |
3967 indent = 0; /* Ignore empty lines */ | |
3968 else if (first_indent) | |
3969 { | |
3970 indent_diff = orig_indent - get_indent(); | |
3971 indent = orig_indent; | |
3972 first_indent = FALSE; | |
3973 } | |
3974 else if ((indent = get_indent() + indent_diff) < 0) | |
3975 indent = 0; | |
3976 (void)set_indent(indent, 0); | |
3977 curwin->w_cursor = old_pos; | |
3978 /* remember how many chars were removed */ | |
3979 if (cnt == count && i == y_size - 1) | |
3980 lendiff -= (int)STRLEN(ml_get(lnum)); | |
3981 } | |
3982 } | |
3983 } | |
3984 | |
3985 error: | |
3986 /* Adjust marks. */ | |
3987 if (y_type == MLINE) | |
3988 { | |
3989 curbuf->b_op_start.col = 0; | |
3990 if (dir == FORWARD) | |
3991 curbuf->b_op_start.lnum++; | |
3992 } | |
9225
b0b2bd8e5217
commit https://github.com/vim/vim/commit/82faa259cc42379f2a17d598a2a39d14048685b0
Christian Brabandt <cb@256bit.org>
parents:
8989
diff
changeset
|
3993 /* Skip mark_adjust when adding lines after the last one, there |
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
|
3994 * can't be marks there. But still needed in diff mode. */ |
9225
b0b2bd8e5217
commit https://github.com/vim/vim/commit/82faa259cc42379f2a17d598a2a39d14048685b0
Christian Brabandt <cb@256bit.org>
parents:
8989
diff
changeset
|
3995 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines |
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
|
3996 < curbuf->b_ml.ml_line_count |
f5bd684e47a1
patch 8.0.0421: diff mode wrong when adding line at end of buffer
Christian Brabandt <cb@256bit.org>
parents:
10827
diff
changeset
|
3997 #ifdef FEAT_DIFF |
f5bd684e47a1
patch 8.0.0421: diff mode wrong when adding line at end of buffer
Christian Brabandt <cb@256bit.org>
parents:
10827
diff
changeset
|
3998 || curwin->w_p_diff |
f5bd684e47a1
patch 8.0.0421: diff mode wrong when adding line at end of buffer
Christian Brabandt <cb@256bit.org>
parents:
10827
diff
changeset
|
3999 #endif |
f5bd684e47a1
patch 8.0.0421: diff mode wrong when adding line at end of buffer
Christian Brabandt <cb@256bit.org>
parents:
10827
diff
changeset
|
4000 ) |
9225
b0b2bd8e5217
commit https://github.com/vim/vim/commit/82faa259cc42379f2a17d598a2a39d14048685b0
Christian Brabandt <cb@256bit.org>
parents:
8989
diff
changeset
|
4001 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR), |
7 | 4002 (linenr_T)MAXLNUM, nr_lines, 0L); |
4003 | |
4004 /* note changed text for displaying and folding */ | |
4005 if (y_type == MCHAR) | |
4006 changed_lines(curwin->w_cursor.lnum, col, | |
4007 curwin->w_cursor.lnum + 1, nr_lines); | |
4008 else | |
4009 changed_lines(curbuf->b_op_start.lnum, 0, | |
4010 curbuf->b_op_start.lnum, nr_lines); | |
4011 | |
4012 /* put '] mark at last inserted character */ | |
4013 curbuf->b_op_end.lnum = lnum; | |
4014 /* correct length for change in indent */ | |
4015 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff; | |
4016 if (col > 1) | |
4017 curbuf->b_op_end.col = col - 1; | |
4018 else | |
4019 curbuf->b_op_end.col = 0; | |
4020 | |
168 | 4021 if (flags & PUT_CURSLINE) |
4022 { | |
237 | 4023 /* ":put": put cursor on last inserted line */ |
168 | 4024 curwin->w_cursor.lnum = lnum; |
4025 beginline(BL_WHITE | BL_FIX); | |
4026 } | |
4027 else if (flags & PUT_CURSEND) | |
7 | 4028 { |
4029 /* put cursor after inserted text */ | |
4030 if (y_type == MLINE) | |
4031 { | |
4032 if (lnum >= curbuf->b_ml.ml_line_count) | |
4033 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
4034 else | |
4035 curwin->w_cursor.lnum = lnum + 1; | |
4036 curwin->w_cursor.col = 0; | |
4037 } | |
4038 else | |
4039 { | |
4040 curwin->w_cursor.lnum = lnum; | |
4041 curwin->w_cursor.col = col; | |
4042 } | |
4043 } | |
4044 else if (y_type == MLINE) | |
4045 { | |
168 | 4046 /* put cursor on first non-blank in first inserted line */ |
7 | 4047 curwin->w_cursor.col = 0; |
4048 if (dir == FORWARD) | |
4049 ++curwin->w_cursor.lnum; | |
4050 beginline(BL_WHITE | BL_FIX); | |
4051 } | |
4052 else /* put cursor on first inserted character */ | |
4053 curwin->w_cursor = new_cursor; | |
4054 } | |
4055 } | |
4056 | |
4057 msgmore(nr_lines); | |
4058 curwin->w_set_curswant = TRUE; | |
4059 | |
4060 end: | |
4061 if (allocated) | |
4062 vim_free(insert_string); | |
840 | 4063 if (regname == '=') |
4064 vim_free(y_array); | |
4065 | |
5380 | 4066 VIsual_active = FALSE; |
4067 | |
140 | 4068 /* If the cursor is past the end of the line put it at the end. */ |
844 | 4069 adjust_cursor_eol(); |
4070 } | |
4071 | |
4072 /* | |
4073 * When the cursor is on the NUL past the end of the line and it should not be | |
4074 * there move it left. | |
4075 */ | |
4076 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4077 adjust_cursor_eol(void) |
844 | 4078 { |
4079 if (curwin->w_cursor.col > 0 | |
4080 && gchar_cursor() == NUL | |
773 | 4081 && (ve_flags & VE_ONEMORE) == 0 |
7 | 4082 && !(restart_edit || (State & INSERT))) |
4083 { | |
557 | 4084 /* Put the cursor on the last character in the line. */ |
555 | 4085 dec_cursor(); |
844 | 4086 |
7 | 4087 if (ve_flags == VE_ALL) |
557 | 4088 { |
4089 colnr_T scol, ecol; | |
4090 | |
4091 /* Coladd is set to the width of the last character. */ | |
4092 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol); | |
4093 curwin->w_cursor.coladd = ecol - scol + 1; | |
4094 } | |
7 | 4095 } |
4096 } | |
4097 | |
4098 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO) | |
4099 /* | |
4100 * Return TRUE if lines starting with '#' should be left aligned. | |
4101 */ | |
4102 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4103 preprocs_left(void) |
7 | 4104 { |
4105 return | |
4106 # ifdef FEAT_SMARTINDENT | |
4107 # ifdef FEAT_CINDENT | |
4108 (curbuf->b_p_si && !curbuf->b_p_cin) || | |
4109 # else | |
4110 curbuf->b_p_si | |
4111 # endif | |
4112 # endif | |
4113 # ifdef FEAT_CINDENT | |
5438 | 4114 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE) |
4115 && curbuf->b_ind_hash_comment == 0) | |
7 | 4116 # endif |
4117 ; | |
4118 } | |
4119 #endif | |
4120 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4121 /* |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4122 * Return the character name of the register with the given number. |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4123 */ |
7 | 4124 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4125 get_register_name(int num) |
7 | 4126 { |
4127 if (num == -1) | |
4128 return '"'; | |
4129 else if (num < 10) | |
4130 return num + '0'; | |
4131 else if (num == DELETION_REGISTER) | |
4132 return '-'; | |
4133 #ifdef FEAT_CLIPBOARD | |
4134 else if (num == STAR_REGISTER) | |
4135 return '*'; | |
4136 else if (num == PLUS_REGISTER) | |
4137 return '+'; | |
4138 #endif | |
4139 else | |
4140 { | |
4141 #ifdef EBCDIC | |
4142 int i; | |
4143 | |
4144 /* EBCDIC is really braindead ... */ | |
4145 i = 'a' + (num - 10); | |
4146 if (i > 'i') | |
4147 i += 7; | |
4148 if (i > 'r') | |
4149 i += 8; | |
4150 return i; | |
4151 #else | |
4152 return num + 'a' - 10; | |
4153 #endif | |
4154 } | |
4155 } | |
4156 | |
4157 /* | |
4158 * ":dis" and ":registers": Display the contents of the yank registers. | |
4159 */ | |
4160 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4161 ex_display(exarg_T *eap) |
7 | 4162 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4163 int i, n; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4164 long j; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4165 char_u *p; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4166 yankreg_T *yb; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4167 int name; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4168 int attr; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4169 char_u *arg = eap->arg; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
4170 int clen; |
7 | 4171 |
4172 if (arg != NULL && *arg == NUL) | |
4173 arg = NULL; | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11131
diff
changeset
|
4174 attr = HL_ATTR(HLF_8); |
7 | 4175 |
4176 /* Highlight title */ | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4177 msg_puts_title(_("\n--- Registers ---")); |
7 | 4178 for (i = -1; i < NUM_REGISTERS && !got_int; ++i) |
4179 { | |
4180 name = get_register_name(i); | |
2644 | 4181 if (arg != NULL && vim_strchr(arg, name) == NULL |
4182 #ifdef ONE_CLIPBOARD | |
4183 /* Star register and plus register contain the same thing. */ | |
4184 && (name != '*' || vim_strchr(arg, '+') == NULL) | |
4185 #endif | |
4186 ) | |
7 | 4187 continue; /* did not ask for this register */ |
4188 | |
4189 #ifdef FEAT_CLIPBOARD | |
4190 /* Adjust register name for "unnamed" in 'clipboard'. | |
4191 * When it's a clipboard register, fill it with the current contents | |
4192 * of the clipboard. */ | |
4193 adjust_clip_reg(&name); | |
4194 (void)may_get_selection(name); | |
4195 #endif | |
4196 | |
4197 if (i == -1) | |
4198 { | |
4199 if (y_previous != NULL) | |
4200 yb = y_previous; | |
4201 else | |
4202 yb = &(y_regs[0]); | |
4203 } | |
4204 else | |
4205 yb = &(y_regs[i]); | |
2000 | 4206 |
4207 #ifdef FEAT_EVAL | |
4208 if (name == MB_TOLOWER(redir_reg) | |
4209 || (redir_reg == '"' && yb == y_previous)) | |
4210 continue; /* do not list register being written to, the | |
4211 * pointer can be freed */ | |
4212 #endif | |
4213 | |
7 | 4214 if (yb->y_array != NULL) |
4215 { | |
4216 msg_putchar('\n'); | |
4217 msg_putchar('"'); | |
4218 msg_putchar(name); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4219 msg_puts(" "); |
7 | 4220 |
4221 n = (int)Columns - 6; | |
4222 for (j = 0; j < yb->y_size && n > 1; ++j) | |
4223 { | |
4224 if (j) | |
4225 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4226 msg_puts_attr("^J", attr); |
7 | 4227 n -= 2; |
4228 } | |
4229 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p) | |
4230 { | |
474 | 4231 clen = (*mb_ptr2len)(p); |
22 | 4232 msg_outtrans_len(p, clen); |
4233 p += clen - 1; | |
7 | 4234 } |
4235 } | |
4236 if (n > 1 && yb->y_type == MLINE) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4237 msg_puts_attr("^J", attr); |
7 | 4238 out_flush(); /* show one line at a time */ |
4239 } | |
4240 ui_breakcheck(); | |
4241 } | |
4242 | |
4243 /* | |
4244 * display last inserted text | |
4245 */ | |
4246 if ((p = get_last_insert()) != NULL | |
4247 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int) | |
4248 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4249 msg_puts("\n\". "); |
7 | 4250 dis_msg(p, TRUE); |
4251 } | |
4252 | |
4253 /* | |
4254 * display last command line | |
4255 */ | |
4256 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL) | |
4257 && !got_int) | |
4258 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4259 msg_puts("\n\": "); |
7 | 4260 dis_msg(last_cmdline, FALSE); |
4261 } | |
4262 | |
4263 /* | |
4264 * display current file name | |
4265 */ | |
4266 if (curbuf->b_fname != NULL | |
4267 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int) | |
4268 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4269 msg_puts("\n\"% "); |
7 | 4270 dis_msg(curbuf->b_fname, FALSE); |
4271 } | |
4272 | |
4273 /* | |
4274 * display alternate file name | |
4275 */ | |
4276 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int) | |
4277 { | |
4278 char_u *fname; | |
4279 linenr_T dummy; | |
4280 | |
4281 if (buflist_name_nr(0, &fname, &dummy) != FAIL) | |
4282 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4283 msg_puts("\n\"# "); |
7 | 4284 dis_msg(fname, FALSE); |
4285 } | |
4286 } | |
4287 | |
4288 /* | |
4289 * display last search pattern | |
4290 */ | |
4291 if (last_search_pat() != NULL | |
4292 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int) | |
4293 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4294 msg_puts("\n\"/ "); |
7 | 4295 dis_msg(last_search_pat(), FALSE); |
4296 } | |
4297 | |
4298 #ifdef FEAT_EVAL | |
4299 /* | |
4300 * display last used expression | |
4301 */ | |
4302 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL) | |
4303 && !got_int) | |
4304 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
4305 msg_puts("\n\"= "); |
7 | 4306 dis_msg(expr_line, FALSE); |
4307 } | |
4308 #endif | |
4309 } | |
4310 | |
4311 /* | |
4312 * display a string for do_dis() | |
4313 * truncate at end of screen line | |
4314 */ | |
4315 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4316 dis_msg( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4317 char_u *p, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4318 int skip_esc) /* if TRUE, ignore trailing ESC */ |
7 | 4319 { |
4320 int n; | |
4321 int l; | |
4322 | |
4323 n = (int)Columns - 6; | |
4324 while (*p != NUL | |
4325 && !(*p == ESC && skip_esc && *(p + 1) == NUL) | |
4326 && (n -= ptr2cells(p)) >= 0) | |
4327 { | |
474 | 4328 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
7 | 4329 { |
4330 msg_outtrans_len(p, l); | |
4331 p += l; | |
4332 } | |
4333 else | |
4334 msg_outtrans_len(p++, 1); | |
4335 } | |
4336 ui_breakcheck(); | |
4337 } | |
4338 | |
3562 | 4339 #if defined(FEAT_COMMENTS) || defined(PROTO) |
4340 /* | |
4341 * If "process" is TRUE and the line begins with a comment leader (possibly | |
4342 * after some white space), return a pointer to the text after it. Put a boolean | |
4343 * value indicating whether the line ends with an unclosed comment in | |
4344 * "is_comment". | |
4345 * line - line to be processed, | |
4346 * process - if FALSE, will only check whether the line ends with an unclosed | |
3584 | 4347 * comment, |
3562 | 4348 * include_space - whether to also skip space following the comment leader, |
4349 * is_comment - will indicate whether the current line ends with an unclosed | |
3584 | 4350 * comment. |
3562 | 4351 */ |
11131
8d9ecf09183a
patch 8.0.0453: adding fold marker creates new comment
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
4352 char_u * |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4353 skip_comment( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4354 char_u *line, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4355 int process, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4356 int include_space, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4357 int *is_comment) |
3562 | 4358 { |
4359 char_u *comment_flags = NULL; | |
4360 int lead_len; | |
4361 int leader_offset = get_last_leader_offset(line, &comment_flags); | |
4362 | |
4363 *is_comment = FALSE; | |
4364 if (leader_offset != -1) | |
4365 { | |
4366 /* Let's check whether the line ends with an unclosed comment. | |
4367 * If the last comment leader has COM_END in flags, there's no comment. | |
4368 */ | |
4369 while (*comment_flags) | |
4370 { | |
4371 if (*comment_flags == COM_END | |
4372 || *comment_flags == ':') | |
4373 break; | |
4374 ++comment_flags; | |
4375 } | |
4376 if (*comment_flags != COM_END) | |
4377 *is_comment = TRUE; | |
4378 } | |
4379 | |
4380 if (process == FALSE) | |
4381 return line; | |
4382 | |
4383 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space); | |
4384 | |
4385 if (lead_len == 0) | |
4386 return line; | |
4387 | |
4388 /* Find: | |
4389 * - COM_END, | |
4390 * - colon, | |
4391 * whichever comes first. | |
4392 */ | |
4393 while (*comment_flags) | |
4394 { | |
3580 | 4395 if (*comment_flags == COM_END |
3562 | 4396 || *comment_flags == ':') |
4397 break; | |
4398 ++comment_flags; | |
4399 } | |
4400 | |
4401 /* If we found a colon, it means that we are not processing a line | |
3580 | 4402 * starting with a closing part of a three-part comment. That's good, |
4403 * because we don't want to remove those as this would be annoying. | |
3562 | 4404 */ |
4405 if (*comment_flags == ':' || *comment_flags == NUL) | |
4406 line += lead_len; | |
4407 | |
4408 return line; | |
4409 } | |
4410 #endif | |
4411 | |
7 | 4412 /* |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4413 * 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
|
4414 * When "save_undo" is TRUE save lines for undo first. |
5848 | 4415 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment |
4416 * leaders should not be removed. | |
4417 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected | |
4418 * to set those marks. | |
7 | 4419 * |
1217 | 4420 * return FAIL for failure, OK otherwise |
7 | 4421 */ |
4422 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4423 do_join( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4424 long count, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4425 int insert_space, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4426 int save_undo, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4427 int use_formatoptions UNUSED, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4428 int setmark) |
7 | 4429 { |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4430 char_u *curr = NULL; |
2597 | 4431 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
|
4432 char_u *cend; |
7 | 4433 char_u *newp; |
2597 | 4434 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
|
4435 int endcurr1 = NUL; |
3e4574a4b627
Fix a few compiler warnings.
Bram Moolenaar <bram@vim.org>
parents:
2298
diff
changeset
|
4436 int endcurr2 = NUL; |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4437 int currsize = 0; /* size of the current line */ |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4438 int sumsize = 0; /* size of the long new line */ |
7 | 4439 linenr_T t; |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4440 colnr_T col = 0; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4441 int ret = OK; |
3562 | 4442 #if defined(FEAT_COMMENTS) || defined(PROTO) |
3574 | 4443 int *comments = NULL; |
3562 | 4444 int remove_comments = (use_formatoptions == TRUE) |
4445 && has_format_option(FO_REMOVE_COMS); | |
4446 int prev_was_comment; | |
4447 #endif | |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4448 #ifdef FEAT_TEXT_PROP |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4449 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
|
4450 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
|
4451 #endif |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4452 |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4453 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
|
4454 (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
|
4455 return FAIL; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4456 |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4457 /* Allocate an array to store the number of spaces inserted before each |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4458 * line. We will use it to pre-compute the length of the new line and the |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4459 * proper placement of each original line in the new one. */ |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4460 spaces = lalloc_clear((long_u)count, TRUE); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4461 if (spaces == NULL) |
7 | 4462 return FAIL; |
3562 | 4463 #if defined(FEAT_COMMENTS) || defined(PROTO) |
4464 if (remove_comments) | |
4465 { | |
4466 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE); | |
4467 if (comments == NULL) | |
4468 { | |
4469 vim_free(spaces); | |
4470 return FAIL; | |
4471 } | |
4472 } | |
4473 #endif | |
7 | 4474 |
4475 /* | |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4476 * 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
|
4477 * 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
|
4478 * This loops forward over the joined lines. |
7 | 4479 */ |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4480 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
|
4481 { |
2597 | 4482 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t)); |
5848 | 4483 if (t == 0 && setmark) |
5664 | 4484 { |
4485 /* Set the '[ mark. */ | |
4486 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum; | |
4487 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr); | |
4488 } | |
3562 | 4489 #if defined(FEAT_COMMENTS) || defined(PROTO) |
4490 if (remove_comments) | |
4491 { | |
4492 /* We don't want to remove the comment leader if the | |
4493 * previous line is not a comment. */ | |
4494 if (t > 0 && prev_was_comment) | |
4495 { | |
4496 | |
4497 char_u *new_curr = skip_comment(curr, TRUE, insert_space, | |
4498 &prev_was_comment); | |
3576 | 4499 comments[t] = (int)(new_curr - curr); |
3562 | 4500 curr = new_curr; |
4501 } | |
4502 else | |
4503 curr = skip_comment(curr, FALSE, insert_space, | |
4504 &prev_was_comment); | |
4505 } | |
4506 #endif | |
4507 | |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4508 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
|
4509 { |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4510 curr = skipwhite(curr); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4511 if (*curr != ')' && currsize != 0 && endcurr1 != TAB |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4512 && (!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
|
4513 || (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
|
4514 && (!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
|
4515 || 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
|
4516 ) |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4517 { |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4518 /* don't add a space if the line is ending in a space */ |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4519 if (endcurr1 == ' ') |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4520 endcurr1 = endcurr2; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4521 else |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4522 ++spaces[t]; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4523 /* extra space when 'joinspaces' set and line ends in '.' */ |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4524 if ( p_js |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4525 && (endcurr1 == '.' |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4526 || (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
|
4527 && (endcurr1 == '?' || endcurr1 == '!')))) |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4528 ++spaces[t]; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4529 } |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4530 } |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4531 currsize = (int)STRLEN(curr); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4532 sumsize += currsize + spaces[t]; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4533 endcurr1 = endcurr2 = NUL; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4534 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
|
4535 { |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4536 if (has_mbyte) |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4537 { |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4538 cend = curr + currsize; |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4539 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
|
4540 endcurr1 = (*mb_ptr2char)(cend); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4541 if (cend > curr) |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4542 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4543 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
|
4544 endcurr2 = (*mb_ptr2char)(cend); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4545 } |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4546 } |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4547 else |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4548 { |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4549 endcurr1 = *(curr + currsize - 1); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4550 if (currsize > 1) |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4551 endcurr2 = *(curr + currsize - 2); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4552 } |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4553 } |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4554 line_breakcheck(); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4555 if (got_int) |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4556 { |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4557 ret = FAIL; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4558 goto theend; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4559 } |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4560 } |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4561 |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4562 /* store the column position before last line */ |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4563 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
|
4564 |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4565 /* allocate the space for the new line */ |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4566 newp = alloc_check((unsigned)(sumsize + 1)); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4567 cend = newp + sumsize; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4568 *cend = 0; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4569 |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4570 #ifdef FEAT_TEXT_PROP |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4571 // 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
|
4572 // 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
|
4573 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
|
4574 { |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4575 // 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
|
4576 // And another array to store the number of properties in each line. |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4577 prop_lines = (textprop_T **)alloc_clear( |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4578 (int)(count - 1) * sizeof(textprop_T *)); |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4579 prop_lengths = (int *)alloc_clear((int)(count - 1) * sizeof(int)); |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4580 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
|
4581 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
|
4582 } |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4583 #endif |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4584 |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4585 /* |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4586 * 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
|
4587 * 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
|
4588 * |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4589 * 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
|
4590 * 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
|
4591 * 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
|
4592 */ |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4593 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
|
4594 { |
15326
fe428bee74b3
patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
4595 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
|
4596 |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4597 cend -= currsize; |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4598 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
|
4599 if (spaces[t] > 0) |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4600 { |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4601 cend -= spaces[t]; |
6929 | 4602 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
|
4603 } |
15326
fe428bee74b3
patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
4604 |
fe428bee74b3
patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
4605 // 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
|
4606 // 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
|
4607 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
|
4608 |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4609 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
|
4610 (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
|
4611 if (t == 0) |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4612 break; |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4613 #ifdef FEAT_TEXT_PROP |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4614 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
|
4615 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
|
4616 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
|
4617 (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
|
4618 #endif |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4619 |
2597 | 4620 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1)); |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4621 #if defined(FEAT_COMMENTS) |
3562 | 4622 if (remove_comments) |
4623 curr += comments[t - 1]; | |
4624 #endif | |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4625 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
|
4626 curr = skipwhite(curr); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4627 currsize = (int)STRLEN(curr); |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4628 } |
16678
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4629 |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4630 #ifdef FEAT_TEXT_PROP |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4631 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
|
4632 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
|
4633 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
|
4634 else |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4635 #endif |
6f453673eb19
patch 8.1.1341: text properties are lost when joining lines
Bram Moolenaar <Bram@vim.org>
parents:
16429
diff
changeset
|
4636 ml_replace(curwin->w_cursor.lnum, newp, FALSE); |
7 | 4637 |
5848 | 4638 if (setmark) |
4639 { | |
4640 /* Set the '] mark. */ | |
4641 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
|
4642 curwin->w_buffer->b_op_end.col = (colnr_T)sumsize; |
5848 | 4643 } |
5664 | 4644 |
7 | 4645 /* Only report the change in the first line here, del_lines() will report |
4646 * the deleted line. */ | |
4647 changed_lines(curwin->w_cursor.lnum, currsize, | |
4648 curwin->w_cursor.lnum + 1, 0L); | |
4649 /* | |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4650 * Delete following lines. To do this we move the cursor there |
7 | 4651 * briefly, and then move it back. After del_lines() the cursor may |
4652 * have moved up (last line deleted), so the current lnum is kept in t. | |
4653 */ | |
4654 t = curwin->w_cursor.lnum; | |
4655 ++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
|
4656 del_lines(count - 1, FALSE); |
7 | 4657 curwin->w_cursor.lnum = t; |
4658 | |
4659 /* | |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4660 * Set the cursor column: |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4661 * 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
|
4662 * vim: use the column of the last join |
7 | 4663 */ |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4664 curwin->w_cursor.col = |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4665 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col); |
7 | 4666 check_cursor_col(); |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4667 |
7 | 4668 curwin->w_cursor.coladd = 0; |
4669 curwin->w_set_curswant = TRUE; | |
4670 | |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4671 theend: |
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4672 vim_free(spaces); |
3562 | 4673 #if defined(FEAT_COMMENTS) || defined(PROTO) |
4674 if (remove_comments) | |
4675 vim_free(comments); | |
4676 #endif | |
2294
2209060c340d
Make joining a range of lines much faster. (Milan Vancura)
Bram Moolenaar <bram@vim.org>
parents:
2289
diff
changeset
|
4677 return ret; |
7 | 4678 } |
4679 | |
4680 #ifdef FEAT_COMMENTS | |
4681 /* | |
4682 * Return TRUE if the two comment leaders given are the same. "lnum" is | |
4683 * the first line. White-space is ignored. Note that the whole of | |
4684 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb | |
4685 */ | |
4686 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4687 same_leader( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4688 linenr_T lnum, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4689 int leader1_len, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4690 char_u *leader1_flags, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4691 int leader2_len, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4692 char_u *leader2_flags) |
7 | 4693 { |
4694 int idx1 = 0, idx2 = 0; | |
4695 char_u *p; | |
4696 char_u *line1; | |
4697 char_u *line2; | |
4698 | |
4699 if (leader1_len == 0) | |
4700 return (leader2_len == 0); | |
4701 | |
4702 /* | |
4703 * If first leader has 'f' flag, the lines can be joined only if the | |
4704 * second line does not have a leader. | |
4705 * If first leader has 'e' flag, the lines can never be joined. | |
4706 * If fist leader has 's' flag, the lines can only be joined if there is | |
4707 * some text after it and the second line has the 'm' flag. | |
4708 */ | |
4709 if (leader1_flags != NULL) | |
4710 { | |
4711 for (p = leader1_flags; *p && *p != ':'; ++p) | |
4712 { | |
4713 if (*p == COM_FIRST) | |
4714 return (leader2_len == 0); | |
4715 if (*p == COM_END) | |
4716 return FALSE; | |
4717 if (*p == COM_START) | |
4718 { | |
4719 if (*(ml_get(lnum) + leader1_len) == NUL) | |
4720 return FALSE; | |
4721 if (leader2_flags == NULL || leader2_len == 0) | |
4722 return FALSE; | |
4723 for (p = leader2_flags; *p && *p != ':'; ++p) | |
4724 if (*p == COM_MIDDLE) | |
4725 return TRUE; | |
4726 return FALSE; | |
4727 } | |
4728 } | |
4729 } | |
4730 | |
4731 /* | |
4732 * Get current line and next line, compare the leaders. | |
4733 * The first line has to be saved, only one line can be locked at a time. | |
4734 */ | |
4735 line1 = vim_strsave(ml_get(lnum)); | |
4736 if (line1 != NULL) | |
4737 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4738 for (idx1 = 0; VIM_ISWHITE(line1[idx1]); ++idx1) |
7 | 4739 ; |
4740 line2 = ml_get(lnum + 1); | |
4741 for (idx2 = 0; idx2 < leader2_len; ++idx2) | |
4742 { | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4743 if (!VIM_ISWHITE(line2[idx2])) |
7 | 4744 { |
4745 if (line1[idx1++] != line2[idx2]) | |
4746 break; | |
4747 } | |
4748 else | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4749 while (VIM_ISWHITE(line1[idx1])) |
7 | 4750 ++idx1; |
4751 } | |
4752 vim_free(line1); | |
4753 } | |
4754 return (idx2 == leader2_len && idx1 == leader1_len); | |
4755 } | |
4756 #endif | |
4757 | |
4758 /* | |
3252 | 4759 * Implementation of the format operator 'gq'. |
7 | 4760 */ |
4761 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4762 op_format( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4763 oparg_T *oap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4764 int keep_cursor) /* keep cursor on same text char */ |
7 | 4765 { |
4766 long old_line_count = curbuf->b_ml.ml_line_count; | |
4767 | |
4768 /* Place the cursor where the "gq" or "gw" command was given, so that "u" | |
4769 * can put it back there. */ | |
4770 curwin->w_cursor = oap->cursor_start; | |
4771 | |
4772 if (u_save((linenr_T)(oap->start.lnum - 1), | |
4773 (linenr_T)(oap->end.lnum + 1)) == FAIL) | |
4774 return; | |
4775 curwin->w_cursor = oap->start; | |
4776 | |
4777 if (oap->is_VIsual) | |
4778 /* When there is no change: need to remove the Visual selection */ | |
4779 redraw_curbuf_later(INVERTED); | |
4780 | |
4781 /* Set '[ mark at the start of the formatted area */ | |
4782 curbuf->b_op_start = oap->start; | |
4783 | |
4784 /* For "gw" remember the cursor position and put it back below (adjusted | |
4785 * for joined and split lines). */ | |
4786 if (keep_cursor) | |
4787 saved_cursor = oap->cursor_start; | |
4788 | |
1563 | 4789 format_lines(oap->line_count, keep_cursor); |
7 | 4790 |
4791 /* | |
4792 * Leave the cursor at the first non-blank of the last formatted line. | |
4793 * If the cursor was moved one line back (e.g. with "Q}") go to the next | |
4794 * line, so "." will do the next lines. | |
4795 */ | |
4796 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) | |
4797 ++curwin->w_cursor.lnum; | |
4798 beginline(BL_WHITE | BL_FIX); | |
4799 old_line_count = curbuf->b_ml.ml_line_count - old_line_count; | |
4800 msgmore(old_line_count); | |
4801 | |
4802 /* put '] mark on the end of the formatted area */ | |
4803 curbuf->b_op_end = curwin->w_cursor; | |
4804 | |
4805 if (keep_cursor) | |
4806 { | |
4807 curwin->w_cursor = saved_cursor; | |
4808 saved_cursor.lnum = 0; | |
4809 } | |
4810 | |
4811 if (oap->is_VIsual) | |
4812 { | |
4813 win_T *wp; | |
4814 | |
4815 FOR_ALL_WINDOWS(wp) | |
4816 { | |
4817 if (wp->w_old_cursor_lnum != 0) | |
4818 { | |
4819 /* When lines have been inserted or deleted, adjust the end of | |
4820 * the Visual area to be redrawn. */ | |
4821 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum) | |
4822 wp->w_old_cursor_lnum += old_line_count; | |
4823 else | |
4824 wp->w_old_visual_lnum += old_line_count; | |
4825 } | |
4826 } | |
4827 } | |
4828 } | |
4829 | |
667 | 4830 #if defined(FEAT_EVAL) || defined(PROTO) |
4831 /* | |
4832 * Implementation of the format operator 'gq' for when using 'formatexpr'. | |
4833 */ | |
4834 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4835 op_formatexpr(oparg_T *oap) |
667 | 4836 { |
4837 if (oap->is_VIsual) | |
4838 /* When there is no change: need to remove the Visual selection */ | |
4839 redraw_curbuf_later(INVERTED); | |
4840 | |
2298
a3562a127cf6
When 'formatexpr' evaluates to non-zero fall back to internal formatting, also
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
4841 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0) |
a3562a127cf6
When 'formatexpr' evaluates to non-zero fall back to internal formatting, also
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
4842 /* As documented: when 'formatexpr' returns non-zero fall back to |
a3562a127cf6
When 'formatexpr' evaluates to non-zero fall back to internal formatting, also
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
4843 * internal formatting. */ |
a3562a127cf6
When 'formatexpr' evaluates to non-zero fall back to internal formatting, also
Bram Moolenaar <bram@vim.org>
parents:
2294
diff
changeset
|
4844 op_format(oap, FALSE); |
667 | 4845 } |
4846 | |
4847 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4848 fex_format( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4849 linenr_T lnum, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4850 long count, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4851 int c) /* character to be inserted */ |
667 | 4852 { |
681 | 4853 int use_sandbox = was_set_insecurely((char_u *)"formatexpr", |
4854 OPT_LOCAL); | |
667 | 4855 int r; |
10104
b2dbe79639a2
commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4856 char_u *fex; |
667 | 4857 |
4858 /* | |
4859 * Set v:lnum to the first line number and v:count to the number of lines. | |
844 | 4860 * Set v:char to the character to be inserted (can be NUL). |
667 | 4861 */ |
4862 set_vim_var_nr(VV_LNUM, lnum); | |
4863 set_vim_var_nr(VV_COUNT, count); | |
1969 | 4864 set_vim_var_char(c); |
844 | 4865 |
10104
b2dbe79639a2
commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4866 /* Make a copy, the option could be changed while calling it. */ |
b2dbe79639a2
commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4867 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
|
4868 if (fex == NULL) |
b2dbe79639a2
commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4869 return 0; |
b2dbe79639a2
commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4870 |
667 | 4871 /* |
4872 * Evaluate the function. | |
4873 */ | |
4874 if (use_sandbox) | |
4875 ++sandbox; | |
10104
b2dbe79639a2
commit https://github.com/vim/vim/commit/d77f9d595eb5f301b39b4373f2900a13c0ca30e2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
4876 r = (int)eval_to_number(fex); |
667 | 4877 if (use_sandbox) |
4878 --sandbox; | |
844 | 4879 |
4880 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
|
4881 vim_free(fex); |
844 | 4882 |
667 | 4883 return r; |
4884 } | |
4885 #endif | |
4886 | |
7 | 4887 /* |
4888 * Format "line_count" lines, starting at the cursor position. | |
4889 * When "line_count" is negative, format until the end of the paragraph. | |
4890 * Lines after the cursor line are saved for undo, caller must have saved the | |
4891 * first line. | |
4892 */ | |
4893 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4894 format_lines( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4895 linenr_T line_count, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4896 int avoid_fex) /* don't use 'formatexpr' */ |
7 | 4897 { |
4898 int max_len; | |
4899 int is_not_par; /* current line not part of parag. */ | |
4900 int next_is_not_par; /* next line not part of paragraph */ | |
4901 int is_end_par; /* at end of paragraph */ | |
4902 int prev_is_end_par = FALSE;/* prev. line not part of parag. */ | |
4903 int next_is_start_par = FALSE; | |
4904 #ifdef FEAT_COMMENTS | |
4905 int leader_len = 0; /* leader len of current line */ | |
4906 int next_leader_len; /* leader len of next line */ | |
4907 char_u *leader_flags = NULL; /* flags for leader of current line */ | |
4908 char_u *next_leader_flags; /* flags for leader of next line */ | |
4909 int do_comments; /* format comments */ | |
3584 | 4910 int do_comments_list = 0; /* format comments with 'n' or '2' */ |
7 | 4911 #endif |
4912 int advance = TRUE; | |
3584 | 4913 int second_indent = -1; /* indent for second line (comment |
4914 * aware) */ | |
7 | 4915 int do_second_indent; |
4916 int do_number_indent; | |
4917 int do_trail_white; | |
4918 int first_par_line = TRUE; | |
4919 int smd_save; | |
4920 long count; | |
4921 int need_set_indent = TRUE; /* set indent of next paragraph */ | |
4922 int force_format = FALSE; | |
4923 int old_State = State; | |
4924 | |
4925 /* length of a line to force formatting: 3 * 'tw' */ | |
4926 max_len = comp_textwidth(TRUE) * 3; | |
4927 | |
4928 /* check for 'q', '2' and '1' in 'formatoptions' */ | |
4929 #ifdef FEAT_COMMENTS | |
4930 do_comments = has_format_option(FO_Q_COMS); | |
4931 #endif | |
4932 do_second_indent = has_format_option(FO_Q_SECOND); | |
4933 do_number_indent = has_format_option(FO_Q_NUMBER); | |
4934 do_trail_white = has_format_option(FO_WHITE_PAR); | |
4935 | |
4936 /* | |
4937 * Get info about the previous and current line. | |
4938 */ | |
4939 if (curwin->w_cursor.lnum > 1) | |
4940 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1 | |
4941 #ifdef FEAT_COMMENTS | |
4942 , &leader_len, &leader_flags, do_comments | |
4943 #endif | |
4944 ); | |
4945 else | |
4946 is_not_par = TRUE; | |
4947 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum | |
4948 #ifdef FEAT_COMMENTS | |
4949 , &next_leader_len, &next_leader_flags, do_comments | |
4950 #endif | |
4951 ); | |
4952 is_end_par = (is_not_par || next_is_not_par); | |
4953 if (!is_end_par && do_trail_white) | |
4954 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1); | |
4955 | |
4956 curwin->w_cursor.lnum--; | |
4957 for (count = line_count; count != 0 && !got_int; --count) | |
4958 { | |
4959 /* | |
4960 * Advance to next paragraph. | |
4961 */ | |
4962 if (advance) | |
4963 { | |
4964 curwin->w_cursor.lnum++; | |
4965 prev_is_end_par = is_end_par; | |
4966 is_not_par = next_is_not_par; | |
4967 #ifdef FEAT_COMMENTS | |
4968 leader_len = next_leader_len; | |
4969 leader_flags = next_leader_flags; | |
4970 #endif | |
4971 } | |
4972 | |
4973 /* | |
4974 * The last line to be formatted. | |
4975 */ | |
4976 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count) | |
4977 { | |
4978 next_is_not_par = TRUE; | |
4979 #ifdef FEAT_COMMENTS | |
4980 next_leader_len = 0; | |
4981 next_leader_flags = NULL; | |
4982 #endif | |
4983 } | |
4984 else | |
4985 { | |
4986 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1 | |
4987 #ifdef FEAT_COMMENTS | |
4988 , &next_leader_len, &next_leader_flags, do_comments | |
4989 #endif | |
4990 ); | |
4991 if (do_number_indent) | |
4992 next_is_start_par = | |
4993 (get_number_indent(curwin->w_cursor.lnum + 1) > 0); | |
4994 } | |
4995 advance = TRUE; | |
4996 is_end_par = (is_not_par || next_is_not_par || next_is_start_par); | |
4997 if (!is_end_par && do_trail_white) | |
4998 is_end_par = !ends_in_white(curwin->w_cursor.lnum); | |
4999 | |
5000 /* | |
5001 * Skip lines that are not in a paragraph. | |
5002 */ | |
5003 if (is_not_par) | |
5004 { | |
5005 if (line_count < 0) | |
5006 break; | |
5007 } | |
5008 else | |
5009 { | |
5010 /* | |
5011 * For the first line of a paragraph, check indent of second line. | |
5012 * Don't do this for comments and empty lines. | |
5013 */ | |
5014 if (first_par_line | |
5015 && (do_second_indent || do_number_indent) | |
5016 && prev_is_end_par | |
3584 | 5017 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count) |
5018 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11065
diff
changeset
|
5019 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1)) |
3584 | 5020 { |
5021 #ifdef FEAT_COMMENTS | |
5022 if (leader_len == 0 && next_leader_len == 0) | |
5023 { | |
5024 /* no comment found */ | |
5025 #endif | |
5026 second_indent = | |
5027 get_indent_lnum(curwin->w_cursor.lnum + 1); | |
7 | 5028 #ifdef FEAT_COMMENTS |
3584 | 5029 } |
5030 else | |
5031 { | |
5032 second_indent = next_leader_len; | |
5033 do_comments_list = 1; | |
5034 } | |
5035 #endif | |
5036 } | |
7 | 5037 else if (do_number_indent) |
3584 | 5038 { |
5039 #ifdef FEAT_COMMENTS | |
5040 if (leader_len == 0 && next_leader_len == 0) | |
5041 { | |
5042 /* no comment found */ | |
5043 #endif | |
5044 second_indent = | |
5045 get_number_indent(curwin->w_cursor.lnum); | |
5046 #ifdef FEAT_COMMENTS | |
5047 } | |
5048 else | |
5049 { | |
5050 /* get_number_indent() is now "comment aware"... */ | |
5051 second_indent = | |
5052 get_number_indent(curwin->w_cursor.lnum); | |
5053 do_comments_list = 1; | |
5054 } | |
5055 #endif | |
5056 } | |
7 | 5057 } |
5058 | |
5059 /* | |
5060 * When the comment leader changes, it's the end of the paragraph. | |
5061 */ | |
5062 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count | |
5063 #ifdef FEAT_COMMENTS | |
5064 || !same_leader(curwin->w_cursor.lnum, | |
5065 leader_len, leader_flags, | |
5066 next_leader_len, next_leader_flags) | |
5067 #endif | |
5068 ) | |
5069 is_end_par = TRUE; | |
5070 | |
5071 /* | |
5072 * If we have got to the end of a paragraph, or the line is | |
5073 * getting long, format it. | |
5074 */ | |
5075 if (is_end_par || force_format) | |
5076 { | |
5077 if (need_set_indent) | |
5078 /* replace indent in first line with minimal number of | |
5079 * tabs and spaces, according to current options */ | |
5080 (void)set_indent(get_indent(), SIN_CHANGED); | |
5081 | |
5082 /* put cursor on last non-space */ | |
5083 State = NORMAL; /* don't go past end-of-line */ | |
5084 coladvance((colnr_T)MAXCOL); | |
5085 while (curwin->w_cursor.col && vim_isspace(gchar_cursor())) | |
5086 dec_cursor(); | |
5087 | |
5088 /* do the formatting, without 'showmode' */ | |
5089 State = INSERT; /* for open_line() */ | |
5090 smd_save = p_smd; | |
5091 p_smd = FALSE; | |
5092 insertchar(NUL, INSCHAR_FORMAT | |
5093 #ifdef FEAT_COMMENTS | |
5094 + (do_comments ? INSCHAR_DO_COM : 0) | |
3584 | 5095 + (do_comments && do_comments_list |
5096 ? INSCHAR_COM_LIST : 0) | |
7 | 5097 #endif |
1563 | 5098 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent); |
7 | 5099 State = old_State; |
5100 p_smd = smd_save; | |
5101 second_indent = -1; | |
5102 /* at end of par.: need to set indent of next par. */ | |
5103 need_set_indent = is_end_par; | |
5104 if (is_end_par) | |
5105 { | |
5106 /* When called with a negative line count, break at the | |
5107 * end of the paragraph. */ | |
5108 if (line_count < 0) | |
5109 break; | |
5110 first_par_line = TRUE; | |
5111 } | |
5112 force_format = FALSE; | |
5113 } | |
5114 | |
5115 /* | |
5116 * When still in same paragraph, join the lines together. But | |
5403 | 5117 * first delete the leader from the second line. |
7 | 5118 */ |
5119 if (!is_end_par) | |
5120 { | |
5121 advance = FALSE; | |
5122 curwin->w_cursor.lnum++; | |
5123 curwin->w_cursor.col = 0; | |
5124 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
|
5125 break; |
7 | 5126 #ifdef FEAT_COMMENTS |
5127 if (next_leader_len > 0) | |
5403 | 5128 { |
5129 (void)del_bytes((long)next_leader_len, FALSE, FALSE); | |
7 | 5130 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L, |
15326
fe428bee74b3
patch 8.1.0671: cursor in the wrong column after auto-formatting
Bram Moolenaar <Bram@vim.org>
parents:
15062
diff
changeset
|
5131 (long)-next_leader_len, 0); |
5403 | 5132 } else |
5133 #endif | |
5134 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */ | |
5135 { | |
12323
4dba3e4f3b01
patch 8.0.1041: bogus characters when indenting during visual-block append
Christian Brabandt <cb@256bit.org>
parents:
11997
diff
changeset
|
5136 int indent = getwhitecols_curline(); |
5403 | 5137 |
5138 if (indent > 0) | |
5139 { | |
5140 (void)del_bytes(indent, FALSE, FALSE); | |
5141 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
|
5142 (colnr_T)0, 0L, (long)-indent, 0); |
5415 | 5143 } |
5403 | 5144 } |
7 | 5145 curwin->w_cursor.lnum--; |
5848 | 5146 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL) |
7 | 5147 { |
5148 beep_flush(); | |
5149 break; | |
5150 } | |
5151 first_par_line = FALSE; | |
5152 /* If the line is getting long, format it next time */ | |
5153 if (STRLEN(ml_get_curline()) > (size_t)max_len) | |
5154 force_format = TRUE; | |
5155 else | |
5156 force_format = FALSE; | |
5157 } | |
5158 } | |
5159 line_breakcheck(); | |
5160 } | |
5161 } | |
5162 | |
5163 /* | |
5164 * Return TRUE if line "lnum" ends in a white character. | |
5165 */ | |
5166 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5167 ends_in_white(linenr_T lnum) |
7 | 5168 { |
5169 char_u *s = ml_get(lnum); | |
5170 size_t l; | |
5171 | |
5172 if (*s == NUL) | |
5173 return FALSE; | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
5174 /* Don't use STRLEN() inside VIM_ISWHITE(), SAS/C complains: "macro |
7 | 5175 * invocation may call function multiple times". */ |
5176 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
|
5177 return VIM_ISWHITE(s[l]); |
7 | 5178 } |
5179 | |
5180 /* | |
5181 * Blank lines, and lines containing only the comment leader, are left | |
5182 * untouched by the formatting. The function returns TRUE in this | |
5183 * case. It also returns TRUE when a line starts with the end of a comment | |
5184 * ('e' in comment flags), so that this line is skipped, and not joined to the | |
5185 * previous line. A new paragraph starts after a blank line, or when the | |
5186 * comment leader changes -- webb. | |
5187 */ | |
5188 #ifdef FEAT_COMMENTS | |
5189 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5190 fmt_check_par( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5191 linenr_T lnum, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5192 int *leader_len, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5193 char_u **leader_flags, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5194 int do_comments) |
7 | 5195 { |
5196 char_u *flags = NULL; /* init for GCC */ | |
5197 char_u *ptr; | |
5198 | |
5199 ptr = ml_get(lnum); | |
5200 if (do_comments) | |
3562 | 5201 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE); |
7 | 5202 else |
5203 *leader_len = 0; | |
5204 | |
5205 if (*leader_len > 0) | |
5206 { | |
5207 /* | |
5208 * Search for 'e' flag in comment leader flags. | |
5209 */ | |
5210 flags = *leader_flags; | |
5211 while (*flags && *flags != ':' && *flags != COM_END) | |
5212 ++flags; | |
5213 } | |
5214 | |
5215 return (*skipwhite(ptr + *leader_len) == NUL | |
5216 || (*leader_len > 0 && *flags == COM_END) | |
5217 || startPS(lnum, NUL, FALSE)); | |
5218 } | |
5219 #else | |
5220 static int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5221 fmt_check_par(linenr_T lnum) |
7 | 5222 { |
5223 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE)); | |
5224 } | |
5225 #endif | |
5226 | |
5227 /* | |
5228 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the | |
5229 * previous line is in the same paragraph. Used for auto-formatting. | |
5230 */ | |
5231 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5232 paragraph_start(linenr_T lnum) |
7 | 5233 { |
5234 char_u *p; | |
5235 #ifdef FEAT_COMMENTS | |
5236 int leader_len = 0; /* leader len of current line */ | |
5237 char_u *leader_flags = NULL; /* flags for leader of current line */ | |
5238 int next_leader_len; /* leader len of next line */ | |
5239 char_u *next_leader_flags; /* flags for leader of next line */ | |
5240 int do_comments; /* format comments */ | |
5241 #endif | |
5242 | |
5243 if (lnum <= 1) | |
5244 return TRUE; /* start of the file */ | |
5245 | |
5246 p = ml_get(lnum - 1); | |
5247 if (*p == NUL) | |
5248 return TRUE; /* after empty line */ | |
5249 | |
5250 #ifdef FEAT_COMMENTS | |
5251 do_comments = has_format_option(FO_Q_COMS); | |
5252 #endif | |
5253 if (fmt_check_par(lnum - 1 | |
5254 #ifdef FEAT_COMMENTS | |
5255 , &leader_len, &leader_flags, do_comments | |
5256 #endif | |
5257 )) | |
5258 return TRUE; /* after non-paragraph line */ | |
5259 | |
5260 if (fmt_check_par(lnum | |
5261 #ifdef FEAT_COMMENTS | |
5262 , &next_leader_len, &next_leader_flags, do_comments | |
5263 #endif | |
5264 )) | |
5265 return TRUE; /* "lnum" is not a paragraph line */ | |
5266 | |
5267 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1)) | |
5268 return TRUE; /* missing trailing space in previous line. */ | |
5269 | |
5270 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0)) | |
5271 return TRUE; /* numbered item starts in "lnum". */ | |
5272 | |
5273 #ifdef FEAT_COMMENTS | |
5274 if (!same_leader(lnum - 1, leader_len, leader_flags, | |
5275 next_leader_len, next_leader_flags)) | |
5276 return TRUE; /* change of comment leader. */ | |
5277 #endif | |
5278 | |
5279 return FALSE; | |
5280 } | |
5281 | |
5282 /* | |
5283 * prepare a few things for block mode yank/delete/tilde | |
5284 * | |
5285 * for delete: | |
5286 * - textlen includes the first/last char to be (partly) deleted | |
5287 * - start/endspaces is the number of columns that are taken by the | |
5288 * first/last deleted char minus the number of columns that have to be | |
1839 | 5289 * deleted. |
5290 * for yank and tilde: | |
7 | 5291 * - textlen includes the first/last char to be wholly yanked |
5292 * - start/endspaces is the number of columns of the first/last yanked char | |
5293 * that are to be yanked. | |
5294 */ | |
5295 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5296 block_prep( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5297 oparg_T *oap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5298 struct block_def *bdp, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5299 linenr_T lnum, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5300 int is_del) |
7 | 5301 { |
5302 int incr = 0; | |
5303 char_u *pend; | |
5304 char_u *pstart; | |
5305 char_u *line; | |
5306 char_u *prev_pstart; | |
5307 char_u *prev_pend; | |
5308 | |
5309 bdp->startspaces = 0; | |
5310 bdp->endspaces = 0; | |
5311 bdp->textlen = 0; | |
5312 bdp->start_vcol = 0; | |
5313 bdp->end_vcol = 0; | |
5314 bdp->is_short = FALSE; | |
5315 bdp->is_oneChar = FALSE; | |
5316 bdp->pre_whitesp = 0; | |
5317 bdp->pre_whitesp_c = 0; | |
5318 bdp->end_char_vcols = 0; | |
5319 bdp->start_char_vcols = 0; | |
5320 | |
5321 line = ml_get(lnum); | |
5322 pstart = line; | |
5323 prev_pstart = line; | |
5324 while (bdp->start_vcol < oap->start_vcol && *pstart) | |
5325 { | |
5326 /* Count a tab for what it's worth (if list mode not on) */ | |
5995 | 5327 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol); |
7 | 5328 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
|
5329 if (VIM_ISWHITE(*pstart)) |
7 | 5330 { |
5331 bdp->pre_whitesp += incr; | |
5332 bdp->pre_whitesp_c++; | |
5333 } | |
5334 else | |
5335 { | |
5336 bdp->pre_whitesp = 0; | |
5337 bdp->pre_whitesp_c = 0; | |
5338 } | |
5339 prev_pstart = pstart; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5340 MB_PTR_ADV(pstart); |
7 | 5341 } |
5342 bdp->start_char_vcols = incr; | |
5343 if (bdp->start_vcol < oap->start_vcol) /* line too short */ | |
5344 { | |
5345 bdp->end_vcol = bdp->start_vcol; | |
5346 bdp->is_short = TRUE; | |
5347 if (!is_del || oap->op_type == OP_APPEND) | |
5348 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1; | |
5349 } | |
5350 else | |
5351 { | |
5352 /* notice: this converts partly selected Multibyte characters to | |
5353 * spaces, too. */ | |
5354 bdp->startspaces = bdp->start_vcol - oap->start_vcol; | |
5355 if (is_del && bdp->startspaces) | |
5356 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces; | |
5357 pend = pstart; | |
5358 bdp->end_vcol = bdp->start_vcol; | |
5359 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */ | |
5360 { | |
5361 bdp->is_oneChar = TRUE; | |
5362 if (oap->op_type == OP_INSERT) | |
5363 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces; | |
5364 else if (oap->op_type == OP_APPEND) | |
5365 { | |
5366 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1; | |
5367 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces; | |
5368 } | |
5369 else | |
5370 { | |
5371 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1; | |
5372 if (is_del && oap->op_type != OP_LSHIFT) | |
5373 { | |
5374 /* just putting the sum of those two into | |
5375 * bdp->startspaces doesn't work for Visual replace, | |
5376 * so we have to split the tab in two */ | |
5377 bdp->startspaces = bdp->start_char_vcols | |
5378 - (bdp->start_vcol - oap->start_vcol); | |
5379 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1; | |
5380 } | |
5381 } | |
5382 } | |
5383 else | |
5384 { | |
5385 prev_pend = pend; | |
5386 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL) | |
5387 { | |
5388 /* Count a tab for what it's worth (if list mode not on) */ | |
5389 prev_pend = pend; | |
6535 | 5390 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol); |
7 | 5391 bdp->end_vcol += incr; |
5392 } | |
5393 if (bdp->end_vcol <= oap->end_vcol | |
5394 && (!is_del | |
5395 || oap->op_type == OP_APPEND | |
5396 || oap->op_type == OP_REPLACE)) /* line too short */ | |
5397 { | |
5398 bdp->is_short = TRUE; | |
5399 /* Alternative: include spaces to fill up the block. | |
5400 * Disadvantage: can lead to trailing spaces when the line is | |
5401 * short where the text is put */ | |
5402 /* if (!is_del || oap->op_type == OP_APPEND) */ | |
5403 if (oap->op_type == OP_APPEND || virtual_op) | |
5404 bdp->endspaces = oap->end_vcol - bdp->end_vcol | |
593 | 5405 + oap->inclusive; |
7 | 5406 else |
5407 bdp->endspaces = 0; /* replace doesn't add characters */ | |
5408 } | |
5409 else if (bdp->end_vcol > oap->end_vcol) | |
5410 { | |
5411 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1; | |
5412 if (!is_del && bdp->endspaces) | |
5413 { | |
5414 bdp->endspaces = incr - bdp->endspaces; | |
5415 if (pend != pstart) | |
5416 pend = prev_pend; | |
5417 } | |
5418 } | |
5419 } | |
5420 bdp->end_char_vcols = incr; | |
5421 if (is_del && bdp->startspaces) | |
5422 pstart = prev_pstart; | |
5423 bdp->textlen = (int)(pend - pstart); | |
5424 } | |
5425 bdp->textcol = (colnr_T) (pstart - line); | |
5426 bdp->textstart = pstart; | |
5427 } | |
5428 | |
5429 /* | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5430 * Handle the add/subtract operator. |
7 | 5431 */ |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5432 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5433 op_addsub( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5434 oparg_T *oap, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5435 linenr_T Prenum1, /* Amount of add/subtract */ |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5436 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
|
5437 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5438 pos_T pos; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5439 struct block_def bd; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5440 int change_cnt = 0; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5441 linenr_T amount = Prenum1; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5442 |
15048
73f59cd01ba7
patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5443 // 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
|
5444 // 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
|
5445 // 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
|
5446 #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
|
5447 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
|
5448 #endif |
73f59cd01ba7
patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5449 |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5450 if (!VIsual_active) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5451 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5452 pos = curwin->w_cursor; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5453 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
|
5454 { |
73f59cd01ba7
patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5455 #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
|
5456 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
|
5457 #endif |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5458 return; |
15048
73f59cd01ba7
patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5459 } |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5460 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
|
5461 #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
|
5462 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
|
5463 #endif |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5464 if (change_cnt) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5465 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
|
5466 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5467 else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5468 { |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5469 int one_change; |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5470 int length; |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5471 pos_T startpos; |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5472 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5473 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
|
5474 (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
|
5475 { |
73f59cd01ba7
patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5476 #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
|
5477 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
|
5478 #endif |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5479 return; |
15048
73f59cd01ba7
patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5480 } |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5481 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5482 pos = oap->start; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5483 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
|
5484 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5485 if (oap->block_mode) /* Visual block mode */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5486 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5487 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
|
5488 pos.col = bd.textcol; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5489 length = bd.textlen; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5490 } |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5491 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
|
5492 { |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5493 curwin->w_cursor.col = 0; |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5494 pos.col = 0; |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5495 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
|
5496 } |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5497 else /* oap->motion_type == MCHAR */ |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5498 { |
12996
973a0037f4c3
patch 8.0.1374: CTRL-A does not work with an empty line
Christian Brabandt <cb@256bit.org>
parents:
12642
diff
changeset
|
5499 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
|
5500 dec(&(oap->end)); |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5501 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
|
5502 pos.col = 0; |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5503 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
|
5504 { |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5505 pos.col += oap->start.col; |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5506 length -= oap->start.col; |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5507 } |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5508 if (pos.lnum == oap->end.lnum) |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5509 { |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5510 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
|
5511 if (oap->end.col >= length) |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5512 oap->end.col = length - 1; |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5513 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
|
5514 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5515 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5516 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
|
5517 if (one_change) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5518 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5519 /* Remember the start position of the first change. */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5520 if (change_cnt == 0) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5521 startpos = curbuf->b_op_start; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5522 ++change_cnt; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5523 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5524 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5525 #ifdef FEAT_NETBEANS_INTG |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5526 if (netbeans_active() && one_change) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5527 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5528 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
|
5529 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5530 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
|
5531 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
|
5532 &ptr[pos.col], length); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5533 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5534 #endif |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5535 if (g_cmd && one_change) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5536 amount += Prenum1; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5537 } |
15048
73f59cd01ba7
patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5538 |
73f59cd01ba7
patch 8.1.0535: increment/decrement might get interrupted by updating folds
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
5539 #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
|
5540 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
|
5541 #endif |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5542 if (change_cnt) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5543 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
|
5544 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5545 if (!change_cnt && oap->is_VIsual) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5546 /* No change: need to remove the Visual selection */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5547 redraw_curbuf_later(INVERTED); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5548 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5549 /* Set '[ mark if something changed. Keep the last end |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5550 * position from do_addsub(). */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5551 if (change_cnt > 0) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5552 curbuf->b_op_start = startpos; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5553 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5554 if (change_cnt > p_report) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
5555 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
|
5556 change_cnt), change_cnt); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5557 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5558 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5559 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5560 /* |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5561 * 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
|
5562 * 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
|
5563 * |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5564 * 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
|
5565 */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5566 static int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5567 do_addsub( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5568 int op_type, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5569 pos_T *pos, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5570 int length, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5571 linenr_T Prenum1) |
7 | 5572 { |
5573 int col; | |
5574 char_u *buf1; | |
5575 char_u buf2[NUMBUFLEN]; | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5576 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */ |
7 | 5577 static int hexupper = FALSE; /* 0xABC */ |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
5578 uvarnumber_T n; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
5579 uvarnumber_T oldn; |
7 | 5580 char_u *ptr; |
5581 int c; | |
5582 int todel; | |
5583 int dohex; | |
5584 int dooct; | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5585 int dobin; |
7 | 5586 int doalp; |
5587 int firstdigit; | |
5588 int subtract; | |
6868 | 5589 int negative = FALSE; |
6891 | 5590 int was_positive = TRUE; |
6868 | 5591 int visual = VIsual_active; |
6921 | 5592 int did_change = FALSE; |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5593 pos_T save_cursor = curwin->w_cursor; |
6927 | 5594 int maxlen = 0; |
7570
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5595 pos_T startpos; |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5596 pos_T endpos; |
7 | 5597 |
5598 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */ | |
5599 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */ | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5600 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */ |
7 | 5601 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */ |
5602 | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5603 curwin->w_cursor = *pos; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5604 ptr = ml_get(pos->lnum); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5605 col = pos->col; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5606 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5607 if (*ptr == NUL) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5608 goto theend; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5609 |
7 | 5610 /* |
5611 * First check if we are on a hexadecimal number, after the "0x". | |
5612 */ | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5613 if (!VIsual_active) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5614 { |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5615 if (dobin) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5616 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
|
5617 { |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5618 --col; |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5619 if (has_mbyte) |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5620 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
|
5621 } |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5622 |
6868 | 5623 if (dohex) |
5624 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
|
5625 { |
6868 | 5626 --col; |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5627 if (has_mbyte) |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5628 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
|
5629 } |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5630 |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5631 if ( dobin |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5632 && dohex |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5633 && ! ((col > 0 |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5634 && (ptr[col] == 'X' |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5635 || ptr[col] == 'x') |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5636 && ptr[col - 1] == '0' |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5637 && (!has_mbyte || |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5638 !(*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
|
5639 && vim_isxdigit(ptr[col + 1])))) |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5640 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5641 |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5642 /* In case of binary/hexadecimal pattern overlap match, rescan */ |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5643 |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5644 col = pos->col; |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5645 |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5646 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
|
5647 { |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5648 col--; |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5649 if (has_mbyte) |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5650 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
|
5651 } |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5652 } |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5653 |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5654 if (( dohex |
6868 | 5655 && col > 0 |
5656 && (ptr[col] == 'X' | |
5657 || ptr[col] == 'x') | |
5658 && ptr[col - 1] == '0' | |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5659 && (!has_mbyte || |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5660 !(*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
|
5661 && vim_isxdigit(ptr[col + 1])) || |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5662 ( dobin |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5663 && col > 0 |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5664 && (ptr[col] == 'B' |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5665 || ptr[col] == 'b') |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5666 && ptr[col - 1] == '0' |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5667 && (!has_mbyte || |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5668 !(*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
|
5669 && vim_isbdigit(ptr[col + 1]))) |
6868 | 5670 { |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
5671 /* Found hexadecimal or binary number, move to its start. */ |
7 | 5672 --col; |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5673 if (has_mbyte) |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5674 col -= (*mb_head_off)(ptr, ptr + col); |
6868 | 5675 } |
5676 else | |
7 | 5677 { |
6868 | 5678 /* |
5679 * Search forward and then backward to find the start of number. | |
5680 */ | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5681 col = pos->col; |
6868 | 5682 |
5683 while (ptr[col] != NUL | |
5684 && !vim_isdigit(ptr[col]) | |
5685 && !(doalp && ASCII_ISALPHA(ptr[col]))) | |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5686 col += MB_PTR2LEN(ptr + col); |
6868 | 5687 |
5688 while (col > 0 | |
5689 && vim_isdigit(ptr[col - 1]) | |
5690 && !(doalp && ASCII_ISALPHA(ptr[col]))) | |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5691 { |
6868 | 5692 --col; |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5693 if (has_mbyte) |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5694 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
|
5695 } |
6868 | 5696 } |
5697 } | |
5698 | |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5699 if (visual) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5700 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5701 while (ptr[col] != NUL && length > 0 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5702 && !vim_isdigit(ptr[col]) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5703 && !(doalp && ASCII_ISALPHA(ptr[col]))) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5704 { |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5705 int mb_len = MB_PTR2LEN(ptr + col); |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5706 |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5707 col += mb_len; |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5708 length -= mb_len; |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5709 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5710 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5711 if (length == 0) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5712 goto theend; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5713 |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5714 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
|
5715 && (!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
|
5716 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5717 negative = TRUE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5718 was_positive = FALSE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5719 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5720 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5721 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5722 /* |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5723 * 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
|
5724 */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5725 firstdigit = ptr[col]; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5726 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
|
5727 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5728 beep_flush(); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5729 goto theend; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5730 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5731 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5732 if (doalp && ASCII_ISALPHA(firstdigit)) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5733 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5734 /* decrement or increment alphabetic character */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5735 if (op_type == OP_NR_SUB) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5736 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5737 if (CharOrd(firstdigit) < Prenum1) |
6927 | 5738 { |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5739 if (isupper(firstdigit)) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5740 firstdigit = 'A'; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5741 else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5742 firstdigit = 'a'; |
6927 | 5743 } |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5744 else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5745 #ifdef EBCDIC |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5746 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5747 #else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5748 firstdigit -= Prenum1; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5749 #endif |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5750 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5751 else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5752 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5753 if (26 - CharOrd(firstdigit) - 1 < Prenum1) |
6927 | 5754 { |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5755 if (isupper(firstdigit)) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5756 firstdigit = 'Z'; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5757 else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5758 firstdigit = 'z'; |
6927 | 5759 } |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5760 else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5761 #ifdef EBCDIC |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5762 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5763 #else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5764 firstdigit += Prenum1; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5765 #endif |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5766 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5767 curwin->w_cursor.col = col; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5768 if (!did_change) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5769 startpos = curwin->w_cursor; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5770 did_change = TRUE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5771 (void)del_char(FALSE); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5772 ins_char(firstdigit); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5773 endpos = curwin->w_cursor; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5774 curwin->w_cursor.col = col; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5775 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5776 else |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5777 { |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5778 if (col > 0 && ptr[col - 1] == '-' |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5779 && (!has_mbyte || |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
5780 !(*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
|
5781 && !visual) |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5782 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5783 /* negative number */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5784 --col; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5785 negative = TRUE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5786 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5787 /* get the number value (unsigned) */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5788 if (visual && VIsual_mode != 'V') |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5789 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
|
5790 ? (int)STRLEN(ptr) - col |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5791 : length); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5792 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5793 vim_str2nr(ptr + col, &pre, &length, |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5794 0 + (dobin ? STR2NR_BIN : 0) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5795 + (dooct ? STR2NR_OCT : 0) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5796 + (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
|
5797 NULL, &n, maxlen, FALSE); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5798 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5799 /* ignore leading '-' for hex and octal and bin numbers */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5800 if (pre && negative) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5801 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5802 ++col; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5803 --length; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5804 negative = FALSE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5805 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5806 /* add or subtract */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5807 subtract = FALSE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5808 if (op_type == OP_NR_SUB) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5809 subtract ^= TRUE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5810 if (negative) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5811 subtract ^= TRUE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5812 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5813 oldn = n; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5814 if (subtract) |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
5815 n -= (uvarnumber_T)Prenum1; |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5816 else |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
5817 n += (uvarnumber_T)Prenum1; |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5818 /* handle wraparound for decimal numbers */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5819 if (!pre) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5820 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5821 if (subtract) |
6927 | 5822 { |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5823 if (n > oldn) |
6868 | 5824 { |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
5825 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
|
5826 negative ^= TRUE; |
6868 | 5827 } |
7 | 5828 } |
5829 else | |
6868 | 5830 { |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5831 /* add */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5832 if (n < oldn) |
6868 | 5833 { |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
5834 n = (n ^ (uvarnumber_T)-1); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5835 negative ^= TRUE; |
6868 | 5836 } |
6927 | 5837 } |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5838 if (n == 0) |
6868 | 5839 negative = FALSE; |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5840 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5841 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5842 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
|
5843 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5844 /* need to remove the '-' */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5845 col--; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5846 length++; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5847 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5848 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5849 /* |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5850 * Delete the old number. |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5851 */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5852 curwin->w_cursor.col = col; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5853 if (!did_change) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5854 startpos = curwin->w_cursor; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5855 did_change = TRUE; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5856 todel = length; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5857 c = gchar_cursor(); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5858 /* |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5859 * 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
|
5860 * 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
|
5861 */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5862 if (c == '-') |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5863 --length; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5864 while (todel-- > 0) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5865 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5866 if (c < 0x100 && isalpha(c)) |
6868 | 5867 { |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5868 if (isupper(c)) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5869 hexupper = TRUE; |
6868 | 5870 else |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5871 hexupper = FALSE; |
6891 | 5872 } |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5873 /* del_char() will mark line needing displaying */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5874 (void)del_char(FALSE); |
6868 | 5875 c = gchar_cursor(); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5876 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5877 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5878 /* |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5879 * Prepare the leading characters in buf1[]. |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5880 * 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
|
5881 * Allocate a bit too much. |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5882 */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5883 buf1 = alloc((unsigned)length + NUMBUFLEN); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5884 if (buf1 == NULL) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5885 goto theend; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5886 ptr = buf1; |
8989
e600e696c0a1
commit https://github.com/vim/vim/commit/dc633cf82758f67f656cda7fa8ccc30414ee53f8
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
5887 if (negative && (!visual || was_positive)) |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5888 *ptr++ = '-'; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5889 if (pre) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5890 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5891 *ptr++ = '0'; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5892 --length; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5893 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5894 if (pre == 'b' || pre == 'B' || |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5895 pre == 'x' || pre == 'X') |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5896 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5897 *ptr++ = pre; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5898 --length; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5899 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5900 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5901 /* |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5902 * Put the number characters in buf2[]. |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5903 */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5904 if (pre == 'b' || pre == 'B') |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5905 { |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5906 int i; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5907 int bit = 0; |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
5908 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
|
5909 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5910 /* leading zeros */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5911 for (bit = bits; bit > 0; bit--) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5912 if ((n >> (bit - 1)) & 0x1) break; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5913 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5914 for (i = 0; bit > 0; bit--) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5915 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
|
5916 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5917 buf2[i] = '\0'; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5918 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5919 else if (pre == 0) |
13610
e76499e85744
patch 8.0.1677: no compiler warning for wrong format in vim_snprintf()
Christian Brabandt <cb@256bit.org>
parents:
13425
diff
changeset
|
5920 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu", |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5921 (long_long_u_T)n); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5922 else if (pre == '0') |
13610
e76499e85744
patch 8.0.1677: no compiler warning for wrong format in vim_snprintf()
Christian Brabandt <cb@256bit.org>
parents:
13425
diff
changeset
|
5923 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo", |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5924 (long_long_u_T)n); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5925 else if (pre && hexupper) |
13610
e76499e85744
patch 8.0.1677: no compiler warning for wrong format in vim_snprintf()
Christian Brabandt <cb@256bit.org>
parents:
13425
diff
changeset
|
5926 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX", |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5927 (long_long_u_T)n); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5928 else |
13610
e76499e85744
patch 8.0.1677: no compiler warning for wrong format in vim_snprintf()
Christian Brabandt <cb@256bit.org>
parents:
13425
diff
changeset
|
5929 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx", |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5930 (long_long_u_T)n); |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5931 length -= (int)STRLEN(buf2); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5932 |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5933 /* |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5934 * 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
|
5935 * 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
|
5936 * Don't do this when |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5937 * 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
|
5938 */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5939 if (firstdigit == '0' && !(dooct && pre == 0)) |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5940 while (length-- > 0) |
6868 | 5941 *ptr++ = '0'; |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5942 *ptr = NUL; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5943 STRCAT(buf1, buf2); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5944 ins_str(buf1); /* insert the new number */ |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5945 vim_free(buf1); |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5946 endpos = curwin->w_cursor; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5947 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
|
5948 --curwin->w_cursor.col; |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5949 } |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5950 |
7570
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5951 if (did_change) |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5952 { |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5953 /* set the '[ and '] marks */ |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5954 curbuf->b_op_start = startpos; |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5955 curbuf->b_op_end = endpos; |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5956 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
|
5957 --curbuf->b_op_end.col; |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
5958 } |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5959 |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5960 theend: |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5961 if (visual) |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5962 curwin->w_cursor = save_cursor; |
8690
6a1becf4f282
commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents:
8399
diff
changeset
|
5963 else if (did_change) |
6a1becf4f282
commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents:
8399
diff
changeset
|
5964 curwin->w_set_curswant = TRUE; |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
5965 |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
5966 return did_change; |
7 | 5967 } |
5968 | |
5969 #ifdef FEAT_VIMINFO | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5970 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5971 static yankreg_T *y_read_regs = NULL; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5972 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5973 #define REG_PREVIOUS 1 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5974 #define REG_EXEC 2 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5975 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5976 /* |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5977 * Prepare for reading viminfo registers when writing viminfo later. |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5978 */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5979 void |
9282
9f97a6290c63
commit https://github.com/vim/vim/commit/cf089463492fab53b2a5d81517829d22f882f82e
Christian Brabandt <cb@256bit.org>
parents:
9272
diff
changeset
|
5980 prepare_viminfo_registers(void) |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5981 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5982 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5983 * (int)sizeof(yankreg_T)); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5984 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5985 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5986 void |
9282
9f97a6290c63
commit https://github.com/vim/vim/commit/cf089463492fab53b2a5d81517829d22f882f82e
Christian Brabandt <cb@256bit.org>
parents:
9272
diff
changeset
|
5987 finish_viminfo_registers(void) |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5988 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5989 int i; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5990 int j; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5991 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5992 if (y_read_regs != NULL) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5993 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5994 for (i = 0; i < NUM_REGISTERS; ++i) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5995 if (y_read_regs[i].y_array != NULL) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5996 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5997 for (j = 0; j < y_read_regs[i].y_size; j++) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5998 vim_free(y_read_regs[i].y_array[j]); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
5999 vim_free(y_read_regs[i].y_array); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6000 } |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13202
diff
changeset
|
6001 VIM_CLEAR(y_read_regs); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6002 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6003 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6004 |
7 | 6005 int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6006 read_viminfo_register(vir_T *virp, int force) |
7 | 6007 { |
6008 int eof; | |
6009 int do_it = TRUE; | |
6010 int size; | |
6011 int limit; | |
6012 int i; | |
6013 int set_prev = FALSE; | |
6014 char_u *str; | |
6015 char_u **array = NULL; | |
6508 | 6016 int new_type = MCHAR; /* init to shut up compiler */ |
6017 colnr_T new_width = 0; /* init to shut up compiler */ | |
7 | 6018 |
6019 /* We only get here (hopefully) if line[0] == '"' */ | |
6020 str = virp->vir_line + 1; | |
1893 | 6021 |
6022 /* If the line starts with "" this is the y_previous register. */ | |
7 | 6023 if (*str == '"') |
6024 { | |
6025 set_prev = TRUE; | |
6026 str++; | |
6027 } | |
1893 | 6028 |
7 | 6029 if (!ASCII_ISALNUM(*str) && *str != '-') |
6030 { | |
6031 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line)) | |
6032 return TRUE; /* too many errors, pretend end-of-file */ | |
6033 do_it = FALSE; | |
6034 } | |
6035 get_yank_register(*str++, FALSE); | |
6036 if (!force && y_current->y_array != NULL) | |
6037 do_it = FALSE; | |
1893 | 6038 |
6039 if (*str == '@') | |
6040 { | |
6041 /* "x@: register x used for @@ */ | |
6042 if (force || execreg_lastc == NUL) | |
6043 execreg_lastc = str[-1]; | |
6044 } | |
6045 | |
7 | 6046 size = 0; |
6047 limit = 100; /* Optimized for registers containing <= 100 lines */ | |
6048 if (do_it) | |
6049 { | |
6462 | 6050 /* |
6051 * Build the new register in array[]. | |
6052 * y_array is kept as-is until done. | |
6053 * The "do_it" flag is reset when something is wrong, in which case | |
6054 * array[] needs to be freed. | |
6055 */ | |
7 | 6056 if (set_prev) |
6057 y_previous = y_current; | |
6462 | 6058 array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *))); |
1893 | 6059 str = skipwhite(skiptowhite(str)); |
7 | 6060 if (STRNCMP(str, "CHAR", 4) == 0) |
6462 | 6061 new_type = MCHAR; |
7 | 6062 else if (STRNCMP(str, "BLOCK", 5) == 0) |
6462 | 6063 new_type = MBLOCK; |
7 | 6064 else |
6462 | 6065 new_type = MLINE; |
7 | 6066 /* get the block width; if it's missing we get a zero, which is OK */ |
6067 str = skipwhite(skiptowhite(str)); | |
6462 | 6068 new_width = getdigits(&str); |
7 | 6069 } |
6070 | |
6071 while (!(eof = viminfo_readline(virp)) | |
6072 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<')) | |
6073 { | |
6074 if (do_it) | |
6075 { | |
6462 | 6076 if (size == limit) |
7 | 6077 { |
6462 | 6078 char_u **new_array = (char_u **) |
7 | 6079 alloc((unsigned)(limit * 2 * sizeof(char_u *))); |
6462 | 6080 |
6081 if (new_array == NULL) | |
6082 { | |
6083 do_it = FALSE; | |
6084 break; | |
6085 } | |
7 | 6086 for (i = 0; i < limit; i++) |
6462 | 6087 new_array[i] = array[i]; |
7 | 6088 vim_free(array); |
6462 | 6089 array = new_array; |
7 | 6090 limit *= 2; |
6091 } | |
6092 str = viminfo_readstring(virp, 1, TRUE); | |
6093 if (str != NULL) | |
6094 array[size++] = str; | |
6095 else | |
6462 | 6096 /* error, don't store the result */ |
7 | 6097 do_it = FALSE; |
6098 } | |
6099 } | |
6508 | 6100 |
7 | 6101 if (do_it) |
6102 { | |
6462 | 6103 /* free y_array[] */ |
6104 for (i = 0; i < y_current->y_size; i++) | |
6105 vim_free(y_current->y_array[i]); | |
6106 vim_free(y_current->y_array); | |
6107 | |
6108 y_current->y_type = new_type; | |
6109 y_current->y_width = new_width; | |
6110 y_current->y_size = size; | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6111 y_current->y_time_set = 0; |
7 | 6112 if (size == 0) |
6113 { | |
6114 y_current->y_array = NULL; | |
6115 } | |
6462 | 6116 else |
7 | 6117 { |
6462 | 6118 /* Move the lines from array[] to y_array[]. */ |
7 | 6119 y_current->y_array = |
6120 (char_u **)alloc((unsigned)(size * sizeof(char_u *))); | |
6121 for (i = 0; i < size; i++) | |
6462 | 6122 { |
6123 if (y_current->y_array == NULL) | |
6124 vim_free(array[i]); | |
6125 else | |
6126 y_current->y_array[i] = array[i]; | |
6127 } | |
7 | 6128 } |
6462 | 6129 } |
6130 else | |
6131 { | |
6132 /* Free array[] if it was filled. */ | |
6133 for (i = 0; i < size; i++) | |
6134 vim_free(array[i]); | |
6135 } | |
6136 vim_free(array); | |
6137 | |
7 | 6138 return eof; |
6139 } | |
6140 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6141 /* |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6142 * Accept a new style register line from the viminfo, store it when it's new. |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6143 */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6144 void |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6145 handle_viminfo_register(garray_T *values, int force) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6146 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6147 bval_T *vp = (bval_T *)values->ga_data; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6148 int flags; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6149 int name; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6150 int type; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6151 int linecount; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6152 int width; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6153 time_t timestamp; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6154 yankreg_T *y_ptr; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6155 int i; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6156 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6157 /* Check the format: |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6158 * |{bartype},{flags},{name},{type}, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6159 * {linecount},{width},{timestamp},"line1","line2" |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6160 */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6161 if (values->ga_len < 6 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6162 || vp[0].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6163 || vp[1].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6164 || vp[2].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6165 || vp[3].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6166 || vp[4].bv_type != BVAL_NR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6167 || vp[5].bv_type != BVAL_NR) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6168 return; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6169 flags = vp[0].bv_nr; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6170 name = vp[1].bv_nr; |
9307
eb52a2670c96
commit https://github.com/vim/vim/commit/67e3720a9ddd8a9d2e8344358c28fa1f4196db0d
Christian Brabandt <cb@256bit.org>
parents:
9282
diff
changeset
|
6171 if (name < 0 || name >= NUM_REGISTERS) |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6172 return; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6173 type = vp[2].bv_nr; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6174 if (type != MCHAR && type != MLINE && type != MBLOCK) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6175 return; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6176 linecount = vp[3].bv_nr; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6177 if (values->ga_len < 6 + linecount) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6178 return; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6179 width = vp[4].bv_nr; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6180 if (width < 0) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6181 return; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6182 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6183 if (y_read_regs != NULL) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6184 /* Reading viminfo for merging and writing. Store the register |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6185 * content, don't update the current registers. */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6186 y_ptr = &y_read_regs[name]; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6187 else |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6188 y_ptr = &y_regs[name]; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6189 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6190 /* Do not overwrite unless forced or the timestamp is newer. */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6191 timestamp = (time_t)vp[5].bv_nr; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6192 if (y_ptr->y_array != NULL && !force |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6193 && (timestamp == 0 || y_ptr->y_time_set > timestamp)) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6194 return; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6195 |
9332
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
6196 if (y_ptr->y_array != NULL) |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
6197 for (i = 0; i < y_ptr->y_size; i++) |
a9b8f5613601
commit https://github.com/vim/vim/commit/ad5ca9bc1e7145474adb082775a805f1731e9e37
Christian Brabandt <cb@256bit.org>
parents:
9307
diff
changeset
|
6198 vim_free(y_ptr->y_array[i]); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6199 vim_free(y_ptr->y_array); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6200 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6201 if (y_read_regs == NULL) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6202 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6203 if (flags & REG_PREVIOUS) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6204 y_previous = y_ptr; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6205 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL)) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6206 execreg_lastc = get_register_name(name); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6207 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6208 y_ptr->y_type = type; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6209 y_ptr->y_width = width; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6210 y_ptr->y_size = linecount; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6211 y_ptr->y_time_set = timestamp; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6212 if (linecount == 0) |
16429
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6213 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6214 y_ptr->y_array = NULL; |
16429
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6215 return; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6216 } |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6217 y_ptr->y_array = (char_u **)alloc((unsigned)(linecount * sizeof(char_u *))); |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6218 if (y_ptr->y_array == NULL) |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6219 { |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6220 y_ptr->y_size = 0; // ensure object state is consistent |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6221 return; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6222 } |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6223 for (i = 0; i < linecount; i++) |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6224 { |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6225 if (vp[i + 6].bv_allocated) |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6226 { |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6227 y_ptr->y_array[i] = vp[i + 6].bv_string; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6228 vp[i + 6].bv_string = NULL; |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6229 } |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6230 else |
a1229400434a
patch 8.1.1219: not checking for NULL return from alloc()
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
6231 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string); |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6232 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6233 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6234 |
7 | 6235 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6236 write_viminfo_registers(FILE *fp) |
7 | 6237 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6238 int i, j; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6239 char_u *type; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6240 char_u c; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6241 int num_lines; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6242 int max_num_lines; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6243 int max_kbyte; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6244 long len; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6245 yankreg_T *y_ptr; |
7 | 6246 |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6247 fputs(_("\n# Registers:\n"), fp); |
7 | 6248 |
6249 /* Get '<' value, use old '"' value if '<' is not found. */ | |
6250 max_num_lines = get_viminfo_parameter('<'); | |
6251 if (max_num_lines < 0) | |
6252 max_num_lines = get_viminfo_parameter('"'); | |
6253 if (max_num_lines == 0) | |
6254 return; | |
6255 max_kbyte = get_viminfo_parameter('s'); | |
6256 if (max_kbyte == 0) | |
6257 return; | |
1893 | 6258 |
7 | 6259 for (i = 0; i < NUM_REGISTERS; i++) |
6260 { | |
6261 #ifdef FEAT_CLIPBOARD | |
6262 /* Skip '*'/'+' register, we don't want them back next time */ | |
6263 if (i == STAR_REGISTER || i == PLUS_REGISTER) | |
6264 continue; | |
6265 #endif | |
6266 #ifdef FEAT_DND | |
6267 /* Neither do we want the '~' register */ | |
6268 if (i == TILDE_REGISTER) | |
6269 continue; | |
6270 #endif | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6271 /* When reading viminfo for merging and writing: Use the register from |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6272 * viminfo if it's newer. */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6273 if (y_read_regs != NULL |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6274 && y_read_regs[i].y_array != NULL |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6275 && (y_regs[i].y_array == NULL || |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6276 y_read_regs[i].y_time_set > y_regs[i].y_time_set)) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6277 y_ptr = &y_read_regs[i]; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6278 else if (y_regs[i].y_array == NULL) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6279 continue; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6280 else |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6281 y_ptr = &y_regs[i]; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6282 |
55 | 6283 /* Skip empty registers. */ |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6284 num_lines = y_ptr->y_size; |
55 | 6285 if (num_lines == 0 |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6286 || (num_lines == 1 && y_ptr->y_type == MCHAR |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6287 && *y_ptr->y_array[0] == NUL)) |
55 | 6288 continue; |
6289 | |
7 | 6290 if (max_kbyte > 0) |
6291 { | |
6292 /* Skip register if there is more text than the maximum size. */ | |
6293 len = 0; | |
6294 for (j = 0; j < num_lines; j++) | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6295 len += (long)STRLEN(y_ptr->y_array[j]) + 1L; |
7 | 6296 if (len > (long)max_kbyte * 1024L) |
6297 continue; | |
6298 } | |
6299 | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6300 switch (y_ptr->y_type) |
7 | 6301 { |
6302 case MLINE: | |
6303 type = (char_u *)"LINE"; | |
6304 break; | |
6305 case MCHAR: | |
6306 type = (char_u *)"CHAR"; | |
6307 break; | |
6308 case MBLOCK: | |
6309 type = (char_u *)"BLOCK"; | |
6310 break; | |
6311 default: | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
6312 semsg(_("E574: Unknown register type %d"), y_ptr->y_type); |
7 | 6313 type = (char_u *)"LINE"; |
6314 break; | |
6315 } | |
6316 if (y_previous == &y_regs[i]) | |
6317 fprintf(fp, "\""); | |
6318 c = get_register_name(i); | |
1893 | 6319 fprintf(fp, "\"%c", c); |
6320 if (c == execreg_lastc) | |
6321 fprintf(fp, "@"); | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6322 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width); |
7 | 6323 |
6324 /* If max_num_lines < 0, then we save ALL the lines in the register */ | |
6325 if (max_num_lines > 0 && num_lines > max_num_lines) | |
6326 num_lines = max_num_lines; | |
6327 for (j = 0; j < num_lines; j++) | |
6328 { | |
6329 putc('\t', fp); | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6330 viminfo_writestring(fp, y_ptr->y_array[j]); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6331 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6332 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6333 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6334 int flags = 0; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6335 int remaining; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6336 |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6337 /* New style with a bar line. Format: |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6338 * |{bartype},{flags},{name},{type}, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6339 * {linecount},{width},{timestamp},"line1","line2" |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6340 * flags: REG_PREVIOUS - register is y_previous |
13202
2941a86f8aaa
patch 8.0.1475: invalid memory access in read_redo()
Christian Brabandt <cb@256bit.org>
parents:
13072
diff
changeset
|
6341 * REG_EXEC - used for @@ |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6342 */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6343 if (y_previous == &y_regs[i]) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6344 flags |= REG_PREVIOUS; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6345 if (c == execreg_lastc) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6346 flags |= REG_EXEC; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6347 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6348 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6349 (long)y_ptr->y_time_set); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6350 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6351 remaining = LSIZE - 71; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6352 for (j = 0; j < num_lines; j++) |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6353 { |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6354 putc(',', fp); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6355 --remaining; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6356 remaining = barline_writestring(fp, y_ptr->y_array[j], |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6357 remaining); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6358 } |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6359 putc('\n', fp); |
7 | 6360 } |
6361 } | |
6362 } | |
6363 #endif /* FEAT_VIMINFO */ | |
6364 | |
6365 #if defined(FEAT_CLIPBOARD) || defined(PROTO) | |
6366 /* | |
6367 * SELECTION / PRIMARY ('*') | |
6368 * | |
6369 * Text selection stuff that uses the GUI selection register '*'. When using a | |
6370 * GUI this may be text from another window, otherwise it is the last text we | |
6371 * had highlighted with VIsual mode. With mouse support, clicking the middle | |
6372 * button performs the paste, otherwise you will need to do <"*p>. " | |
6373 * If not under X, it is synonymous with the clipboard register '+'. | |
6374 * | |
6375 * X CLIPBOARD ('+') | |
6376 * | |
6377 * Text selection stuff that uses the GUI clipboard register '+'. | |
6378 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection. | |
6379 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed", | |
6380 * otherwise you will need to do <"+p>. " | |
6381 * If not under X, it is synonymous with the selection register '*'. | |
6382 */ | |
6383 | |
6384 /* | |
6385 * 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
|
6386 * so that the text is still available after Vim has exited. X selections |
7 | 6387 * only exist while the owning application exists, so we write to the |
6388 * permanent (while X runs) store CUT_BUFFER0. | |
6389 * Dump the CLIPBOARD selection if we own it (it's logically the more | |
6390 * 'permanent' of the two), otherwise the PRIMARY one. | |
6391 * For now, use a hard-coded sanity limit of 1Mb of data. | |
6392 */ | |
9834
80ace3687eec
commit https://github.com/vim/vim/commit/a6b7a08ae04a3cd4d9c45c906bb7a197e2135179
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
6393 #if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO) |
7 | 6394 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6395 x11_export_final_selection(void) |
7 | 6396 { |
6397 Display *dpy; | |
6398 char_u *str = NULL; | |
6399 long_u len = 0; | |
6400 int motion_type = -1; | |
6401 | |
6402 # ifdef FEAT_GUI | |
6403 if (gui.in_use) | |
6404 dpy = X_DISPLAY; | |
6405 else | |
6406 # endif | |
6407 # ifdef FEAT_XCLIPBOARD | |
6408 dpy = xterm_dpy; | |
6409 # else | |
6410 return; | |
6411 # endif | |
6412 | |
6413 /* Get selection to export */ | |
6414 if (clip_plus.owned) | |
6415 motion_type = clip_convert_selection(&str, &len, &clip_plus); | |
6416 else if (clip_star.owned) | |
6417 motion_type = clip_convert_selection(&str, &len, &clip_star); | |
6418 | |
6419 /* Check it's OK */ | |
6420 if (dpy != NULL && str != NULL && motion_type >= 0 | |
6421 && len < 1024*1024 && len > 0) | |
6422 { | |
4201 | 6423 int ok = TRUE; |
6424 | |
1924 | 6425 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from |
6426 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit | |
6427 * encoding conversion usually doesn't work, so keep the text as-is. | |
6428 */ | |
6429 if (has_mbyte) | |
6430 { | |
6431 vimconv_T vc; | |
6432 | |
6433 vc.vc_type = CONV_NONE; | |
6434 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK) | |
6435 { | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
2007
diff
changeset
|
6436 int intlen = len; |
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
2007
diff
changeset
|
6437 char_u *conv_str; |
2007 | 6438 |
4201 | 6439 vc.vc_fail = TRUE; |
2007 | 6440 conv_str = string_convert(&vc, str, &intlen); |
6441 len = intlen; | |
1924 | 6442 if (conv_str != NULL) |
6443 { | |
6444 vim_free(str); | |
6445 str = conv_str; | |
6446 } | |
4201 | 6447 else |
6448 { | |
6449 ok = FALSE; | |
6450 } | |
1924 | 6451 convert_setup(&vc, NULL, NULL); |
6452 } | |
4201 | 6453 else |
6454 { | |
6455 ok = FALSE; | |
6456 } | |
1924 | 6457 } |
4201 | 6458 |
6459 /* Do not store the string if conversion failed. Better to use any | |
6460 * other selection than garbled text. */ | |
6461 if (ok) | |
6462 { | |
6463 XStoreBuffer(dpy, (char *)str, (int)len, 0); | |
6464 XFlush(dpy); | |
6465 } | |
7 | 6466 } |
6467 | |
6468 vim_free(str); | |
6469 } | |
6470 #endif | |
6471 | |
6472 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6473 clip_free_selection(VimClipboard *cbd) |
7 | 6474 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6475 yankreg_T *y_ptr = y_current; |
7 | 6476 |
6477 if (cbd == &clip_plus) | |
6478 y_current = &y_regs[PLUS_REGISTER]; | |
6479 else | |
6480 y_current = &y_regs[STAR_REGISTER]; | |
6481 free_yank_all(); | |
6482 y_current->y_size = 0; | |
6483 y_current = y_ptr; | |
6484 } | |
6485 | |
6486 /* | |
15422
b55b89692fd2
patch 8.1.0719: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15326
diff
changeset
|
6487 * Get the selected text and put it in register '*' or '+'. |
7 | 6488 */ |
6489 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6490 clip_get_selection(VimClipboard *cbd) |
7 | 6491 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6492 yankreg_T *old_y_previous, *old_y_current; |
7 | 6493 pos_T old_cursor; |
6494 pos_T old_visual; | |
6495 int old_visual_mode; | |
6496 colnr_T old_curswant; | |
6497 int old_set_curswant; | |
6498 pos_T old_op_start, old_op_end; | |
6499 oparg_T oa; | |
6500 cmdarg_T ca; | |
6501 | |
6502 if (cbd->owned) | |
6503 { | |
6504 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL) | |
6505 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL)) | |
6506 return; | |
6507 | |
6508 /* Get the text between clip_star.start & clip_star.end */ | |
6509 old_y_previous = y_previous; | |
6510 old_y_current = y_current; | |
6511 old_cursor = curwin->w_cursor; | |
6512 old_curswant = curwin->w_curswant; | |
6513 old_set_curswant = curwin->w_set_curswant; | |
6514 old_op_start = curbuf->b_op_start; | |
6515 old_op_end = curbuf->b_op_end; | |
6516 old_visual = VIsual; | |
6517 old_visual_mode = VIsual_mode; | |
6518 clear_oparg(&oa); | |
6519 oa.regname = (cbd == &clip_plus ? '+' : '*'); | |
6520 oa.op_type = OP_YANK; | |
6521 vim_memset(&ca, 0, sizeof(ca)); | |
6522 ca.oap = &oa; | |
6523 ca.cmdchar = 'y'; | |
6524 ca.count1 = 1; | |
6525 ca.retval = CA_NO_ADJ_OP_END; | |
6526 do_pending_operator(&ca, 0, TRUE); | |
6527 y_previous = old_y_previous; | |
6528 y_current = old_y_current; | |
6529 curwin->w_cursor = old_cursor; | |
688 | 6530 changed_cline_bef_curs(); /* need to update w_virtcol et al */ |
7 | 6531 curwin->w_curswant = old_curswant; |
6532 curwin->w_set_curswant = old_set_curswant; | |
6533 curbuf->b_op_start = old_op_start; | |
6534 curbuf->b_op_end = old_op_end; | |
6535 VIsual = old_visual; | |
6536 VIsual_mode = old_visual_mode; | |
6537 } | |
11273
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
6538 else if (!is_clipboard_needs_update()) |
7 | 6539 { |
6540 clip_free_selection(cbd); | |
6541 | |
6542 /* Try to get selected text from another window */ | |
6543 clip_gen_request_selection(cbd); | |
6544 } | |
6545 } | |
6546 | |
2896 | 6547 /* |
6548 * Convert from the GUI selection string into the '*'/'+' register. | |
6549 */ | |
7 | 6550 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6551 clip_yank_selection( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6552 int type, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6553 char_u *str, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6554 long len, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6555 VimClipboard *cbd) |
7 | 6556 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6557 yankreg_T *y_ptr; |
7 | 6558 |
6559 if (cbd == &clip_plus) | |
6560 y_ptr = &y_regs[PLUS_REGISTER]; | |
6561 else | |
6562 y_ptr = &y_regs[STAR_REGISTER]; | |
6563 | |
6564 clip_free_selection(cbd); | |
6565 | |
5798 | 6566 str_to_reg(y_ptr, type, str, len, 0L, FALSE); |
7 | 6567 } |
6568 | |
6569 /* | |
6570 * Convert the '*'/'+' register into a GUI selection string returned in *str | |
6571 * with length *len. | |
6572 * Returns the motion type, or -1 for failure. | |
6573 */ | |
6574 int | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6575 clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd) |
7 | 6576 { |
6577 char_u *p; | |
6578 int lnum; | |
6579 int i, j; | |
6580 int_u eolsize; | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6581 yankreg_T *y_ptr; |
7 | 6582 |
6583 if (cbd == &clip_plus) | |
6584 y_ptr = &y_regs[PLUS_REGISTER]; | |
6585 else | |
6586 y_ptr = &y_regs[STAR_REGISTER]; | |
6587 | |
6588 #ifdef USE_CRNL | |
6589 eolsize = 2; | |
6590 #else | |
6591 eolsize = 1; | |
6592 #endif | |
6593 | |
6594 *str = NULL; | |
6595 *len = 0; | |
6596 if (y_ptr->y_array == NULL) | |
6597 return -1; | |
6598 | |
6599 for (i = 0; i < y_ptr->y_size; i++) | |
6600 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize; | |
6601 | |
6602 /* | |
6603 * Don't want newline character at end of last line if we're in MCHAR mode. | |
6604 */ | |
6605 if (y_ptr->y_type == MCHAR && *len >= eolsize) | |
6606 *len -= eolsize; | |
6607 | |
6608 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */ | |
6609 if (p == NULL) | |
6610 return -1; | |
6611 lnum = 0; | |
6612 for (i = 0, j = 0; i < (int)*len; i++, j++) | |
6613 { | |
6614 if (y_ptr->y_array[lnum][j] == '\n') | |
6615 p[i] = NUL; | |
6616 else if (y_ptr->y_array[lnum][j] == NUL) | |
6617 { | |
6618 #ifdef USE_CRNL | |
6619 p[i++] = '\r'; | |
6620 #endif | |
6621 p[i] = '\n'; | |
6622 lnum++; | |
6623 j = -1; | |
6624 } | |
6625 else | |
6626 p[i] = y_ptr->y_array[lnum][j]; | |
6627 } | |
6628 return y_ptr->y_type; | |
6629 } | |
6630 | |
6631 | |
6632 /* | |
6633 * If we have written to a clipboard register, send the text to the clipboard. | |
6634 */ | |
6635 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6636 may_set_selection(void) |
7 | 6637 { |
6638 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available) | |
6639 { | |
6640 clip_own_selection(&clip_star); | |
6641 clip_gen_set_selection(&clip_star); | |
6642 } | |
6643 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available) | |
6644 { | |
6645 clip_own_selection(&clip_plus); | |
6646 clip_gen_set_selection(&clip_plus); | |
6647 } | |
6648 } | |
6649 | |
6650 #endif /* FEAT_CLIPBOARD || PROTO */ | |
6651 | |
6652 | |
6653 #if defined(FEAT_DND) || defined(PROTO) | |
6654 /* | |
6655 * Replace the contents of the '~' register with str. | |
6656 */ | |
6657 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6658 dnd_yank_drag_data(char_u *str, long len) |
7 | 6659 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6660 yankreg_T *curr; |
7 | 6661 |
6662 curr = y_current; | |
6663 y_current = &y_regs[TILDE_REGISTER]; | |
6664 free_yank_all(); | |
5798 | 6665 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE); |
7 | 6666 y_current = curr; |
6667 } | |
6668 #endif | |
6669 | |
6670 | |
6671 #if defined(FEAT_EVAL) || defined(PROTO) | |
6672 /* | |
6673 * Return the type of a register. | |
6674 * Used for getregtype() | |
6675 * Returns MAUTO for error. | |
6676 */ | |
6677 char_u | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6678 get_reg_type(int regname, long *reglen) |
7 | 6679 { |
6680 switch (regname) | |
6681 { | |
6682 case '%': /* file name */ | |
6683 case '#': /* alternate file name */ | |
6684 case '=': /* expression */ | |
6685 case ':': /* last command line */ | |
6686 case '/': /* last search-pattern */ | |
6687 case '.': /* last inserted text */ | |
6688 #ifdef FEAT_SEARCHPATH | |
6689 case Ctrl_F: /* Filename under cursor */ | |
6690 case Ctrl_P: /* Path under cursor, expand via "path" */ | |
6691 #endif | |
6692 case Ctrl_W: /* word under cursor */ | |
6693 case Ctrl_A: /* WORD (mnemonic All) under cursor */ | |
6694 case '_': /* black hole: always empty */ | |
6695 return MCHAR; | |
6696 } | |
6697 | |
6698 #ifdef FEAT_CLIPBOARD | |
6699 regname = may_get_selection(regname); | |
6700 #endif | |
6701 | |
5596 | 6702 if (regname != NUL && !valid_yank_reg(regname, FALSE)) |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
6703 return MAUTO; |
5596 | 6704 |
7 | 6705 get_yank_register(regname, FALSE); |
6706 | |
6707 if (y_current->y_array != NULL) | |
6708 { | |
6709 if (reglen != NULL && y_current->y_type == MBLOCK) | |
6710 *reglen = y_current->y_width; | |
6711 return y_current->y_type; | |
6712 } | |
6713 return MAUTO; | |
6714 } | |
6715 | |
5796 | 6716 /* |
6717 * When "flags" has GREG_LIST return a list with text "s". | |
6718 * Otherwise just return "s". | |
6719 */ | |
6720 static char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6721 getreg_wrap_one_line(char_u *s, int flags) |
5796 | 6722 { |
6723 if (flags & GREG_LIST) | |
6724 { | |
6725 list_T *list = list_alloc(); | |
6726 | |
6727 if (list != NULL) | |
6728 { | |
6729 if (list_append_string(list, NULL, -1) == FAIL) | |
6730 { | |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8690
diff
changeset
|
6731 list_free(list); |
5796 | 6732 return NULL; |
6733 } | |
6734 list->lv_first->li_tv.vval.v_string = s; | |
6735 } | |
6736 return (char_u *)list; | |
6737 } | |
6738 return s; | |
6739 } | |
6740 | |
7 | 6741 /* |
6742 * Return the contents of a register as a single allocated string. | |
6743 * Used for "@r" in expressions and for getreg(). | |
6744 * Returns NULL for error. | |
5796 | 6745 * Flags: |
6746 * GREG_NO_EXPR Do not allow expression register | |
6747 * GREG_EXPR_SRC For the expression register: return expression itself, | |
6748 * not the result of its evaluation. | |
6749 * GREG_LIST Return a list of lines in place of a single string. | |
7 | 6750 */ |
6751 char_u * | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6752 get_reg_contents(int regname, int flags) |
7 | 6753 { |
6754 long i; | |
6755 char_u *retval; | |
6756 int allocated; | |
6757 long len; | |
6758 | |
6759 /* Don't allow using an expression register inside an expression */ | |
6760 if (regname == '=') | |
6761 { | |
5796 | 6762 if (flags & GREG_NO_EXPR) |
6763 return NULL; | |
6764 if (flags & GREG_EXPR_SRC) | |
6765 return getreg_wrap_one_line(get_expr_line_src(), flags); | |
6766 return getreg_wrap_one_line(get_expr_line(), flags); | |
7 | 6767 } |
6768 | |
6769 if (regname == '@') /* "@@" is used for unnamed register */ | |
6770 regname = '"'; | |
6771 | |
6772 /* check for valid regname */ | |
6773 if (regname != NUL && !valid_yank_reg(regname, FALSE)) | |
6774 return NULL; | |
6775 | |
6776 #ifdef FEAT_CLIPBOARD | |
6777 regname = may_get_selection(regname); | |
6778 #endif | |
6779 | |
6780 if (get_spec_reg(regname, &retval, &allocated, FALSE)) | |
6781 { | |
6782 if (retval == NULL) | |
6783 return NULL; | |
5796 | 6784 if (allocated) |
6785 return getreg_wrap_one_line(retval, flags); | |
6786 return getreg_wrap_one_line(vim_strsave(retval), flags); | |
7 | 6787 } |
6788 | |
6789 get_yank_register(regname, FALSE); | |
6790 if (y_current->y_array == NULL) | |
6791 return NULL; | |
6792 | |
5796 | 6793 if (flags & GREG_LIST) |
6794 { | |
6795 list_T *list = list_alloc(); | |
6796 int error = FALSE; | |
6797 | |
6798 if (list == NULL) | |
6799 return NULL; | |
6800 for (i = 0; i < y_current->y_size; ++i) | |
6801 if (list_append_string(list, y_current->y_array[i], -1) == FAIL) | |
6802 error = TRUE; | |
6803 if (error) | |
6804 { | |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8690
diff
changeset
|
6805 list_free(list); |
5796 | 6806 return NULL; |
6807 } | |
6808 return (char_u *)list; | |
6809 } | |
6810 | |
7 | 6811 /* |
6812 * Compute length of resulting string. | |
6813 */ | |
6814 len = 0; | |
6815 for (i = 0; i < y_current->y_size; ++i) | |
6816 { | |
6817 len += (long)STRLEN(y_current->y_array[i]); | |
6818 /* | |
6819 * Insert a newline between lines and after last line if | |
6820 * y_type is MLINE. | |
6821 */ | |
6822 if (y_current->y_type == MLINE || i < y_current->y_size - 1) | |
6823 ++len; | |
6824 } | |
6825 | |
6826 retval = lalloc(len + 1, TRUE); | |
6827 | |
6828 /* | |
6829 * Copy the lines of the yank register into the string. | |
6830 */ | |
6831 if (retval != NULL) | |
6832 { | |
6833 len = 0; | |
6834 for (i = 0; i < y_current->y_size; ++i) | |
6835 { | |
6836 STRCPY(retval + len, y_current->y_array[i]); | |
6837 len += (long)STRLEN(retval + len); | |
6838 | |
6839 /* | |
6840 * Insert a NL between lines and after the last line if y_type is | |
6841 * MLINE. | |
6842 */ | |
6843 if (y_current->y_type == MLINE || i < y_current->y_size - 1) | |
6844 retval[len++] = '\n'; | |
6845 } | |
6846 retval[len] = NUL; | |
6847 } | |
6848 | |
6849 return retval; | |
6850 } | |
6851 | |
5798 | 6852 static int |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6853 init_write_reg( |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6854 int name, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6855 yankreg_T **old_y_previous, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6856 yankreg_T **old_y_current, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6857 int must_append, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6858 int *yank_type UNUSED) |
5798 | 6859 { |
6860 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */ | |
6861 { | |
6862 emsg_invreg(name); | |
6863 return FAIL; | |
6864 } | |
6865 | |
6866 /* Don't want to change the current (unnamed) register */ | |
6867 *old_y_previous = y_previous; | |
6868 *old_y_current = y_current; | |
6869 | |
6870 get_yank_register(name, TRUE); | |
6871 if (!y_append && !must_append) | |
6872 free_yank_all(); | |
6873 return OK; | |
6874 } | |
6875 | |
6876 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6877 finish_write_reg( |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6878 int name, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6879 yankreg_T *old_y_previous, |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6880 yankreg_T *old_y_current) |
5798 | 6881 { |
6882 # ifdef FEAT_CLIPBOARD | |
6883 /* Send text of clipboard register to the clipboard. */ | |
6884 may_set_selection(); | |
6885 # endif | |
6886 | |
6887 /* ':let @" = "val"' should change the meaning of the "" register */ | |
6888 if (name != '"') | |
6889 y_previous = old_y_previous; | |
6890 y_current = old_y_current; | |
6891 } | |
6892 | |
7 | 6893 /* |
6894 * Store string "str" in register "name". | |
6895 * "maxlen" is the maximum number of bytes to use, -1 for all bytes. | |
6896 * If "must_append" is TRUE, always append to the register. Otherwise append | |
6897 * if "name" is an uppercase letter. | |
6898 * Note: "maxlen" and "must_append" don't work for the "/" register. | |
6899 * Careful: 'str' is modified, you may have to use a copy! | |
6900 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise. | |
6901 */ | |
6902 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6903 write_reg_contents( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6904 int name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6905 char_u *str, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6906 int maxlen, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6907 int must_append) |
7 | 6908 { |
6909 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L); | |
6910 } | |
6911 | |
6912 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6913 write_reg_contents_lst( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6914 int name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6915 char_u **strings, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6916 int maxlen UNUSED, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6917 int must_append, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6918 int yank_type, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6919 long block_len) |
5798 | 6920 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6921 yankreg_T *old_y_previous, *old_y_current; |
5798 | 6922 |
6923 if (name == '/' | |
6924 #ifdef FEAT_EVAL | |
6925 || name == '=' | |
6926 #endif | |
6927 ) | |
6928 { | |
6929 char_u *s; | |
6930 | |
6931 if (strings[0] == NULL) | |
6932 s = (char_u *)""; | |
6933 else if (strings[1] != NULL) | |
6934 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
6935 emsg(_("E883: search pattern and expression register may not " |
5798 | 6936 "contain two or more lines")); |
6937 return; | |
6938 } | |
6939 else | |
6940 s = strings[0]; | |
6941 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len); | |
6942 return; | |
6943 } | |
6944 | |
6945 if (name == '_') /* black hole: nothing to do */ | |
6946 return; | |
6947 | |
6948 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append, | |
6949 &yank_type) == FAIL) | |
6950 return; | |
6951 | |
6952 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE); | |
6953 | |
6954 finish_write_reg(name, old_y_previous, old_y_current); | |
6955 } | |
6956 | |
6957 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6958 write_reg_contents_ex( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6959 int name, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6960 char_u *str, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6961 int maxlen, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6962 int must_append, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6963 int yank_type, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
6964 long block_len) |
7 | 6965 { |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6966 yankreg_T *old_y_previous, *old_y_current; |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
6967 long len; |
7 | 6968 |
336 | 6969 if (maxlen >= 0) |
6970 len = maxlen; | |
6971 else | |
6972 len = (long)STRLEN(str); | |
6973 | |
7 | 6974 /* Special case: '/' search pattern */ |
6975 if (name == '/') | |
6976 { | |
6977 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE); | |
6978 return; | |
6979 } | |
6980 | |
6557 | 6981 if (name == '#') |
6982 { | |
6983 buf_T *buf; | |
6984 | |
6985 if (VIM_ISDIGIT(*str)) | |
6986 { | |
6987 int num = atoi((char *)str); | |
6988 | |
6989 buf = buflist_findnr(num); | |
6990 if (buf == NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15428
diff
changeset
|
6991 semsg(_(e_nobufnr), (long)num); |
6557 | 6992 } |
6993 else | |
6994 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str), | |
6995 TRUE, FALSE, FALSE)); | |
6996 if (buf == NULL) | |
6997 return; | |
6998 curwin->w_alt_fnum = buf->b_fnum; | |
6999 return; | |
7000 } | |
7001 | |
336 | 7002 #ifdef FEAT_EVAL |
7003 if (name == '=') | |
7004 { | |
7005 char_u *p, *s; | |
7006 | |
7007 p = vim_strnsave(str, (int)len); | |
7008 if (p == NULL) | |
7009 return; | |
7010 if (must_append) | |
7011 { | |
7012 s = concat_str(get_expr_line_src(), p); | |
7013 vim_free(p); | |
7014 p = s; | |
7015 } | |
7016 set_expr_line(p); | |
7017 return; | |
7018 } | |
7019 #endif | |
7020 | |
7 | 7021 if (name == '_') /* black hole: nothing to do */ |
7022 return; | |
7023 | |
5798 | 7024 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append, |
7025 &yank_type) == FAIL) | |
7026 return; | |
7027 | |
7028 str_to_reg(y_current, yank_type, str, len, block_len, FALSE); | |
7029 | |
7030 finish_write_reg(name, old_y_previous, old_y_current); | |
7 | 7031 } |
7032 #endif /* FEAT_EVAL */ | |
7033 | |
7034 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL) | |
7035 /* | |
7036 * Put a string into a register. When the register is not empty, the string | |
7037 * is appended. | |
7038 */ | |
7039 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7040 str_to_reg( |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7041 yankreg_T *y_ptr, /* pointer to yank register */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7042 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7043 char_u *str, /* string to put in register */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7044 long len, /* length of string */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7045 long blocklen, /* width of Visual block */ |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7046 int str_list) /* TRUE if str is char_u ** */ |
7 | 7047 { |
2896 | 7048 int type; /* MCHAR, MLINE or MBLOCK */ |
7 | 7049 int lnum; |
7050 long start; | |
7051 long i; | |
7052 int extra; | |
7053 int newlines; /* number of lines added */ | |
7054 int extraline = 0; /* extra line at the end */ | |
7055 int append = FALSE; /* append to last line in register */ | |
7056 char_u *s; | |
5798 | 7057 char_u **ss; |
7 | 7058 char_u **pp; |
7059 long maxlen; | |
7060 | |
2000 | 7061 if (y_ptr->y_array == NULL) /* NULL means empty register */ |
7 | 7062 y_ptr->y_size = 0; |
7063 | |
2896 | 7064 if (yank_type == MAUTO) |
5798 | 7065 type = ((str_list || (len > 0 && (str[len - 1] == NL |
7066 || str[len - 1] == CAR))) | |
2896 | 7067 ? MLINE : MCHAR); |
7068 else | |
7069 type = yank_type; | |
7070 | |
7 | 7071 /* |
7072 * Count the number of lines within the string | |
7073 */ | |
7074 newlines = 0; | |
5798 | 7075 if (str_list) |
7076 { | |
7077 for (ss = (char_u **) str; *ss != NULL; ++ss) | |
7 | 7078 ++newlines; |
5798 | 7079 } |
7080 else | |
7081 { | |
7082 for (i = 0; i < len; i++) | |
7083 if (str[i] == '\n') | |
7084 ++newlines; | |
7085 if (type == MCHAR || len == 0 || str[len - 1] != '\n') | |
7086 { | |
7087 extraline = 1; | |
7088 ++newlines; /* count extra newline at the end */ | |
7089 } | |
7090 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR) | |
7091 { | |
7092 append = TRUE; | |
7093 --newlines; /* uncount newline when appending first line */ | |
7094 } | |
7 | 7095 } |
7096 | |
6807 | 7097 /* Without any lines make the register empty. */ |
7098 if (y_ptr->y_size + newlines == 0) | |
7099 { | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13202
diff
changeset
|
7100 VIM_CLEAR(y_ptr->y_array); |
6807 | 7101 return; |
7102 } | |
7103 | |
7 | 7104 /* |
7105 * Allocate an array to hold the pointers to the new register lines. | |
7106 * If the register was not empty, move the existing lines to the new array. | |
7107 */ | |
7108 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines) | |
7109 * sizeof(char_u *), TRUE); | |
7110 if (pp == NULL) /* out of memory */ | |
7111 return; | |
7112 for (lnum = 0; lnum < y_ptr->y_size; ++lnum) | |
7113 pp[lnum] = y_ptr->y_array[lnum]; | |
7114 vim_free(y_ptr->y_array); | |
7115 y_ptr->y_array = pp; | |
7116 maxlen = 0; | |
7117 | |
7118 /* | |
7119 * Find the end of each line and save it into the array. | |
7120 */ | |
5798 | 7121 if (str_list) |
7122 { | |
7123 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum) | |
7 | 7124 { |
5856 | 7125 i = (long)STRLEN(*ss); |
5798 | 7126 pp[lnum] = vim_strnsave(*ss, i); |
7127 if (i > maxlen) | |
7128 maxlen = i; | |
7 | 7129 } |
5798 | 7130 } |
7131 else | |
7132 { | |
7133 for (start = 0; start < len + extraline; start += i + 1) | |
7 | 7134 { |
5798 | 7135 for (i = start; i < len; ++i) /* find the end of the line */ |
7136 if (str[i] == '\n') | |
7137 break; | |
7138 i -= start; /* i is now length of line */ | |
7139 if (i > maxlen) | |
7140 maxlen = i; | |
7141 if (append) | |
7142 { | |
7143 --lnum; | |
7144 extra = (int)STRLEN(y_ptr->y_array[lnum]); | |
7145 } | |
7146 else | |
7147 extra = 0; | |
7148 s = alloc((unsigned)(i + extra + 1)); | |
7149 if (s == NULL) | |
7150 break; | |
7151 if (extra) | |
7152 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra); | |
7153 if (append) | |
7154 vim_free(y_ptr->y_array[lnum]); | |
7155 if (i) | |
7156 mch_memmove(s + extra, str + start, (size_t)i); | |
7157 extra += i; | |
7158 s[extra] = NUL; | |
7159 y_ptr->y_array[lnum++] = s; | |
7160 while (--extra >= 0) | |
7161 { | |
7162 if (*s == NUL) | |
7163 *s = '\n'; /* replace NUL with newline */ | |
7164 ++s; | |
7165 } | |
7166 append = FALSE; /* only first line is appended */ | |
7 | 7167 } |
7168 } | |
7169 y_ptr->y_type = type; | |
7170 y_ptr->y_size = lnum; | |
7171 if (type == MBLOCK) | |
7172 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen); | |
7173 else | |
7174 y_ptr->y_width = 0; | |
9272
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7175 #ifdef FEAT_VIMINFO |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7176 y_ptr->y_time_set = vim_time(); |
f5d9eb512f8b
commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents:
9225
diff
changeset
|
7177 #endif |
7 | 7178 } |
7179 #endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */ | |
7180 | |
7181 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7182 clear_oparg(oparg_T *oap) |
7 | 7183 { |
7184 vim_memset(oap, 0, sizeof(oparg_T)); | |
7185 } | |
7186 | |
7187 /* | |
161 | 7188 * Count the number of bytes, characters and "words" in a line. |
7 | 7189 * |
7190 * "Words" are counted by looking for boundaries between non-space and | |
7191 * space characters. (it seems to produce results that match 'wc'.) | |
7192 * | |
161 | 7193 * Return value is byte count; word count for the line is added to "*wc". |
7194 * Char count is added to "*cc". | |
7 | 7195 * |
7196 * The function will only examine the first "limit" characters in the | |
7197 * line, stopping if it encounters an end-of-line (NUL byte). In that | |
7198 * case, eol_size will be added to the character count to account for | |
7199 * the size of the EOL character. | |
7200 */ | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7201 static varnumber_T |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7202 line_count_info( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7203 char_u *line, |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7204 varnumber_T *wc, |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7205 varnumber_T *cc, |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7206 varnumber_T limit, |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7207 int eol_size) |
7 | 7208 { |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7209 varnumber_T i; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7210 varnumber_T words = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7211 varnumber_T chars = 0; |
7 | 7212 int is_word = 0; |
7213 | |
3626 | 7214 for (i = 0; i < limit && line[i] != NUL; ) |
7 | 7215 { |
7216 if (is_word) | |
7217 { | |
7218 if (vim_isspace(line[i])) | |
7219 { | |
7220 words++; | |
7221 is_word = 0; | |
7222 } | |
7223 } | |
7224 else if (!vim_isspace(line[i])) | |
7225 is_word = 1; | |
161 | 7226 ++chars; |
474 | 7227 i += (*mb_ptr2len)(line + i); |
7 | 7228 } |
7229 | |
7230 if (is_word) | |
7231 words++; | |
7232 *wc += words; | |
7233 | |
7234 /* Add eol_size if the end of line was reached before hitting limit. */ | |
2996 | 7235 if (i < limit && line[i] == NUL) |
161 | 7236 { |
7 | 7237 i += eol_size; |
161 | 7238 chars += eol_size; |
7239 } | |
7240 *cc += chars; | |
7 | 7241 return i; |
7242 } | |
7243 | |
7244 /* | |
7245 * Give some info about the position of the cursor (for "g CTRL-G"). | |
7246 * In Visual mode, give some info about the selected region. (In this case, | |
7247 * 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
|
7248 * When "dict" is not NULL store the info there instead of showing it. |
7 | 7249 */ |
7250 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
7251 cursor_pos_info(dict_T *dict) |
7 | 7252 { |
7253 char_u *p; | |
274 | 7254 char_u buf1[50]; |
7255 char_u buf2[40]; | |
7 | 7256 linenr_T lnum; |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7257 varnumber_T byte_count = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7258 varnumber_T bom_count = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7259 varnumber_T byte_count_cursor = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7260 varnumber_T char_count = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7261 varnumber_T char_count_cursor = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7262 varnumber_T word_count = 0; |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7263 varnumber_T word_count_cursor = 0; |
7 | 7264 int eol_size; |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7265 varnumber_T last_check = 100000L; |
7 | 7266 long line_count_selected = 0; |
7267 pos_T min_pos, max_pos; | |
7268 oparg_T oparg; | |
7269 struct block_def bd; | |
7270 | |
7271 /* | |
7272 * Compute the length of the file in characters. | |
7273 */ | |
7274 if (curbuf->b_ml.ml_flags & ML_EMPTY) | |
7275 { | |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7276 if (dict == NULL) |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7277 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
7278 msg(_(no_lines_msg)); |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7279 return; |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7280 } |
7 | 7281 } |
7282 else | |
7283 { | |
7284 if (get_fileformat(curbuf) == EOL_DOS) | |
7285 eol_size = 2; | |
7286 else | |
7287 eol_size = 1; | |
7288 | |
7289 if (VIsual_active) | |
7290 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11065
diff
changeset
|
7291 if (LT_POS(VIsual, curwin->w_cursor)) |
7 | 7292 { |
7293 min_pos = VIsual; | |
7294 max_pos = curwin->w_cursor; | |
7295 } | |
7296 else | |
7297 { | |
7298 min_pos = curwin->w_cursor; | |
7299 max_pos = VIsual; | |
7300 } | |
7301 if (*p_sel == 'e' && max_pos.col > 0) | |
7302 --max_pos.col; | |
7303 | |
7304 if (VIsual_mode == Ctrl_V) | |
7305 { | |
1866 | 7306 #ifdef FEAT_LINEBREAK |
7307 char_u * saved_sbr = p_sbr; | |
7308 | |
7309 /* Make 'sbr' empty for a moment to get the correct size. */ | |
7310 p_sbr = empty_option; | |
7311 #endif | |
7 | 7312 oparg.is_VIsual = 1; |
7313 oparg.block_mode = TRUE; | |
7314 oparg.op_type = OP_NOP; | |
7315 getvcols(curwin, &min_pos, &max_pos, | |
688 | 7316 &oparg.start_vcol, &oparg.end_vcol); |
1866 | 7317 #ifdef FEAT_LINEBREAK |
7318 p_sbr = saved_sbr; | |
7319 #endif | |
688 | 7320 if (curwin->w_curswant == MAXCOL) |
7321 oparg.end_vcol = MAXCOL; | |
7 | 7322 /* Swap the start, end vcol if needed */ |
7323 if (oparg.end_vcol < oparg.start_vcol) | |
7324 { | |
7325 oparg.end_vcol += oparg.start_vcol; | |
7326 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol; | |
7327 oparg.end_vcol -= oparg.start_vcol; | |
7328 } | |
7329 } | |
7330 line_count_selected = max_pos.lnum - min_pos.lnum + 1; | |
7331 } | |
7332 | |
7333 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
7334 { | |
7335 /* Check for a CTRL-C every 100000 characters. */ | |
161 | 7336 if (byte_count > last_check) |
7 | 7337 { |
7338 ui_breakcheck(); | |
7339 if (got_int) | |
7340 return; | |
161 | 7341 last_check = byte_count + 100000L; |
7 | 7342 } |
7343 | |
7344 /* Do extra processing for VIsual mode. */ | |
7345 if (VIsual_active | |
7346 && lnum >= min_pos.lnum && lnum <= max_pos.lnum) | |
7347 { | |
45 | 7348 char_u *s = NULL; |
7349 long len = 0L; | |
7350 | |
7 | 7351 switch (VIsual_mode) |
7352 { | |
7353 case Ctrl_V: | |
7354 virtual_op = virtual_active(); | |
7355 block_prep(&oparg, &bd, lnum, 0); | |
7356 virtual_op = MAYBE; | |
45 | 7357 s = bd.textstart; |
7358 len = (long)bd.textlen; | |
7 | 7359 break; |
7360 case 'V': | |
45 | 7361 s = ml_get(lnum); |
7362 len = MAXCOL; | |
7 | 7363 break; |
7364 case 'v': | |
7365 { | |
7366 colnr_T start_col = (lnum == min_pos.lnum) | |
7367 ? min_pos.col : 0; | |
7368 colnr_T end_col = (lnum == max_pos.lnum) | |
7369 ? max_pos.col - start_col + 1 : MAXCOL; | |
7370 | |
45 | 7371 s = ml_get(lnum) + start_col; |
7372 len = end_col; | |
7 | 7373 } |
7374 break; | |
7375 } | |
45 | 7376 if (s != NULL) |
7377 { | |
161 | 7378 byte_count_cursor += line_count_info(s, &word_count_cursor, |
7379 &char_count_cursor, len, eol_size); | |
45 | 7380 if (lnum == curbuf->b_ml.ml_line_count |
7381 && !curbuf->b_p_eol | |
6933 | 7382 && (curbuf->b_p_bin || !curbuf->b_p_fixeol) |
50 | 7383 && (long)STRLEN(s) < len) |
161 | 7384 byte_count_cursor -= eol_size; |
45 | 7385 } |
7 | 7386 } |
7387 else | |
7388 { | |
7389 /* In non-visual mode, check for the line the cursor is on */ | |
7390 if (lnum == curwin->w_cursor.lnum) | |
7391 { | |
7392 word_count_cursor += word_count; | |
161 | 7393 char_count_cursor += char_count; |
7394 byte_count_cursor = byte_count + | |
7395 line_count_info(ml_get(lnum), | |
7396 &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
|
7397 (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
|
7398 eol_size); |
7 | 7399 } |
7400 } | |
7401 /* Add to the running totals */ | |
161 | 7402 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
|
7403 &char_count, (varnumber_T)MAXCOL, |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7404 eol_size); |
7 | 7405 } |
7406 | |
7407 /* Correction for when last line doesn't have an EOL. */ | |
6933 | 7408 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol)) |
161 | 7409 byte_count -= eol_size; |
7 | 7410 |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7411 if (dict == NULL) |
7 | 7412 { |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7413 if (VIsual_active) |
7 | 7414 { |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7415 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
|
7416 { |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7417 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
|
7418 &max_pos.col); |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7419 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
|
7420 (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
|
7421 } |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7422 else |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7423 buf1[0] = NUL; |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7424 |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7425 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
|
7426 && char_count == byte_count) |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7427 vim_snprintf((char *)IObuff, IOSIZE, |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7428 _("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
|
7429 buf1, line_count_selected, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7430 (long)curbuf->b_ml.ml_line_count, |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7431 (long_long_T)word_count_cursor, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7432 (long_long_T)word_count, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7433 (long_long_T)byte_count_cursor, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7434 (long_long_T)byte_count); |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7435 else |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7436 vim_snprintf((char *)IObuff, IOSIZE, |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7437 _("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
|
7438 buf1, line_count_selected, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7439 (long)curbuf->b_ml.ml_line_count, |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7440 (long_long_T)word_count_cursor, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7441 (long_long_T)word_count, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7442 (long_long_T)char_count_cursor, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7443 (long_long_T)char_count, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7444 (long_long_T)byte_count_cursor, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7445 (long_long_T)byte_count); |
7 | 7446 } |
7447 else | |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7448 { |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7449 p = ml_get_curline(); |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7450 validate_virtcol(); |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7451 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
|
7452 (int)curwin->w_virtcol + 1); |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7453 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
|
7454 linetabsize(p)); |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7455 |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7456 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
|
7457 && char_count == byte_count) |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7458 vim_snprintf((char *)IObuff, IOSIZE, |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7459 _("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
|
7460 (char *)buf1, (char *)buf2, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7461 (long)curwin->w_cursor.lnum, |
7 | 7462 (long)curbuf->b_ml.ml_line_count, |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7463 (long_long_T)word_count_cursor, (long_long_T)word_count, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7464 (long_long_T)byte_count_cursor, (long_long_T)byte_count); |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7465 else |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7466 vim_snprintf((char *)IObuff, IOSIZE, |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9332
diff
changeset
|
7467 _("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
|
7468 (char *)buf1, (char *)buf2, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7469 (long)curwin->w_cursor.lnum, |
161 | 7470 (long)curbuf->b_ml.ml_line_count, |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7471 (long_long_T)word_count_cursor, (long_long_T)word_count, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7472 (long_long_T)char_count_cursor, (long_long_T)char_count, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
7473 (long_long_T)byte_count_cursor, (long_long_T)byte_count); |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7474 } |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7475 } |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7476 |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7477 bom_count = bomb_size(); |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7478 if (bom_count > 0) |
7496
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
7479 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE, |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7480 _("(+%lld for BOM)"), (long_long_T)bom_count); |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7481 if (dict == NULL) |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7482 { |
7496
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
7483 /* 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
|
7484 p = p_shm; |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7485 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
|
7486 msg((char *)IObuff); |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7487 p_shm = p; |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7488 } |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7489 } |
7484
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
7490 #if defined(FEAT_EVAL) |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7491 if (dict != NULL) |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
7492 { |
14301
3c80092eb211
patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents:
14216
diff
changeset
|
7493 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
|
7494 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
|
7495 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
|
7496 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
|
7497 byte_count_cursor); |
3c80092eb211
patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents:
14216
diff
changeset
|
7498 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
|
7499 char_count_cursor); |
3c80092eb211
patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents:
14216
diff
changeset
|
7500 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
|
7501 word_count_cursor); |
7 | 7502 } |
7484
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
7503 #endif |
7 | 7504 } |