blob: 194125eb0011522e067d6d94a5c3bffb52536862 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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 * mark.c: functions for setting marks and jumping to them
12 */
13
14#include "vim.h"
15
16/*
17 * This file contains routines to maintain and manipulate marks.
18 */
19
20/*
21 * If a named file mark's lnum is non-zero, it is valid.
22 * If a named file mark's fnum is non-zero, it is for an existing buffer,
23 * otherwise it is from .viminfo and namedfm[n].fname is the file name.
24 * There are marks 'A - 'Z (set by user) and '0 to '9 (set when writing
25 * viminfo).
26 */
27#define EXTRA_MARKS 10 /* marks 0-9 */
28static xfmark_T namedfm[NMARKS + EXTRA_MARKS]; /* marks with file nr */
29
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010030static void fname2fnum(xfmark_T *fm);
31static void fmarks_check_one(xfmark_T *fm, char_u *name, buf_T *buf);
32static char_u *mark_line(pos_T *mp, int lead_len);
33static void show_one_mark(int, char_u *, pos_T *, char_u *, int current);
Bram Moolenaar071d4272004-06-13 20:20:40 +000034#ifdef FEAT_JUMPLIST
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010035static void cleanup_jumplist(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000036#endif
37#ifdef FEAT_VIMINFO
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010038static void write_one_filemark(FILE *fp, xfmark_T *fm, int c1, int c2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000039#endif
40
41/*
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000042 * Set named mark "c" at current cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +000043 * Returns OK on success, FAIL if bad name given.
44 */
45 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +010046setmark(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000047{
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000048 return setmark_pos(c, &curwin->w_cursor, curbuf->b_fnum);
49}
50
51/*
52 * Set named mark "c" to position "pos".
53 * When "c" is upper case use file "fnum".
54 * Returns OK on success, FAIL if bad name given.
55 */
56 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +010057setmark_pos(int c, pos_T *pos, int fnum)
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000058{
Bram Moolenaar071d4272004-06-13 20:20:40 +000059 int i;
Bram Moolenaarf13e00b2017-01-28 18:23:54 +010060 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000061
62 /* Check for a special key (may cause islower() to crash). */
63 if (c < 0)
64 return FAIL;
65
66 if (c == '\'' || c == '`')
67 {
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000068 if (pos == &curwin->w_cursor)
69 {
70 setpcmark();
71 /* keep it even when the cursor doesn't move */
72 curwin->w_prev_pcmark = curwin->w_pcmark;
73 }
74 else
75 curwin->w_pcmark = *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000076 return OK;
77 }
78
Bram Moolenaarf13e00b2017-01-28 18:23:54 +010079 buf = buflist_findnr(fnum);
80 if (buf == NULL)
81 return FAIL;
82
Bram Moolenaar08250432008-02-13 11:42:46 +000083 if (c == '"')
84 {
Bram Moolenaarf13e00b2017-01-28 18:23:54 +010085 buf->b_last_cursor = *pos;
Bram Moolenaar08250432008-02-13 11:42:46 +000086 return OK;
87 }
88
Bram Moolenaar071d4272004-06-13 20:20:40 +000089 /* Allow setting '[ and '] for an autocommand that simulates reading a
90 * file. */
91 if (c == '[')
92 {
Bram Moolenaarf13e00b2017-01-28 18:23:54 +010093 buf->b_op_start = *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000094 return OK;
95 }
96 if (c == ']')
97 {
Bram Moolenaarf13e00b2017-01-28 18:23:54 +010098 buf->b_op_end = *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000099 return OK;
100 }
101
Bram Moolenaarbc88a272013-08-02 17:22:23 +0200102 if (c == '<' || c == '>')
Bram Moolenaar0306ac32012-07-06 17:51:28 +0200103 {
Bram Moolenaarbc88a272013-08-02 17:22:23 +0200104 if (c == '<')
Bram Moolenaarf13e00b2017-01-28 18:23:54 +0100105 buf->b_visual.vi_start = *pos;
Bram Moolenaarbc88a272013-08-02 17:22:23 +0200106 else
Bram Moolenaarf13e00b2017-01-28 18:23:54 +0100107 buf->b_visual.vi_end = *pos;
108 if (buf->b_visual.vi_mode == NUL)
Bram Moolenaarbc88a272013-08-02 17:22:23 +0200109 /* Visual_mode has not yet been set, use a sane default. */
Bram Moolenaarf13e00b2017-01-28 18:23:54 +0100110 buf->b_visual.vi_mode = 'v';
Bram Moolenaar0306ac32012-07-06 17:51:28 +0200111 return OK;
112 }
Bram Moolenaar0306ac32012-07-06 17:51:28 +0200113
Bram Moolenaar2d358992016-06-12 21:20:54 +0200114 if (ASCII_ISLOWER(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115 {
116 i = c - 'a';
Bram Moolenaarf13e00b2017-01-28 18:23:54 +0100117 buf->b_namedm[i] = *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118 return OK;
119 }
Bram Moolenaar2d358992016-06-12 21:20:54 +0200120 if (ASCII_ISUPPER(c) || VIM_ISDIGIT(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 {
Bram Moolenaar2d358992016-06-12 21:20:54 +0200122 if (VIM_ISDIGIT(c))
123 i = c - '0' + NMARKS;
124 else
125 i = c - 'A';
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000126 namedfm[i].fmark.mark = *pos;
127 namedfm[i].fmark.fnum = fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128 vim_free(namedfm[i].fname);
129 namedfm[i].fname = NULL;
Bram Moolenaar2d358992016-06-12 21:20:54 +0200130#ifdef FEAT_VIMINFO
131 namedfm[i].time_set = vim_time();
132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 return OK;
134 }
135 return FAIL;
136}
137
138/*
139 * Set the previous context mark to the current position and add it to the
140 * jump list.
141 */
142 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100143setpcmark(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144{
145#ifdef FEAT_JUMPLIST
146 int i;
147 xfmark_T *fm;
148#endif
149#ifdef JUMPLIST_ROTATE
150 xfmark_T tempmark;
151#endif
152
153 /* for :global the mark is set only once */
154 if (global_busy || listcmd_busy || cmdmod.keepjumps)
155 return;
156
157 curwin->w_prev_pcmark = curwin->w_pcmark;
158 curwin->w_pcmark = curwin->w_cursor;
159
160#ifdef FEAT_JUMPLIST
161# ifdef JUMPLIST_ROTATE
162 /*
163 * If last used entry is not at the top, put it at the top by rotating
164 * the stack until it is (the newer entries will be at the bottom).
165 * Keep one entry (the last used one) at the top.
166 */
167 if (curwin->w_jumplistidx < curwin->w_jumplistlen)
168 ++curwin->w_jumplistidx;
169 while (curwin->w_jumplistidx < curwin->w_jumplistlen)
170 {
171 tempmark = curwin->w_jumplist[curwin->w_jumplistlen - 1];
172 for (i = curwin->w_jumplistlen - 1; i > 0; --i)
173 curwin->w_jumplist[i] = curwin->w_jumplist[i - 1];
174 curwin->w_jumplist[0] = tempmark;
175 ++curwin->w_jumplistidx;
176 }
177# endif
178
179 /* If jumplist is full: remove oldest entry */
180 if (++curwin->w_jumplistlen > JUMPLISTSIZE)
181 {
182 curwin->w_jumplistlen = JUMPLISTSIZE;
183 vim_free(curwin->w_jumplist[0].fname);
184 for (i = 1; i < JUMPLISTSIZE; ++i)
185 curwin->w_jumplist[i - 1] = curwin->w_jumplist[i];
186 }
187 curwin->w_jumplistidx = curwin->w_jumplistlen;
188 fm = &curwin->w_jumplist[curwin->w_jumplistlen - 1];
189
190 fm->fmark.mark = curwin->w_pcmark;
191 fm->fmark.fnum = curbuf->b_fnum;
192 fm->fname = NULL;
Bram Moolenaar2d358992016-06-12 21:20:54 +0200193# ifdef FEAT_VIMINFO
194 fm->time_set = vim_time();
195# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196#endif
197}
198
199/*
200 * To change context, call setpcmark(), then move the current position to
201 * where ever, then call checkpcmark(). This ensures that the previous
202 * context will only be changed if the cursor moved to a different line.
203 * If pcmark was deleted (with "dG") the previous mark is restored.
204 */
205 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100206checkpcmark(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207{
208 if (curwin->w_prev_pcmark.lnum != 0
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100209 && (EQUAL_POS(curwin->w_pcmark, curwin->w_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 || curwin->w_pcmark.lnum == 0))
211 {
212 curwin->w_pcmark = curwin->w_prev_pcmark;
213 curwin->w_prev_pcmark.lnum = 0; /* Show it has been checked */
214 }
215}
216
217#if defined(FEAT_JUMPLIST) || defined(PROTO)
218/*
219 * move "count" positions in the jump list (count may be negative)
220 */
221 pos_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100222movemark(int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223{
224 pos_T *pos;
225 xfmark_T *jmp;
226
227 cleanup_jumplist();
228
229 if (curwin->w_jumplistlen == 0) /* nothing to jump to */
230 return (pos_T *)NULL;
231
232 for (;;)
233 {
234 if (curwin->w_jumplistidx + count < 0
235 || curwin->w_jumplistidx + count >= curwin->w_jumplistlen)
236 return (pos_T *)NULL;
237
238 /*
239 * if first CTRL-O or CTRL-I command after a jump, add cursor position
Bram Moolenaarf711faf2007-05-10 16:48:19 +0000240 * to list. Careful: If there are duplicates (CTRL-O immediately after
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 * starting Vim on a file), another entry may have been removed.
242 */
243 if (curwin->w_jumplistidx == curwin->w_jumplistlen)
244 {
245 setpcmark();
246 --curwin->w_jumplistidx; /* skip the new entry */
247 if (curwin->w_jumplistidx + count < 0)
248 return (pos_T *)NULL;
249 }
250
251 curwin->w_jumplistidx += count;
252
253 jmp = curwin->w_jumplist + curwin->w_jumplistidx;
254 if (jmp->fmark.fnum == 0)
255 fname2fnum(jmp);
256 if (jmp->fmark.fnum != curbuf->b_fnum)
257 {
258 /* jump to other file */
259 if (buflist_findnr(jmp->fmark.fnum) == NULL)
260 { /* Skip this one .. */
261 count += count < 0 ? -1 : 1;
262 continue;
263 }
264 if (buflist_getfile(jmp->fmark.fnum, jmp->fmark.mark.lnum,
265 0, FALSE) == FAIL)
266 return (pos_T *)NULL;
267 /* Set lnum again, autocommands my have changed it */
268 curwin->w_cursor = jmp->fmark.mark;
269 pos = (pos_T *)-1;
270 }
271 else
272 pos = &(jmp->fmark.mark);
273 return pos;
274 }
275}
276
277/*
278 * Move "count" positions in the changelist (count may be negative).
279 */
280 pos_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100281movechangelist(int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282{
283 int n;
284
285 if (curbuf->b_changelistlen == 0) /* nothing to jump to */
286 return (pos_T *)NULL;
287
288 n = curwin->w_changelistidx;
289 if (n + count < 0)
290 {
291 if (n == 0)
292 return (pos_T *)NULL;
293 n = 0;
294 }
295 else if (n + count >= curbuf->b_changelistlen)
296 {
297 if (n == curbuf->b_changelistlen - 1)
298 return (pos_T *)NULL;
299 n = curbuf->b_changelistlen - 1;
300 }
301 else
302 n += count;
303 curwin->w_changelistidx = n;
304 return curbuf->b_changelist + n;
305}
306#endif
307
308/*
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100309 * Find mark "c" in buffer pointed to by "buf".
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000310 * If "changefile" is TRUE it's allowed to edit another file for '0, 'A, etc.
311 * If "fnum" is not NULL store the fnum there for '0, 'A etc., don't edit
312 * another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 * Returns:
314 * - pointer to pos_T if found. lnum is 0 when mark not set, -1 when mark is
315 * in another file which can't be gotten. (caller needs to check lnum!)
316 * - NULL if there is no mark called 'c'.
317 * - -1 if mark is in other file and jumped there (only if changefile is TRUE)
318 */
319 pos_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100320getmark_buf(buf_T *buf, int c, int changefile)
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100321{
322 return getmark_buf_fnum(buf, c, changefile, NULL);
323}
324
325 pos_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100326getmark(int c, int changefile)
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000327{
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100328 return getmark_buf_fnum(curbuf, c, changefile, NULL);
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000329}
330
331 pos_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100332getmark_buf_fnum(
333 buf_T *buf,
334 int c,
335 int changefile,
336 int *fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337{
338 pos_T *posp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 pos_T *startp, *endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 static pos_T pos_copy;
341
342 posp = NULL;
343
344 /* Check for special key, can't be a mark name and might cause islower()
345 * to crash. */
346 if (c < 0)
347 return posp;
348#ifndef EBCDIC
349 if (c > '~') /* check for islower()/isupper() */
350 ;
351 else
352#endif
353 if (c == '\'' || c == '`') /* previous context mark */
354 {
355 pos_copy = curwin->w_pcmark; /* need to make a copy because */
356 posp = &pos_copy; /* w_pcmark may be changed soon */
357 }
358 else if (c == '"') /* to pos when leaving buffer */
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100359 posp = &(buf->b_last_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 else if (c == '^') /* to where Insert mode stopped */
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100361 posp = &(buf->b_last_insert);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 else if (c == '.') /* to where last change was made */
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100363 posp = &(buf->b_last_change);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 else if (c == '[') /* to start of previous operator */
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100365 posp = &(buf->b_op_start);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366 else if (c == ']') /* to end of previous operator */
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100367 posp = &(buf->b_op_end);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 else if (c == '{' || c == '}') /* to previous/next paragraph */
369 {
370 pos_T pos;
371 oparg_T oa;
372 int slcb = listcmd_busy;
373
374 pos = curwin->w_cursor;
375 listcmd_busy = TRUE; /* avoid that '' is changed */
Bram Moolenaar8b96d642005-09-05 22:05:30 +0000376 if (findpar(&oa.inclusive,
377 c == '}' ? FORWARD : BACKWARD, 1L, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 {
379 pos_copy = curwin->w_cursor;
380 posp = &pos_copy;
381 }
382 curwin->w_cursor = pos;
383 listcmd_busy = slcb;
384 }
385 else if (c == '(' || c == ')') /* to previous/next sentence */
386 {
387 pos_T pos;
388 int slcb = listcmd_busy;
389
390 pos = curwin->w_cursor;
391 listcmd_busy = TRUE; /* avoid that '' is changed */
392 if (findsent(c == ')' ? FORWARD : BACKWARD, 1L))
393 {
394 pos_copy = curwin->w_cursor;
395 posp = &pos_copy;
396 }
397 curwin->w_cursor = pos;
398 listcmd_busy = slcb;
399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 else if (c == '<' || c == '>') /* start/end of visual area */
401 {
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100402 startp = &buf->b_visual.vi_start;
403 endp = &buf->b_visual.vi_end;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100404 if (((c == '<') == LT_POS(*startp, *endp) || endp->lnum == 0)
Bram Moolenaarf13e00b2017-01-28 18:23:54 +0100405 && startp->lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 posp = startp;
407 else
408 posp = endp;
409 /*
410 * For Visual line mode, set mark at begin or end of line
411 */
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100412 if (buf->b_visual.vi_mode == 'V')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 {
414 pos_copy = *posp;
415 posp = &pos_copy;
416 if (c == '<')
417 pos_copy.col = 0;
418 else
419 pos_copy.col = MAXCOL;
420#ifdef FEAT_VIRTUALEDIT
421 pos_copy.coladd = 0;
422#endif
423 }
424 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 else if (ASCII_ISLOWER(c)) /* normal named mark */
426 {
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100427 posp = &(buf->b_namedm[c - 'a']);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 }
429 else if (ASCII_ISUPPER(c) || VIM_ISDIGIT(c)) /* named file mark */
430 {
431 if (VIM_ISDIGIT(c))
432 c = c - '0' + NMARKS;
433 else
434 c -= 'A';
435 posp = &(namedfm[c].fmark.mark);
436
437 if (namedfm[c].fmark.fnum == 0)
438 fname2fnum(&namedfm[c]);
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000439
440 if (fnum != NULL)
441 *fnum = namedfm[c].fmark.fnum;
Bram Moolenaar9d182dd2013-01-23 15:53:15 +0100442 else if (namedfm[c].fmark.fnum != buf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 {
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000444 /* mark is in another file */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 posp = &pos_copy;
446
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 if (namedfm[c].fmark.mark.lnum != 0
448 && changefile && namedfm[c].fmark.fnum)
449 {
450 if (buflist_getfile(namedfm[c].fmark.fnum,
451 (linenr_T)1, GETF_SETMARK, FALSE) == OK)
452 {
453 /* Set the lnum now, autocommands could have changed it */
454 curwin->w_cursor = namedfm[c].fmark.mark;
455 return (pos_T *)-1;
456 }
457 pos_copy.lnum = -1; /* can't get file */
458 }
459 else
460 pos_copy.lnum = 0; /* mark exists, but is not valid in
461 current buffer */
462 }
463 }
464
465 return posp;
466}
467
468/*
469 * Search for the next named mark in the current file.
470 *
471 * Returns pointer to pos_T of the next mark or NULL if no mark is found.
472 */
473 pos_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100474getnextmark(
475 pos_T *startpos, /* where to start */
476 int dir, /* direction for search */
477 int begin_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478{
479 int i;
480 pos_T *result = NULL;
481 pos_T pos;
482
483 pos = *startpos;
484
485 /* When searching backward and leaving the cursor on the first non-blank,
486 * position must be in a previous line.
487 * When searching forward and leaving the cursor on the first non-blank,
488 * position must be in a next line. */
489 if (dir == BACKWARD && begin_line)
490 pos.col = 0;
491 else if (dir == FORWARD && begin_line)
492 pos.col = MAXCOL;
493
494 for (i = 0; i < NMARKS; i++)
495 {
496 if (curbuf->b_namedm[i].lnum > 0)
497 {
498 if (dir == FORWARD)
499 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100500 if ((result == NULL || LT_POS(curbuf->b_namedm[i], *result))
501 && LT_POS(pos, curbuf->b_namedm[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 result = &curbuf->b_namedm[i];
503 }
504 else
505 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100506 if ((result == NULL || LT_POS(*result, curbuf->b_namedm[i]))
507 && LT_POS(curbuf->b_namedm[i], pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 result = &curbuf->b_namedm[i];
509 }
510 }
511 }
512
513 return result;
514}
515
516/*
517 * For an xtended filemark: set the fnum from the fname.
518 * This is used for marks obtained from the .viminfo file. It's postponed
519 * until the mark is used to avoid a long startup delay.
520 */
521 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100522fname2fnum(xfmark_T *fm)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523{
524 char_u *p;
525
526 if (fm->fname != NULL)
527 {
528 /*
529 * First expand "~/" in the file name to the home directory.
Bram Moolenaar525ad4d2008-01-03 19:22:13 +0000530 * Don't expand the whole name, it may contain other '~' chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 */
Bram Moolenaar525ad4d2008-01-03 19:22:13 +0000532 if (fm->fname[0] == '~' && (fm->fname[1] == '/'
533#ifdef BACKSLASH_IN_FILENAME
534 || fm->fname[1] == '\\'
535#endif
536 ))
537 {
538 int len;
539
540 expand_env((char_u *)"~/", NameBuff, MAXPATHL);
Bram Moolenaarcb4cef22008-03-16 15:04:34 +0000541 len = (int)STRLEN(NameBuff);
Bram Moolenaar525ad4d2008-01-03 19:22:13 +0000542 vim_strncpy(NameBuff + len, fm->fname + 2, MAXPATHL - len - 1);
543 }
544 else
545 vim_strncpy(NameBuff, fm->fname, MAXPATHL - 1);
546
547 /* Try to shorten the file name. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 mch_dirname(IObuff, IOSIZE);
549 p = shorten_fname(NameBuff, IObuff);
550
551 /* buflist_new() will call fmarks_check_names() */
552 (void)buflist_new(NameBuff, p, (linenr_T)1, 0);
553 }
554}
555
556/*
557 * Check all file marks for a name that matches the file name in buf.
558 * May replace the name with an fnum.
559 * Used for marks that come from the .viminfo file.
560 */
561 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100562fmarks_check_names(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563{
564 char_u *name;
565 int i;
566#ifdef FEAT_JUMPLIST
567 win_T *wp;
568#endif
569
570 if (buf->b_ffname == NULL)
571 return;
572
573 name = home_replace_save(buf, buf->b_ffname);
574 if (name == NULL)
575 return;
576
577 for (i = 0; i < NMARKS + EXTRA_MARKS; ++i)
578 fmarks_check_one(&namedfm[i], name, buf);
579
580#ifdef FEAT_JUMPLIST
581 FOR_ALL_WINDOWS(wp)
582 {
583 for (i = 0; i < wp->w_jumplistlen; ++i)
584 fmarks_check_one(&wp->w_jumplist[i], name, buf);
585 }
586#endif
587
588 vim_free(name);
589}
590
591 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100592fmarks_check_one(xfmark_T *fm, char_u *name, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593{
594 if (fm->fmark.fnum == 0
595 && fm->fname != NULL
596 && fnamecmp(name, fm->fname) == 0)
597 {
598 fm->fmark.fnum = buf->b_fnum;
599 vim_free(fm->fname);
600 fm->fname = NULL;
601 }
602}
603
604/*
605 * Check a if a position from a mark is valid.
606 * Give and error message and return FAIL if not.
607 */
608 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100609check_mark(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610{
611 if (pos == NULL)
612 {
613 EMSG(_(e_umark));
614 return FAIL;
615 }
616 if (pos->lnum <= 0)
617 {
618 /* lnum is negative if mark is in another file can can't get that
619 * file, error message already give then. */
620 if (pos->lnum == 0)
621 EMSG(_(e_marknotset));
622 return FAIL;
623 }
624 if (pos->lnum > curbuf->b_ml.ml_line_count)
625 {
626 EMSG(_(e_markinval));
627 return FAIL;
628 }
629 return OK;
630}
631
632/*
633 * clrallmarks() - clear all marks in the buffer 'buf'
634 *
635 * Used mainly when trashing the entire buffer during ":e" type commands
636 */
637 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100638clrallmarks(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639{
640 static int i = -1;
641
642 if (i == -1) /* first call ever: initialize */
643 for (i = 0; i < NMARKS + 1; i++)
644 {
645 namedfm[i].fmark.mark.lnum = 0;
646 namedfm[i].fname = NULL;
Bram Moolenaar2d358992016-06-12 21:20:54 +0200647#ifdef FEAT_VIMINFO
648 namedfm[i].time_set = 0;
649#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 }
651
652 for (i = 0; i < NMARKS; i++)
653 buf->b_namedm[i].lnum = 0;
654 buf->b_op_start.lnum = 0; /* start/end op mark cleared */
655 buf->b_op_end.lnum = 0;
656 buf->b_last_cursor.lnum = 1; /* '" mark cleared */
657 buf->b_last_cursor.col = 0;
658#ifdef FEAT_VIRTUALEDIT
659 buf->b_last_cursor.coladd = 0;
660#endif
661 buf->b_last_insert.lnum = 0; /* '^ mark cleared */
662 buf->b_last_change.lnum = 0; /* '. mark cleared */
663#ifdef FEAT_JUMPLIST
664 buf->b_changelistlen = 0;
665#endif
666}
667
668/*
669 * Get name of file from a filemark.
670 * When it's in the current buffer, return the text at the mark.
671 * Returns an allocated string.
672 */
673 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100674fm_getname(fmark_T *fmark, int lead_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675{
676 if (fmark->fnum == curbuf->b_fnum) /* current buffer */
677 return mark_line(&(fmark->mark), lead_len);
678 return buflist_nr2name(fmark->fnum, FALSE, TRUE);
679}
680
681/*
682 * Return the line at mark "mp". Truncate to fit in window.
683 * The returned string has been allocated.
684 */
685 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100686mark_line(pos_T *mp, int lead_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687{
688 char_u *s, *p;
689 int len;
690
691 if (mp->lnum == 0 || mp->lnum > curbuf->b_ml.ml_line_count)
692 return vim_strsave((char_u *)"-invalid-");
693 s = vim_strnsave(skipwhite(ml_get(mp->lnum)), (int)Columns);
694 if (s == NULL)
695 return NULL;
696 /* Truncate the line to fit it in the window */
697 len = 0;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100698 for (p = s; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 {
700 len += ptr2cells(p);
701 if (len >= Columns - lead_len)
702 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 }
704 *p = NUL;
705 return s;
706}
707
708/*
709 * print the marks
710 */
711 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100712do_marks(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713{
714 char_u *arg = eap->arg;
715 int i;
716 char_u *name;
717
718 if (arg != NULL && *arg == NUL)
719 arg = NULL;
720
721 show_one_mark('\'', arg, &curwin->w_pcmark, NULL, TRUE);
722 for (i = 0; i < NMARKS; ++i)
723 show_one_mark(i + 'a', arg, &curbuf->b_namedm[i], NULL, TRUE);
724 for (i = 0; i < NMARKS + EXTRA_MARKS; ++i)
725 {
726 if (namedfm[i].fmark.fnum != 0)
727 name = fm_getname(&namedfm[i].fmark, 15);
728 else
729 name = namedfm[i].fname;
730 if (name != NULL)
731 {
732 show_one_mark(i >= NMARKS ? i - NMARKS + '0' : i + 'A',
733 arg, &namedfm[i].fmark.mark, name,
734 namedfm[i].fmark.fnum == curbuf->b_fnum);
735 if (namedfm[i].fmark.fnum != 0)
736 vim_free(name);
737 }
738 }
739 show_one_mark('"', arg, &curbuf->b_last_cursor, NULL, TRUE);
740 show_one_mark('[', arg, &curbuf->b_op_start, NULL, TRUE);
741 show_one_mark(']', arg, &curbuf->b_op_end, NULL, TRUE);
742 show_one_mark('^', arg, &curbuf->b_last_insert, NULL, TRUE);
743 show_one_mark('.', arg, &curbuf->b_last_change, NULL, TRUE);
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000744 show_one_mark('<', arg, &curbuf->b_visual.vi_start, NULL, TRUE);
745 show_one_mark('>', arg, &curbuf->b_visual.vi_end, NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 show_one_mark(-1, arg, NULL, NULL, FALSE);
747}
748
749 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100750show_one_mark(
751 int c,
752 char_u *arg,
753 pos_T *p,
754 char_u *name,
755 int current) /* in current file */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756{
757 static int did_title = FALSE;
758 int mustfree = FALSE;
759
760 if (c == -1) /* finish up */
761 {
762 if (did_title)
763 did_title = FALSE;
764 else
765 {
766 if (arg == NULL)
767 MSG(_("No marks set"));
768 else
769 EMSG2(_("E283: No marks matching \"%s\""), arg);
770 }
771 }
772 /* don't output anything if 'q' typed at --more-- prompt */
773 else if (!got_int
774 && (arg == NULL || vim_strchr(arg, c) != NULL)
775 && p->lnum != 0)
776 {
777 if (!did_title)
778 {
779 /* Highlight title */
780 MSG_PUTS_TITLE(_("\nmark line col file/text"));
781 did_title = TRUE;
782 }
783 msg_putchar('\n');
784 if (!got_int)
785 {
786 sprintf((char *)IObuff, " %c %6ld %4d ", c, p->lnum, p->col);
787 msg_outtrans(IObuff);
788 if (name == NULL && current)
789 {
790 name = mark_line(p, 15);
791 mustfree = TRUE;
792 }
793 if (name != NULL)
794 {
795 msg_outtrans_attr(name, current ? hl_attr(HLF_D) : 0);
796 if (mustfree)
797 vim_free(name);
798 }
799 }
800 out_flush(); /* show one line at a time */
801 }
802}
803
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000804/*
805 * ":delmarks[!] [marks]"
806 */
807 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100808ex_delmarks(exarg_T *eap)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000809{
810 char_u *p;
811 int from, to;
812 int i;
813 int lower;
814 int digit;
815 int n;
816
817 if (*eap->arg == NUL && eap->forceit)
818 /* clear all marks */
819 clrallmarks(curbuf);
820 else if (eap->forceit)
821 EMSG(_(e_invarg));
822 else if (*eap->arg == NUL)
823 EMSG(_(e_argreq));
824 else
825 {
826 /* clear specified marks only */
827 for (p = eap->arg; *p != NUL; ++p)
828 {
829 lower = ASCII_ISLOWER(*p);
830 digit = VIM_ISDIGIT(*p);
831 if (lower || digit || ASCII_ISUPPER(*p))
832 {
833 if (p[1] == '-')
834 {
835 /* clear range of marks */
836 from = *p;
837 to = p[2];
838 if (!(lower ? ASCII_ISLOWER(p[2])
839 : (digit ? VIM_ISDIGIT(p[2])
840 : ASCII_ISUPPER(p[2])))
841 || to < from)
842 {
843 EMSG2(_(e_invarg2), p);
844 return;
845 }
846 p += 2;
847 }
848 else
849 /* clear one lower case mark */
850 from = to = *p;
851
852 for (i = from; i <= to; ++i)
853 {
854 if (lower)
855 curbuf->b_namedm[i - 'a'].lnum = 0;
856 else
857 {
858 if (digit)
859 n = i - '0' + NMARKS;
860 else
861 n = i - 'A';
862 namedfm[n].fmark.mark.lnum = 0;
863 vim_free(namedfm[n].fname);
864 namedfm[n].fname = NULL;
Bram Moolenaar2d358992016-06-12 21:20:54 +0200865#ifdef FEAT_VIMINFO
866 namedfm[n].time_set = 0;
867#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000868 }
869 }
870 }
871 else
872 switch (*p)
873 {
874 case '"': curbuf->b_last_cursor.lnum = 0; break;
875 case '^': curbuf->b_last_insert.lnum = 0; break;
876 case '.': curbuf->b_last_change.lnum = 0; break;
877 case '[': curbuf->b_op_start.lnum = 0; break;
878 case ']': curbuf->b_op_end.lnum = 0; break;
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000879 case '<': curbuf->b_visual.vi_start.lnum = 0; break;
880 case '>': curbuf->b_visual.vi_end.lnum = 0; break;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000881 case ' ': break;
882 default: EMSG2(_(e_invarg2), p);
883 return;
884 }
885 }
886 }
887}
888
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889#if defined(FEAT_JUMPLIST) || defined(PROTO)
890/*
891 * print the jumplist
892 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100894ex_jumps(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895{
896 int i;
897 char_u *name;
898
899 cleanup_jumplist();
900 /* Highlight title */
901 MSG_PUTS_TITLE(_("\n jump line col file/text"));
902 for (i = 0; i < curwin->w_jumplistlen && !got_int; ++i)
903 {
904 if (curwin->w_jumplist[i].fmark.mark.lnum != 0)
905 {
906 if (curwin->w_jumplist[i].fmark.fnum == 0)
907 fname2fnum(&curwin->w_jumplist[i]);
908 name = fm_getname(&curwin->w_jumplist[i].fmark, 16);
909 if (name == NULL) /* file name not available */
910 continue;
911
912 msg_putchar('\n');
913 if (got_int)
Bram Moolenaared39e1d2008-08-09 17:55:22 +0000914 {
915 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 break;
Bram Moolenaared39e1d2008-08-09 17:55:22 +0000917 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 sprintf((char *)IObuff, "%c %2d %5ld %4d ",
919 i == curwin->w_jumplistidx ? '>' : ' ',
920 i > curwin->w_jumplistidx ? i - curwin->w_jumplistidx
921 : curwin->w_jumplistidx - i,
922 curwin->w_jumplist[i].fmark.mark.lnum,
923 curwin->w_jumplist[i].fmark.mark.col);
924 msg_outtrans(IObuff);
925 msg_outtrans_attr(name,
926 curwin->w_jumplist[i].fmark.fnum == curbuf->b_fnum
927 ? hl_attr(HLF_D) : 0);
928 vim_free(name);
929 ui_breakcheck();
930 }
931 out_flush();
932 }
933 if (curwin->w_jumplistidx == curwin->w_jumplistlen)
934 MSG_PUTS("\n>");
935}
936
Bram Moolenaar2d358992016-06-12 21:20:54 +0200937 void
938ex_clearjumps(exarg_T *eap UNUSED)
939{
940 free_jumplist(curwin);
941 curwin->w_jumplistlen = 0;
942 curwin->w_jumplistidx = 0;
943}
944
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945/*
946 * print the changelist
947 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100949ex_changes(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950{
951 int i;
952 char_u *name;
953
954 /* Highlight title */
955 MSG_PUTS_TITLE(_("\nchange line col text"));
956
957 for (i = 0; i < curbuf->b_changelistlen && !got_int; ++i)
958 {
959 if (curbuf->b_changelist[i].lnum != 0)
960 {
961 msg_putchar('\n');
962 if (got_int)
963 break;
964 sprintf((char *)IObuff, "%c %3d %5ld %4d ",
965 i == curwin->w_changelistidx ? '>' : ' ',
966 i > curwin->w_changelistidx ? i - curwin->w_changelistidx
967 : curwin->w_changelistidx - i,
968 (long)curbuf->b_changelist[i].lnum,
969 curbuf->b_changelist[i].col);
970 msg_outtrans(IObuff);
971 name = mark_line(&curbuf->b_changelist[i], 17);
972 if (name == NULL)
973 break;
974 msg_outtrans_attr(name, hl_attr(HLF_D));
975 vim_free(name);
976 ui_breakcheck();
977 }
978 out_flush();
979 }
980 if (curwin->w_changelistidx == curbuf->b_changelistlen)
981 MSG_PUTS("\n>");
982}
983#endif
984
985#define one_adjust(add) \
986 { \
987 lp = add; \
988 if (*lp >= line1 && *lp <= line2) \
989 { \
990 if (amount == MAXLNUM) \
991 *lp = 0; \
992 else \
993 *lp += amount; \
994 } \
995 else if (amount_after && *lp > line2) \
996 *lp += amount_after; \
997 }
998
999/* don't delete the line, just put at first deleted line */
1000#define one_adjust_nodel(add) \
1001 { \
1002 lp = add; \
1003 if (*lp >= line1 && *lp <= line2) \
1004 { \
1005 if (amount == MAXLNUM) \
1006 *lp = line1; \
1007 else \
1008 *lp += amount; \
1009 } \
1010 else if (amount_after && *lp > line2) \
1011 *lp += amount_after; \
1012 }
1013
1014/*
1015 * Adjust marks between line1 and line2 (inclusive) to move 'amount' lines.
1016 * Must be called before changed_*(), appended_lines() or deleted_lines().
1017 * May be called before or after changing the text.
1018 * When deleting lines line1 to line2, use an 'amount' of MAXLNUM: The marks
1019 * within this range are made invalid.
1020 * If 'amount_after' is non-zero adjust marks after line2.
1021 * Example: Delete lines 34 and 35: mark_adjust(34, 35, MAXLNUM, -2);
1022 * Example: Insert two lines below 55: mark_adjust(56, MAXLNUM, 2, 0);
1023 * or: mark_adjust(56, 55, MAXLNUM, 2);
1024 */
1025 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001026mark_adjust(
1027 linenr_T line1,
1028 linenr_T line2,
1029 long amount,
1030 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031{
1032 int i;
1033 int fnum = curbuf->b_fnum;
1034 linenr_T *lp;
1035 win_T *win;
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001036#ifdef FEAT_WINDOWS
1037 tabpage_T *tab;
1038#endif
Bram Moolenaarb6a76ff2013-02-06 12:33:21 +01001039 static pos_T initpos = INIT_POS_T(1, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040
1041 if (line2 < line1 && amount_after == 0L) /* nothing to do */
1042 return;
1043
1044 if (!cmdmod.lockmarks)
1045 {
1046 /* named marks, lower case and upper case */
1047 for (i = 0; i < NMARKS; i++)
1048 {
1049 one_adjust(&(curbuf->b_namedm[i].lnum));
1050 if (namedfm[i].fmark.fnum == fnum)
1051 one_adjust_nodel(&(namedfm[i].fmark.mark.lnum));
1052 }
1053 for (i = NMARKS; i < NMARKS + EXTRA_MARKS; i++)
1054 {
1055 if (namedfm[i].fmark.fnum == fnum)
1056 one_adjust_nodel(&(namedfm[i].fmark.mark.lnum));
1057 }
1058
1059 /* last Insert position */
1060 one_adjust(&(curbuf->b_last_insert.lnum));
1061
1062 /* last change position */
1063 one_adjust(&(curbuf->b_last_change.lnum));
1064
Bram Moolenaarb6a76ff2013-02-06 12:33:21 +01001065 /* last cursor position, if it was set */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001066 if (!EQUAL_POS(curbuf->b_last_cursor, initpos))
Bram Moolenaarb6a76ff2013-02-06 12:33:21 +01001067 one_adjust(&(curbuf->b_last_cursor.lnum));
1068
1069
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070#ifdef FEAT_JUMPLIST
1071 /* list of change positions */
1072 for (i = 0; i < curbuf->b_changelistlen; ++i)
1073 one_adjust_nodel(&(curbuf->b_changelist[i].lnum));
1074#endif
1075
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 /* Visual area */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001077 one_adjust_nodel(&(curbuf->b_visual.vi_start.lnum));
1078 one_adjust_nodel(&(curbuf->b_visual.vi_end.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079
1080#ifdef FEAT_QUICKFIX
1081 /* quickfix marks */
Bram Moolenaar28c258f2006-01-25 22:02:51 +00001082 qf_mark_adjust(NULL, line1, line2, amount, amount_after);
1083 /* location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001084 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaar28c258f2006-01-25 22:02:51 +00001085 qf_mark_adjust(win, line1, line2, amount, amount_after);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086#endif
1087
1088#ifdef FEAT_SIGNS
1089 sign_mark_adjust(line1, line2, amount, amount_after);
1090#endif
1091 }
1092
1093 /* previous context mark */
1094 one_adjust(&(curwin->w_pcmark.lnum));
1095
1096 /* previous pcmark */
1097 one_adjust(&(curwin->w_prev_pcmark.lnum));
1098
1099 /* saved cursor for formatting */
1100 if (saved_cursor.lnum != 0)
1101 one_adjust_nodel(&(saved_cursor.lnum));
1102
1103 /*
1104 * Adjust items in all windows related to the current buffer.
1105 */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001106 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 {
1108#ifdef FEAT_JUMPLIST
1109 if (!cmdmod.lockmarks)
1110 /* Marks in the jumplist. When deleting lines, this may create
1111 * duplicate marks in the jumplist, they will be removed later. */
1112 for (i = 0; i < win->w_jumplistlen; ++i)
1113 if (win->w_jumplist[i].fmark.fnum == fnum)
1114 one_adjust_nodel(&(win->w_jumplist[i].fmark.mark.lnum));
1115#endif
1116
1117 if (win->w_buffer == curbuf)
1118 {
1119 if (!cmdmod.lockmarks)
1120 /* marks in the tag stack */
1121 for (i = 0; i < win->w_tagstacklen; i++)
1122 if (win->w_tagstack[i].fmark.fnum == fnum)
1123 one_adjust_nodel(&(win->w_tagstack[i].fmark.mark.lnum));
1124
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 /* the displayed Visual area */
1126 if (win->w_old_cursor_lnum != 0)
1127 {
1128 one_adjust_nodel(&(win->w_old_cursor_lnum));
1129 one_adjust_nodel(&(win->w_old_visual_lnum));
1130 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131
1132 /* topline and cursor position for windows with the same buffer
1133 * other than the current window */
1134 if (win != curwin)
1135 {
1136 if (win->w_topline >= line1 && win->w_topline <= line2)
1137 {
1138 if (amount == MAXLNUM) /* topline is deleted */
1139 {
1140 if (line1 <= 1)
1141 win->w_topline = 1;
1142 else
1143 win->w_topline = line1 - 1;
1144 }
1145 else /* keep topline on the same line */
1146 win->w_topline += amount;
1147#ifdef FEAT_DIFF
1148 win->w_topfill = 0;
1149#endif
1150 }
1151 else if (amount_after && win->w_topline > line2)
1152 {
1153 win->w_topline += amount_after;
1154#ifdef FEAT_DIFF
1155 win->w_topfill = 0;
1156#endif
1157 }
1158 if (win->w_cursor.lnum >= line1 && win->w_cursor.lnum <= line2)
1159 {
1160 if (amount == MAXLNUM) /* line with cursor is deleted */
1161 {
1162 if (line1 <= 1)
1163 win->w_cursor.lnum = 1;
1164 else
1165 win->w_cursor.lnum = line1 - 1;
1166 win->w_cursor.col = 0;
1167 }
1168 else /* keep cursor on the same line */
1169 win->w_cursor.lnum += amount;
1170 }
1171 else if (amount_after && win->w_cursor.lnum > line2)
1172 win->w_cursor.lnum += amount_after;
1173 }
1174
1175#ifdef FEAT_FOLDING
1176 /* adjust folds */
1177 foldMarkAdjust(win, line1, line2, amount, amount_after);
1178#endif
1179 }
1180 }
1181
1182#ifdef FEAT_DIFF
1183 /* adjust diffs */
1184 diff_mark_adjust(line1, line2, amount, amount_after);
1185#endif
1186}
1187
1188/* This code is used often, needs to be fast. */
1189#define col_adjust(pp) \
1190 { \
1191 posp = pp; \
1192 if (posp->lnum == lnum && posp->col >= mincol) \
1193 { \
1194 posp->lnum += lnum_amount; \
1195 if (col_amount < 0 && posp->col <= (colnr_T)-col_amount) \
1196 posp->col = 0; \
1197 else \
1198 posp->col += col_amount; \
1199 } \
1200 }
1201
1202/*
1203 * Adjust marks in line "lnum" at column "mincol" and further: add
1204 * "lnum_amount" to the line number and add "col_amount" to the column
1205 * position.
1206 */
1207 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001208mark_col_adjust(
1209 linenr_T lnum,
1210 colnr_T mincol,
1211 long lnum_amount,
1212 long col_amount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213{
1214 int i;
1215 int fnum = curbuf->b_fnum;
1216 win_T *win;
1217 pos_T *posp;
1218
1219 if ((col_amount == 0L && lnum_amount == 0L) || cmdmod.lockmarks)
1220 return; /* nothing to do */
1221
1222 /* named marks, lower case and upper case */
1223 for (i = 0; i < NMARKS; i++)
1224 {
1225 col_adjust(&(curbuf->b_namedm[i]));
1226 if (namedfm[i].fmark.fnum == fnum)
1227 col_adjust(&(namedfm[i].fmark.mark));
1228 }
1229 for (i = NMARKS; i < NMARKS + EXTRA_MARKS; i++)
1230 {
1231 if (namedfm[i].fmark.fnum == fnum)
1232 col_adjust(&(namedfm[i].fmark.mark));
1233 }
1234
1235 /* last Insert position */
1236 col_adjust(&(curbuf->b_last_insert));
1237
1238 /* last change position */
1239 col_adjust(&(curbuf->b_last_change));
1240
1241#ifdef FEAT_JUMPLIST
1242 /* list of change positions */
1243 for (i = 0; i < curbuf->b_changelistlen; ++i)
1244 col_adjust(&(curbuf->b_changelist[i]));
1245#endif
1246
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 /* Visual area */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001248 col_adjust(&(curbuf->b_visual.vi_start));
1249 col_adjust(&(curbuf->b_visual.vi_end));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250
1251 /* previous context mark */
1252 col_adjust(&(curwin->w_pcmark));
1253
1254 /* previous pcmark */
1255 col_adjust(&(curwin->w_prev_pcmark));
1256
1257 /* saved cursor for formatting */
1258 col_adjust(&saved_cursor);
1259
1260 /*
1261 * Adjust items in all windows related to the current buffer.
1262 */
1263 FOR_ALL_WINDOWS(win)
1264 {
1265#ifdef FEAT_JUMPLIST
1266 /* marks in the jumplist */
1267 for (i = 0; i < win->w_jumplistlen; ++i)
1268 if (win->w_jumplist[i].fmark.fnum == fnum)
1269 col_adjust(&(win->w_jumplist[i].fmark.mark));
1270#endif
1271
1272 if (win->w_buffer == curbuf)
1273 {
1274 /* marks in the tag stack */
1275 for (i = 0; i < win->w_tagstacklen; i++)
1276 if (win->w_tagstack[i].fmark.fnum == fnum)
1277 col_adjust(&(win->w_tagstack[i].fmark.mark));
1278
1279 /* cursor position for other windows with the same buffer */
1280 if (win != curwin)
1281 col_adjust(&win->w_cursor);
1282 }
1283 }
1284}
1285
1286#ifdef FEAT_JUMPLIST
1287/*
1288 * When deleting lines, this may create duplicate marks in the
1289 * jumplist. They will be removed here for the current window.
1290 */
1291 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001292cleanup_jumplist(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293{
1294 int i;
1295 int from, to;
1296
1297 to = 0;
1298 for (from = 0; from < curwin->w_jumplistlen; ++from)
1299 {
1300 if (curwin->w_jumplistidx == from)
1301 curwin->w_jumplistidx = to;
1302 for (i = from + 1; i < curwin->w_jumplistlen; ++i)
1303 if (curwin->w_jumplist[i].fmark.fnum
1304 == curwin->w_jumplist[from].fmark.fnum
1305 && curwin->w_jumplist[from].fmark.fnum != 0
1306 && curwin->w_jumplist[i].fmark.mark.lnum
1307 == curwin->w_jumplist[from].fmark.mark.lnum)
1308 break;
1309 if (i >= curwin->w_jumplistlen) /* no duplicate */
1310 curwin->w_jumplist[to++] = curwin->w_jumplist[from];
1311 else
1312 vim_free(curwin->w_jumplist[from].fname);
1313 }
1314 if (curwin->w_jumplistidx == curwin->w_jumplistlen)
1315 curwin->w_jumplistidx = to;
1316 curwin->w_jumplistlen = to;
1317}
1318
1319# if defined(FEAT_WINDOWS) || defined(PROTO)
1320/*
1321 * Copy the jumplist from window "from" to window "to".
1322 */
1323 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001324copy_jumplist(win_T *from, win_T *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325{
1326 int i;
1327
1328 for (i = 0; i < from->w_jumplistlen; ++i)
1329 {
1330 to->w_jumplist[i] = from->w_jumplist[i];
1331 if (from->w_jumplist[i].fname != NULL)
1332 to->w_jumplist[i].fname = vim_strsave(from->w_jumplist[i].fname);
1333 }
1334 to->w_jumplistlen = from->w_jumplistlen;
1335 to->w_jumplistidx = from->w_jumplistidx;
1336}
1337
1338/*
1339 * Free items in the jumplist of window "wp".
1340 */
1341 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001342free_jumplist(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343{
1344 int i;
1345
1346 for (i = 0; i < wp->w_jumplistlen; ++i)
1347 vim_free(wp->w_jumplist[i].fname);
1348}
1349# endif
1350#endif /* FEAT_JUMPLIST */
1351
1352 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001353set_last_cursor(win_T *win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354{
Bram Moolenaar9db12932013-11-03 00:20:52 +01001355 if (win->w_buffer != NULL)
1356 win->w_buffer->b_last_cursor = win->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357}
1358
Bram Moolenaarea408852005-06-25 22:49:46 +00001359#if defined(EXITFREE) || defined(PROTO)
1360 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001361free_all_marks(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00001362{
1363 int i;
1364
1365 for (i = 0; i < NMARKS + EXTRA_MARKS; i++)
1366 if (namedfm[i].fmark.mark.lnum != 0)
1367 vim_free(namedfm[i].fname);
1368}
1369#endif
1370
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371#if defined(FEAT_VIMINFO) || defined(PROTO)
1372 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001373read_viminfo_filemark(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374{
1375 char_u *str;
1376 xfmark_T *fm;
1377 int i;
1378
1379 /* We only get here if line[0] == '\'' or '-'.
1380 * Illegal mark names are ignored (for future expansion). */
1381 str = virp->vir_line + 1;
1382 if (
1383#ifndef EBCDIC
1384 *str <= 127 &&
1385#endif
1386 ((*virp->vir_line == '\'' && (VIM_ISDIGIT(*str) || isupper(*str)))
1387 || (*virp->vir_line == '-' && *str == '\'')))
1388 {
1389 if (*str == '\'')
1390 {
1391#ifdef FEAT_JUMPLIST
1392 /* If the jumplist isn't full insert fmark as oldest entry */
1393 if (curwin->w_jumplistlen == JUMPLISTSIZE)
1394 fm = NULL;
1395 else
1396 {
1397 for (i = curwin->w_jumplistlen; i > 0; --i)
1398 curwin->w_jumplist[i] = curwin->w_jumplist[i - 1];
1399 ++curwin->w_jumplistidx;
1400 ++curwin->w_jumplistlen;
1401 fm = &curwin->w_jumplist[0];
1402 fm->fmark.mark.lnum = 0;
1403 fm->fname = NULL;
1404 }
1405#else
1406 fm = NULL;
1407#endif
1408 }
1409 else if (VIM_ISDIGIT(*str))
1410 fm = &namedfm[*str - '0' + NMARKS];
1411 else
1412 fm = &namedfm[*str - 'A'];
1413 if (fm != NULL && (fm->fmark.mark.lnum == 0 || force))
1414 {
1415 str = skipwhite(str + 1);
1416 fm->fmark.mark.lnum = getdigits(&str);
1417 str = skipwhite(str);
1418 fm->fmark.mark.col = getdigits(&str);
1419#ifdef FEAT_VIRTUALEDIT
1420 fm->fmark.mark.coladd = 0;
1421#endif
1422 fm->fmark.fnum = 0;
1423 str = skipwhite(str);
1424 vim_free(fm->fname);
1425 fm->fname = viminfo_readstring(virp, (int)(str - virp->vir_line),
1426 FALSE);
Bram Moolenaar2d358992016-06-12 21:20:54 +02001427 fm->time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 }
1429 }
1430 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
1431}
1432
Bram Moolenaar2d358992016-06-12 21:20:54 +02001433static xfmark_T *vi_namedfm = NULL;
1434#ifdef FEAT_JUMPLIST
1435static xfmark_T *vi_jumplist = NULL;
1436static int vi_jumplist_len = 0;
1437#endif
1438
1439/*
1440 * Prepare for reading viminfo marks when writing viminfo later.
1441 */
1442 void
1443prepare_viminfo_marks(void)
1444{
1445 vi_namedfm = (xfmark_T *)alloc_clear((NMARKS + EXTRA_MARKS)
1446 * (int)sizeof(xfmark_T));
1447#ifdef FEAT_JUMPLIST
1448 vi_jumplist = (xfmark_T *)alloc_clear(JUMPLISTSIZE
1449 * (int)sizeof(xfmark_T));
1450 vi_jumplist_len = 0;
1451#endif
1452}
1453
1454 void
1455finish_viminfo_marks(void)
1456{
1457 int i;
1458
1459 if (vi_namedfm != NULL)
1460 {
1461 for (i = 0; i < NMARKS + EXTRA_MARKS; ++i)
1462 vim_free(vi_namedfm[i].fname);
1463 vim_free(vi_namedfm);
1464 vi_namedfm = NULL;
1465 }
1466#ifdef FEAT_JUMPLIST
1467 if (vi_jumplist != NULL)
1468 {
1469 for (i = 0; i < vi_jumplist_len; ++i)
1470 vim_free(vi_jumplist[i].fname);
1471 vim_free(vi_jumplist);
1472 vi_jumplist = NULL;
1473 }
1474#endif
1475}
1476
1477/*
1478 * Accept a new style mark line from the viminfo, store it when it's new.
1479 */
1480 void
1481handle_viminfo_mark(garray_T *values, int force)
1482{
1483 bval_T *vp = (bval_T *)values->ga_data;
1484 int name;
1485 linenr_T lnum;
1486 colnr_T col;
1487 time_t timestamp;
1488 xfmark_T *fm = NULL;
1489
1490 /* Check the format:
1491 * |{bartype},{name},{lnum},{col},{timestamp},{filename} */
1492 if (values->ga_len < 5
1493 || vp[0].bv_type != BVAL_NR
1494 || vp[1].bv_type != BVAL_NR
1495 || vp[2].bv_type != BVAL_NR
1496 || vp[3].bv_type != BVAL_NR
1497 || vp[4].bv_type != BVAL_STRING)
1498 return;
1499
1500 name = vp[0].bv_nr;
1501 if (name != '\'' && !VIM_ISDIGIT(name) && !ASCII_ISUPPER(name))
1502 return;
1503 lnum = vp[1].bv_nr;
1504 col = vp[2].bv_nr;
1505 if (lnum <= 0 || col < 0)
1506 return;
1507 timestamp = (time_t)vp[3].bv_nr;
1508
1509 if (name == '\'')
1510 {
1511#ifdef FEAT_JUMPLIST
1512 if (vi_jumplist != NULL)
1513 {
1514 if (vi_jumplist_len < JUMPLISTSIZE)
1515 fm = &vi_jumplist[vi_jumplist_len++];
1516 }
1517 else
1518 {
1519 int idx;
1520 int i;
1521
1522 /* If we have a timestamp insert it in the right place. */
1523 if (timestamp != 0)
1524 {
1525 for (idx = curwin->w_jumplistlen - 1; idx >= 0; --idx)
1526 if (curwin->w_jumplist[idx].time_set < timestamp)
Bram Moolenaarece74ab2016-06-13 22:22:15 +02001527 {
1528 ++idx;
Bram Moolenaar2d358992016-06-12 21:20:54 +02001529 break;
Bram Moolenaarece74ab2016-06-13 22:22:15 +02001530 }
Bram Moolenaar678e4802016-06-17 22:38:46 +02001531 /* idx cannot be zero now */
Bram Moolenaarece74ab2016-06-13 22:22:15 +02001532 if (idx < 0 && curwin->w_jumplistlen < JUMPLISTSIZE)
1533 /* insert as the oldest entry */
1534 idx = 0;
Bram Moolenaar2d358992016-06-12 21:20:54 +02001535 }
1536 else if (curwin->w_jumplistlen < JUMPLISTSIZE)
1537 /* insert as oldest entry */
1538 idx = 0;
1539 else
1540 idx = -1;
1541
1542 if (idx >= 0)
1543 {
1544 if (curwin->w_jumplistlen == JUMPLISTSIZE)
1545 {
1546 /* Drop the oldest entry. */
Bram Moolenaar28607ba2016-06-15 21:44:51 +02001547 --idx;
Bram Moolenaar2d358992016-06-12 21:20:54 +02001548 vim_free(curwin->w_jumplist[0].fname);
1549 for (i = 0; i < idx; ++i)
1550 curwin->w_jumplist[i] = curwin->w_jumplist[i + 1];
1551 }
1552 else
1553 {
1554 /* Move newer entries forward. */
Bram Moolenaar2d358992016-06-12 21:20:54 +02001555 for (i = curwin->w_jumplistlen; i > idx; --i)
1556 curwin->w_jumplist[i] = curwin->w_jumplist[i - 1];
1557 ++curwin->w_jumplistidx;
1558 ++curwin->w_jumplistlen;
1559 }
1560 fm = &curwin->w_jumplist[idx];
1561 fm->fmark.mark.lnum = 0;
1562 fm->fname = NULL;
1563 fm->time_set = 0;
1564 }
1565 }
1566#endif
1567 }
1568 else
1569 {
1570 int idx;
1571
1572 if (VIM_ISDIGIT(name))
1573 {
1574 if (vi_namedfm != NULL)
1575 idx = name - '0' + NMARKS;
1576 else
1577 {
1578 int i;
1579
1580 /* Do not use the name from the viminfo file, insert in time
1581 * order. */
1582 for (idx = NMARKS; idx < NMARKS + EXTRA_MARKS; ++idx)
1583 if (namedfm[idx].time_set < timestamp)
1584 break;
1585 if (idx == NMARKS + EXTRA_MARKS)
1586 /* All existing entries are newer. */
1587 return;
1588 i = NMARKS + EXTRA_MARKS - 1;
1589
1590 vim_free(namedfm[i].fname);
1591 for ( ; i > idx; --i)
1592 namedfm[i] = namedfm[i - 1];
1593 namedfm[idx].fname = NULL;
1594 }
1595 }
1596 else
1597 idx = name - 'A';
1598 if (vi_namedfm != NULL)
1599 fm = &vi_namedfm[idx];
1600 else
1601 fm = &namedfm[idx];
1602 }
1603
1604 if (fm != NULL)
1605 {
Bram Moolenaar156919f2016-10-15 20:46:20 +02001606 if (vi_namedfm != NULL || fm->fmark.mark.lnum == 0
1607 || fm->time_set < timestamp || force)
Bram Moolenaar2d358992016-06-12 21:20:54 +02001608 {
1609 fm->fmark.mark.lnum = lnum;
1610 fm->fmark.mark.col = col;
1611#ifdef FEAT_VIRTUALEDIT
1612 fm->fmark.mark.coladd = 0;
1613#endif
1614 fm->fmark.fnum = 0;
1615 vim_free(fm->fname);
1616 if (vp[4].bv_allocated)
1617 {
1618 fm->fname = vp[4].bv_string;
1619 vp[4].bv_string = NULL;
1620 }
1621 else
1622 fm->fname = vim_strsave(vp[4].bv_string);
1623 fm->time_set = timestamp;
1624 }
1625 }
1626}
1627
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001629write_viminfo_filemarks(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630{
1631 int i;
1632 char_u *name;
1633 buf_T *buf;
1634 xfmark_T *fm;
Bram Moolenaar2d358992016-06-12 21:20:54 +02001635 int vi_idx;
1636 int idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
1638 if (get_viminfo_parameter('f') == 0)
1639 return;
1640
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02001641 fputs(_("\n# File marks:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642
Bram Moolenaar2d358992016-06-12 21:20:54 +02001643 /* Write the filemarks 'A - 'Z */
1644 for (i = 0; i < NMARKS; i++)
1645 {
1646 if (vi_namedfm != NULL && (vi_namedfm[i].time_set > namedfm[i].time_set
1647 || namedfm[i].fmark.mark.lnum == 0))
1648 fm = &vi_namedfm[i];
1649 else
1650 fm = &namedfm[i];
1651 write_one_filemark(fp, fm, '\'', i + 'A');
1652 }
1653
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 /*
1655 * Find a mark that is the same file and position as the cursor.
1656 * That one, or else the last one is deleted.
1657 * Move '0 to '1, '1 to '2, etc. until the matching one or '9
Bram Moolenaar2d358992016-06-12 21:20:54 +02001658 * Set the '0 mark to current cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 */
1660 if (curbuf->b_ffname != NULL && !removable(curbuf->b_ffname))
1661 {
1662 name = buflist_nr2name(curbuf->b_fnum, TRUE, FALSE);
1663 for (i = NMARKS; i < NMARKS + EXTRA_MARKS - 1; ++i)
1664 if (namedfm[i].fmark.mark.lnum == curwin->w_cursor.lnum
1665 && (namedfm[i].fname == NULL
1666 ? namedfm[i].fmark.fnum == curbuf->b_fnum
1667 : (name != NULL
1668 && STRCMP(name, namedfm[i].fname) == 0)))
1669 break;
1670 vim_free(name);
1671
1672 vim_free(namedfm[i].fname);
1673 for ( ; i > NMARKS; --i)
1674 namedfm[i] = namedfm[i - 1];
1675 namedfm[NMARKS].fmark.mark = curwin->w_cursor;
1676 namedfm[NMARKS].fmark.fnum = curbuf->b_fnum;
1677 namedfm[NMARKS].fname = NULL;
Bram Moolenaar2d358992016-06-12 21:20:54 +02001678 namedfm[NMARKS].time_set = vim_time();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 }
1680
Bram Moolenaar2d358992016-06-12 21:20:54 +02001681 /* Write the filemarks '0 - '9. Newest (highest timestamp) first. */
1682 vi_idx = NMARKS;
1683 idx = NMARKS;
1684 for (i = NMARKS; i < NMARKS + EXTRA_MARKS; i++)
1685 {
Bram Moolenaar36f0f062016-06-14 23:02:46 +02001686 xfmark_T *vi_fm = vi_namedfm != NULL ? &vi_namedfm[vi_idx] : NULL;
1687
1688 if (vi_fm != NULL
1689 && vi_fm->fmark.mark.lnum != 0
1690 && (vi_fm->time_set > namedfm[idx].time_set
Bram Moolenaar2d358992016-06-12 21:20:54 +02001691 || namedfm[idx].fmark.mark.lnum == 0))
Bram Moolenaar36f0f062016-06-14 23:02:46 +02001692 {
1693 fm = vi_fm;
1694 ++vi_idx;
1695 }
Bram Moolenaar2d358992016-06-12 21:20:54 +02001696 else
Bram Moolenaar36f0f062016-06-14 23:02:46 +02001697 {
Bram Moolenaar2d358992016-06-12 21:20:54 +02001698 fm = &namedfm[idx++];
Bram Moolenaar36f0f062016-06-14 23:02:46 +02001699 if (vi_fm != NULL
1700 && vi_fm->fmark.mark.lnum == fm->fmark.mark.lnum
1701 && vi_fm->time_set == fm->time_set
1702 && ((vi_fm->fmark.fnum != 0
1703 && vi_fm->fmark.fnum == fm->fmark.fnum)
1704 || (vi_fm->fname != NULL
1705 && fm->fname != NULL
1706 && STRCMP(vi_fm->fname, fm->fname) == 0)))
1707 ++vi_idx; /* skip duplicate */
1708 }
Bram Moolenaar2d358992016-06-12 21:20:54 +02001709 write_one_filemark(fp, fm, '\'', i - NMARKS + '0');
1710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711
1712#ifdef FEAT_JUMPLIST
1713 /* Write the jumplist with -' */
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02001714 fputs(_("\n# Jumplist (newest first):\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 setpcmark(); /* add current cursor position */
1716 cleanup_jumplist();
Bram Moolenaarece74ab2016-06-13 22:22:15 +02001717 vi_idx = 0;
1718 idx = curwin->w_jumplistlen - 1;
1719 for (i = 0; i < JUMPLISTSIZE; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 {
Bram Moolenaarece74ab2016-06-13 22:22:15 +02001721 xfmark_T *vi_fm;
1722
1723 fm = idx >= 0 ? &curwin->w_jumplist[idx] : NULL;
1724 vi_fm = vi_idx < vi_jumplist_len ? &vi_jumplist[vi_idx] : NULL;
1725 if (fm == NULL && vi_fm == NULL)
1726 break;
1727 if (fm == NULL || (vi_fm != NULL && fm->time_set < vi_fm->time_set))
1728 {
1729 fm = vi_fm;
1730 ++vi_idx;
1731 }
1732 else
1733 --idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 if (fm->fmark.fnum == 0
1735 || ((buf = buflist_findnr(fm->fmark.fnum)) != NULL
1736 && !removable(buf->b_ffname)))
1737 write_one_filemark(fp, fm, '-', '\'');
1738 }
1739#endif
1740}
1741
1742 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001743write_one_filemark(
1744 FILE *fp,
1745 xfmark_T *fm,
1746 int c1,
1747 int c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748{
1749 char_u *name;
1750
1751 if (fm->fmark.mark.lnum == 0) /* not set */
1752 return;
1753
1754 if (fm->fmark.fnum != 0) /* there is a buffer */
1755 name = buflist_nr2name(fm->fmark.fnum, TRUE, FALSE);
1756 else
1757 name = fm->fname; /* use name from .viminfo */
1758 if (name != NULL && *name != NUL)
1759 {
1760 fprintf(fp, "%c%c %ld %ld ", c1, c2, (long)fm->fmark.mark.lnum,
1761 (long)fm->fmark.mark.col);
1762 viminfo_writestring(fp, name);
Bram Moolenaar2d358992016-06-12 21:20:54 +02001763
1764 /* Barline: |{bartype},{name},{lnum},{col},{timestamp},{filename}
1765 * size up to filename: 8 + 3 * 20 */
1766 fprintf(fp, "|%d,%d,%ld,%ld,%ld,", BARTYPE_MARK, c2,
1767 (long)fm->fmark.mark.lnum, (long)fm->fmark.mark.col,
1768 (long)fm->time_set);
1769 barline_writestring(fp, name, LSIZE - 70);
1770 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 }
1772
1773 if (fm->fmark.fnum != 0)
1774 vim_free(name);
1775}
1776
1777/*
1778 * Return TRUE if "name" is on removable media (depending on 'viminfo').
1779 */
1780 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001781removable(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782{
1783 char_u *p;
1784 char_u part[51];
1785 int retval = FALSE;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001786 size_t n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787
1788 name = home_replace_save(NULL, name);
1789 if (name != NULL)
1790 {
1791 for (p = p_viminfo; *p; )
1792 {
1793 copy_option_part(&p, part, 51, ", ");
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001794 if (part[0] == 'r')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001796 n = STRLEN(part + 1);
1797 if (MB_STRNICMP(part + 1, name, n) == 0)
1798 {
1799 retval = TRUE;
1800 break;
1801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 }
1803 }
1804 vim_free(name);
1805 }
1806 return retval;
1807}
1808
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001809 static void
1810write_one_mark(FILE *fp_out, int c, pos_T *pos)
1811{
1812 if (pos->lnum != 0)
1813 fprintf(fp_out, "\t%c\t%ld\t%d\n", c, (long)pos->lnum, (int)pos->col);
1814}
1815
1816
1817 static void
1818write_buffer_marks(buf_T *buf, FILE *fp_out)
1819{
1820 int i;
1821 pos_T pos;
1822
1823 home_replace(NULL, buf->b_ffname, IObuff, IOSIZE, TRUE);
1824 fprintf(fp_out, "\n> ");
1825 viminfo_writestring(fp_out, IObuff);
1826
1827 /* Write the last used timestamp as the lnum of the non-existing mark '*'.
1828 * Older Vims will ignore it and/or copy it. */
1829 pos.lnum = (linenr_T)buf->b_last_used;
1830 pos.col = 0;
1831 write_one_mark(fp_out, '*', &pos);
1832
1833 write_one_mark(fp_out, '"', &buf->b_last_cursor);
1834 write_one_mark(fp_out, '^', &buf->b_last_insert);
1835 write_one_mark(fp_out, '.', &buf->b_last_change);
1836#ifdef FEAT_JUMPLIST
1837 /* changelist positions are stored oldest first */
1838 for (i = 0; i < buf->b_changelistlen; ++i)
1839 {
1840 /* skip duplicates */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001841 if (i == 0 || !EQUAL_POS(buf->b_changelist[i - 1],
1842 buf->b_changelist[i]))
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001843 write_one_mark(fp_out, '+', &buf->b_changelist[i]);
1844 }
1845#endif
1846 for (i = 0; i < NMARKS; i++)
1847 write_one_mark(fp_out, 'a' + i, &buf->b_namedm[i]);
1848}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849
1850/*
1851 * Write all the named marks for all buffers.
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001852 * When "buflist" is not NULL fill it with the buffers for which marks are to
1853 * be written.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 */
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001855 void
1856write_viminfo_marks(FILE *fp_out, garray_T *buflist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 buf_T *buf;
1859 int is_mark_set;
1860 int i;
1861#ifdef FEAT_WINDOWS
1862 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001863 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864
1865 /*
1866 * Set b_last_cursor for the all buffers that have a window.
1867 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001868 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 set_last_cursor(win);
1870#else
1871 set_last_cursor(curwin);
1872#endif
1873
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02001874 fputs(_("\n# History of marks within files (newest to oldest):\n"), fp_out);
Bram Moolenaar29323592016-07-24 22:04:11 +02001875 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 {
1877 /*
1878 * Only write something if buffer has been loaded and at least one
1879 * mark is set.
1880 */
1881 if (buf->b_marks_read)
1882 {
1883 if (buf->b_last_cursor.lnum != 0)
1884 is_mark_set = TRUE;
1885 else
1886 {
1887 is_mark_set = FALSE;
1888 for (i = 0; i < NMARKS; i++)
1889 if (buf->b_namedm[i].lnum != 0)
1890 {
1891 is_mark_set = TRUE;
1892 break;
1893 }
1894 }
1895 if (is_mark_set && buf->b_ffname != NULL
1896 && buf->b_ffname[0] != NUL && !removable(buf->b_ffname))
1897 {
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001898 if (buflist == NULL)
1899 write_buffer_marks(buf, fp_out);
1900 else if (ga_grow(buflist, 1) == OK)
1901 ((buf_T **)buflist->ga_data)[buflist->ga_len++] = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 }
1903 }
1904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905}
1906
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001907/*
1908 * Compare functions for qsort() below, that compares b_last_used.
1909 */
1910 static int
1911#ifdef __BORLANDC__
1912_RTLENTRYF
1913#endif
1914buf_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915{
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001916 buf_T *buf1 = *(buf_T **)s1;
1917 buf_T *buf2 = *(buf_T **)s2;
1918
1919 if (buf1->b_last_used == buf2->b_last_used)
1920 return 0;
1921 return buf1->b_last_used > buf2->b_last_used ? -1 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922}
1923
1924/*
1925 * Handle marks in the viminfo file:
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001926 * fp_out != NULL: copy marks, in time order with buffers in "buflist".
Bram Moolenaard812df62008-11-09 12:46:09 +00001927 * fp_out == NULL && (flags & VIF_WANT_MARKS): read marks for curbuf only
1928 * fp_out == NULL && (flags & VIF_GET_OLDFILES | VIF_FORCEIT): fill v:oldfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 */
1930 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001931copy_viminfo_marks(
1932 vir_T *virp,
1933 FILE *fp_out,
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001934 garray_T *buflist,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001935 int eof,
1936 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937{
1938 char_u *line = virp->vir_line;
1939 buf_T *buf;
1940 int num_marked_files;
1941 int load_marks;
1942 int copy_marks_out;
1943 char_u *str;
1944 int i;
1945 char_u *p;
1946 char_u *name_buf;
1947 pos_T pos;
Bram Moolenaard812df62008-11-09 12:46:09 +00001948#ifdef FEAT_EVAL
1949 list_T *list = NULL;
1950#endif
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001951 int count = 0;
1952 int buflist_used = 0;
1953 buf_T *buflist_buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954
1955 if ((name_buf = alloc(LSIZE)) == NULL)
1956 return;
1957 *name_buf = NUL;
Bram Moolenaard812df62008-11-09 12:46:09 +00001958
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02001959 if (fp_out != NULL && buflist->ga_len > 0)
1960 {
1961 /* Sort the list of buffers on b_last_used. */
1962 qsort(buflist->ga_data, (size_t)buflist->ga_len,
1963 sizeof(buf_T *), buf_compare);
1964 buflist_buf = ((buf_T **)buflist->ga_data)[0];
1965 }
1966
Bram Moolenaard812df62008-11-09 12:46:09 +00001967#ifdef FEAT_EVAL
1968 if (fp_out == NULL && (flags & (VIF_GET_OLDFILES | VIF_FORCEIT)))
1969 {
1970 list = list_alloc();
1971 if (list != NULL)
1972 set_vim_var_list(VV_OLDFILES, list);
1973 }
1974#endif
1975
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 num_marked_files = get_viminfo_parameter('\'');
1977 while (!eof && (count < num_marked_files || fp_out == NULL))
1978 {
1979 if (line[0] != '>')
1980 {
1981 if (line[0] != '\n' && line[0] != '\r' && line[0] != '#')
1982 {
1983 if (viminfo_error("E576: ", _("Missing '>'"), line))
1984 break; /* too many errors, return now */
1985 }
1986 eof = vim_fgets(line, LSIZE, virp->vir_fd);
1987 continue; /* Skip this dud line */
1988 }
1989
1990 /*
1991 * Handle long line and translate escaped characters.
1992 * Find file name, set str to start.
1993 * Ignore leading and trailing white space.
1994 */
1995 str = skipwhite(line + 1);
1996 str = viminfo_readstring(virp, (int)(str - virp->vir_line), FALSE);
1997 if (str == NULL)
1998 continue;
1999 p = str + STRLEN(str);
2000 while (p != str && (*p == NUL || vim_isspace(*p)))
2001 p--;
2002 if (*p)
2003 p++;
2004 *p = NUL;
2005
Bram Moolenaard812df62008-11-09 12:46:09 +00002006#ifdef FEAT_EVAL
2007 if (list != NULL)
2008 list_append_string(list, str, -1);
2009#endif
2010
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 /*
2012 * If fp_out == NULL, load marks for current buffer.
2013 * If fp_out != NULL, copy marks for buffers not in buflist.
2014 */
2015 load_marks = copy_marks_out = FALSE;
2016 if (fp_out == NULL)
2017 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002018 if ((flags & VIF_WANT_MARKS) && curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 {
2020 if (*name_buf == NUL) /* only need to do this once */
2021 home_replace(NULL, curbuf->b_ffname, name_buf, LSIZE, TRUE);
2022 if (fnamecmp(str, name_buf) == 0)
2023 load_marks = TRUE;
2024 }
2025 }
2026 else /* fp_out != NULL */
2027 {
2028 /* This is slow if there are many buffers!! */
Bram Moolenaar29323592016-07-24 22:04:11 +02002029 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 if (buf->b_ffname != NULL)
2031 {
2032 home_replace(NULL, buf->b_ffname, name_buf, LSIZE, TRUE);
2033 if (fnamecmp(str, name_buf) == 0)
2034 break;
2035 }
2036
2037 /*
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002038 * Copy marks if the buffer has not been loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 */
2040 if (buf == NULL || !buf->b_marks_read)
2041 {
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002042 int did_read_line = FALSE;
2043
2044 if (buflist_buf != NULL)
2045 {
2046 /* Read the next line. If it has the "*" mark compare the
2047 * time stamps. Write entries from "buflist" that are
2048 * newer. */
2049 if (!(eof = viminfo_readline(virp)) && line[0] == TAB)
2050 {
2051 did_read_line = TRUE;
2052 if (line[1] == '*')
2053 {
2054 long ltime;
2055
2056 sscanf((char *)line + 2, "%ld ", &ltime);
2057 while ((time_T)ltime < buflist_buf->b_last_used)
2058 {
2059 write_buffer_marks(buflist_buf, fp_out);
2060 if (++count >= num_marked_files)
2061 break;
2062 if (++buflist_used == buflist->ga_len)
2063 {
2064 buflist_buf = NULL;
2065 break;
2066 }
2067 buflist_buf =
2068 ((buf_T **)buflist->ga_data)[buflist_used];
2069 }
2070 }
2071 else
2072 {
2073 /* No timestamp, must be written by an older Vim.
2074 * Assume all remaining buffers are older then
2075 * ours. */
2076 while (count < num_marked_files
2077 && buflist_used < buflist->ga_len)
2078 {
2079 buflist_buf = ((buf_T **)buflist->ga_data)
2080 [buflist_used++];
2081 write_buffer_marks(buflist_buf, fp_out);
2082 ++count;
2083 }
2084 buflist_buf = NULL;
2085 }
2086
2087 if (count >= num_marked_files)
2088 {
2089 vim_free(str);
2090 break;
2091 }
2092 }
2093 }
2094
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 fputs("\n> ", fp_out);
2096 viminfo_writestring(fp_out, str);
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002097 if (did_read_line)
2098 fputs((char *)line, fp_out);
2099
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 count++;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002101 copy_marks_out = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 }
2103 }
2104 vim_free(str);
2105
2106#ifdef FEAT_VIRTUALEDIT
2107 pos.coladd = 0;
2108#endif
2109 while (!(eof = viminfo_readline(virp)) && line[0] == TAB)
2110 {
2111 if (load_marks)
2112 {
2113 if (line[1] != NUL)
2114 {
Bram Moolenaare698add2011-02-25 15:11:22 +01002115 unsigned u;
2116
2117 sscanf((char *)line + 2, "%ld %u", &pos.lnum, &u);
2118 pos.col = u;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 switch (line[1])
2120 {
2121 case '"': curbuf->b_last_cursor = pos; break;
2122 case '^': curbuf->b_last_insert = pos; break;
2123 case '.': curbuf->b_last_change = pos; break;
2124 case '+':
2125#ifdef FEAT_JUMPLIST
2126 /* changelist positions are stored oldest
2127 * first */
2128 if (curbuf->b_changelistlen == JUMPLISTSIZE)
2129 /* list is full, remove oldest entry */
2130 mch_memmove(curbuf->b_changelist,
2131 curbuf->b_changelist + 1,
2132 sizeof(pos_T) * (JUMPLISTSIZE - 1));
2133 else
2134 ++curbuf->b_changelistlen;
2135 curbuf->b_changelist[
2136 curbuf->b_changelistlen - 1] = pos;
2137#endif
2138 break;
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002139
2140 /* Using the line number for the last-used
2141 * timestamp. */
2142 case '*': curbuf->b_last_used = pos.lnum; break;
2143
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 default: if ((i = line[1] - 'a') >= 0 && i < NMARKS)
2145 curbuf->b_namedm[i] = pos;
2146 }
2147 }
2148 }
2149 else if (copy_marks_out)
2150 fputs((char *)line, fp_out);
2151 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002152
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 if (load_marks)
2154 {
2155#ifdef FEAT_JUMPLIST
2156 win_T *wp;
2157
2158 FOR_ALL_WINDOWS(wp)
2159 {
2160 if (wp->w_buffer == curbuf)
2161 wp->w_changelistidx = curbuf->b_changelistlen;
2162 }
2163#endif
2164 break;
2165 }
2166 }
Bram Moolenaarab9c89b2016-07-03 17:47:26 +02002167
2168 if (fp_out != NULL)
2169 /* Write any remaining entries from buflist. */
2170 while (count < num_marked_files && buflist_used < buflist->ga_len)
2171 {
2172 buflist_buf = ((buf_T **)buflist->ga_data)[buflist_used++];
2173 write_buffer_marks(buflist_buf, fp_out);
2174 ++count;
2175 }
2176
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 vim_free(name_buf);
2178}
2179#endif /* FEAT_VIMINFO */