blob: 03b9f98976b958a99cafb20c86acce203f6fc494 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
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 * 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
30static void fname2fnum __ARGS((xfmark_T *fm));
31static void fmarks_check_one __ARGS((xfmark_T *fm, char_u *name, buf_T *buf));
32static char_u *mark_line __ARGS((pos_T *mp, int lead_len));
33static void show_one_mark __ARGS((int, char_u *, pos_T *, char_u *, int current));
34#ifdef FEAT_JUMPLIST
35static void cleanup_jumplist __ARGS((void));
36#endif
37#ifdef FEAT_VIMINFO
38static void write_one_filemark __ARGS((FILE *fp, xfmark_T *fm, int c1, int c2));
39#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
46setmark(c)
47 int c;
48{
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000049 return setmark_pos(c, &curwin->w_cursor, curbuf->b_fnum);
50}
51
52/*
53 * Set named mark "c" to position "pos".
54 * When "c" is upper case use file "fnum".
55 * Returns OK on success, FAIL if bad name given.
56 */
57 int
58setmark_pos(c, pos, fnum)
59 int c;
60 pos_T *pos;
61 int fnum;
62{
Bram Moolenaar071d4272004-06-13 20:20:40 +000063 int i;
64
65 /* Check for a special key (may cause islower() to crash). */
66 if (c < 0)
67 return FAIL;
68
69 if (c == '\'' || c == '`')
70 {
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000071 if (pos == &curwin->w_cursor)
72 {
73 setpcmark();
74 /* keep it even when the cursor doesn't move */
75 curwin->w_prev_pcmark = curwin->w_pcmark;
76 }
77 else
78 curwin->w_pcmark = *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 return OK;
80 }
81
Bram Moolenaar08250432008-02-13 11:42:46 +000082 if (c == '"')
83 {
84 curbuf->b_last_cursor = *pos;
85 return OK;
86 }
87
Bram Moolenaar071d4272004-06-13 20:20:40 +000088 /* Allow setting '[ and '] for an autocommand that simulates reading a
89 * file. */
90 if (c == '[')
91 {
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000092 curbuf->b_op_start = *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000093 return OK;
94 }
95 if (c == ']')
96 {
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000097 curbuf->b_op_end = *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000098 return OK;
99 }
100
101#ifndef EBCDIC
102 if (c > 'z') /* some islower() and isupper() cannot handle
103 characters above 127 */
104 return FAIL;
105#endif
106 if (islower(c))
107 {
108 i = c - 'a';
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000109 curbuf->b_namedm[i] = *pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110 return OK;
111 }
112 if (isupper(c))
113 {
114 i = c - 'A';
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000115 namedfm[i].fmark.mark = *pos;
116 namedfm[i].fmark.fnum = fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 vim_free(namedfm[i].fname);
118 namedfm[i].fname = NULL;
119 return OK;
120 }
121 return FAIL;
122}
123
124/*
125 * Set the previous context mark to the current position and add it to the
126 * jump list.
127 */
128 void
129setpcmark()
130{
131#ifdef FEAT_JUMPLIST
132 int i;
133 xfmark_T *fm;
134#endif
135#ifdef JUMPLIST_ROTATE
136 xfmark_T tempmark;
137#endif
138
139 /* for :global the mark is set only once */
140 if (global_busy || listcmd_busy || cmdmod.keepjumps)
141 return;
142
143 curwin->w_prev_pcmark = curwin->w_pcmark;
144 curwin->w_pcmark = curwin->w_cursor;
145
146#ifdef FEAT_JUMPLIST
147# ifdef JUMPLIST_ROTATE
148 /*
149 * If last used entry is not at the top, put it at the top by rotating
150 * the stack until it is (the newer entries will be at the bottom).
151 * Keep one entry (the last used one) at the top.
152 */
153 if (curwin->w_jumplistidx < curwin->w_jumplistlen)
154 ++curwin->w_jumplistidx;
155 while (curwin->w_jumplistidx < curwin->w_jumplistlen)
156 {
157 tempmark = curwin->w_jumplist[curwin->w_jumplistlen - 1];
158 for (i = curwin->w_jumplistlen - 1; i > 0; --i)
159 curwin->w_jumplist[i] = curwin->w_jumplist[i - 1];
160 curwin->w_jumplist[0] = tempmark;
161 ++curwin->w_jumplistidx;
162 }
163# endif
164
165 /* If jumplist is full: remove oldest entry */
166 if (++curwin->w_jumplistlen > JUMPLISTSIZE)
167 {
168 curwin->w_jumplistlen = JUMPLISTSIZE;
169 vim_free(curwin->w_jumplist[0].fname);
170 for (i = 1; i < JUMPLISTSIZE; ++i)
171 curwin->w_jumplist[i - 1] = curwin->w_jumplist[i];
172 }
173 curwin->w_jumplistidx = curwin->w_jumplistlen;
174 fm = &curwin->w_jumplist[curwin->w_jumplistlen - 1];
175
176 fm->fmark.mark = curwin->w_pcmark;
177 fm->fmark.fnum = curbuf->b_fnum;
178 fm->fname = NULL;
179#endif
180}
181
182/*
183 * To change context, call setpcmark(), then move the current position to
184 * where ever, then call checkpcmark(). This ensures that the previous
185 * context will only be changed if the cursor moved to a different line.
186 * If pcmark was deleted (with "dG") the previous mark is restored.
187 */
188 void
189checkpcmark()
190{
191 if (curwin->w_prev_pcmark.lnum != 0
192 && (equalpos(curwin->w_pcmark, curwin->w_cursor)
193 || curwin->w_pcmark.lnum == 0))
194 {
195 curwin->w_pcmark = curwin->w_prev_pcmark;
196 curwin->w_prev_pcmark.lnum = 0; /* Show it has been checked */
197 }
198}
199
200#if defined(FEAT_JUMPLIST) || defined(PROTO)
201/*
202 * move "count" positions in the jump list (count may be negative)
203 */
204 pos_T *
205movemark(count)
206 int count;
207{
208 pos_T *pos;
209 xfmark_T *jmp;
210
211 cleanup_jumplist();
212
213 if (curwin->w_jumplistlen == 0) /* nothing to jump to */
214 return (pos_T *)NULL;
215
216 for (;;)
217 {
218 if (curwin->w_jumplistidx + count < 0
219 || curwin->w_jumplistidx + count >= curwin->w_jumplistlen)
220 return (pos_T *)NULL;
221
222 /*
223 * if first CTRL-O or CTRL-I command after a jump, add cursor position
Bram Moolenaarf711faf2007-05-10 16:48:19 +0000224 * to list. Careful: If there are duplicates (CTRL-O immediately after
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 * starting Vim on a file), another entry may have been removed.
226 */
227 if (curwin->w_jumplistidx == curwin->w_jumplistlen)
228 {
229 setpcmark();
230 --curwin->w_jumplistidx; /* skip the new entry */
231 if (curwin->w_jumplistidx + count < 0)
232 return (pos_T *)NULL;
233 }
234
235 curwin->w_jumplistidx += count;
236
237 jmp = curwin->w_jumplist + curwin->w_jumplistidx;
238 if (jmp->fmark.fnum == 0)
239 fname2fnum(jmp);
240 if (jmp->fmark.fnum != curbuf->b_fnum)
241 {
242 /* jump to other file */
243 if (buflist_findnr(jmp->fmark.fnum) == NULL)
244 { /* Skip this one .. */
245 count += count < 0 ? -1 : 1;
246 continue;
247 }
248 if (buflist_getfile(jmp->fmark.fnum, jmp->fmark.mark.lnum,
249 0, FALSE) == FAIL)
250 return (pos_T *)NULL;
251 /* Set lnum again, autocommands my have changed it */
252 curwin->w_cursor = jmp->fmark.mark;
253 pos = (pos_T *)-1;
254 }
255 else
256 pos = &(jmp->fmark.mark);
257 return pos;
258 }
259}
260
261/*
262 * Move "count" positions in the changelist (count may be negative).
263 */
264 pos_T *
265movechangelist(count)
266 int count;
267{
268 int n;
269
270 if (curbuf->b_changelistlen == 0) /* nothing to jump to */
271 return (pos_T *)NULL;
272
273 n = curwin->w_changelistidx;
274 if (n + count < 0)
275 {
276 if (n == 0)
277 return (pos_T *)NULL;
278 n = 0;
279 }
280 else if (n + count >= curbuf->b_changelistlen)
281 {
282 if (n == curbuf->b_changelistlen - 1)
283 return (pos_T *)NULL;
284 n = curbuf->b_changelistlen - 1;
285 }
286 else
287 n += count;
288 curwin->w_changelistidx = n;
289 return curbuf->b_changelist + n;
290}
291#endif
292
293/*
294 * Find mark "c".
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000295 * If "changefile" is TRUE it's allowed to edit another file for '0, 'A, etc.
296 * If "fnum" is not NULL store the fnum there for '0, 'A etc., don't edit
297 * another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 * Returns:
299 * - pointer to pos_T if found. lnum is 0 when mark not set, -1 when mark is
300 * in another file which can't be gotten. (caller needs to check lnum!)
301 * - NULL if there is no mark called 'c'.
302 * - -1 if mark is in other file and jumped there (only if changefile is TRUE)
303 */
304 pos_T *
305getmark(c, changefile)
306 int c;
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000307 int changefile;
308{
309 return getmark_fnum(c, changefile, NULL);
310}
311
312 pos_T *
313getmark_fnum(c, changefile, fnum)
314 int c;
315 int changefile;
316 int *fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317{
318 pos_T *posp;
319#ifdef FEAT_VISUAL
320 pos_T *startp, *endp;
321#endif
322 static pos_T pos_copy;
323
324 posp = NULL;
325
326 /* Check for special key, can't be a mark name and might cause islower()
327 * to crash. */
328 if (c < 0)
329 return posp;
330#ifndef EBCDIC
331 if (c > '~') /* check for islower()/isupper() */
332 ;
333 else
334#endif
335 if (c == '\'' || c == '`') /* previous context mark */
336 {
337 pos_copy = curwin->w_pcmark; /* need to make a copy because */
338 posp = &pos_copy; /* w_pcmark may be changed soon */
339 }
340 else if (c == '"') /* to pos when leaving buffer */
341 posp = &(curbuf->b_last_cursor);
342 else if (c == '^') /* to where Insert mode stopped */
343 posp = &(curbuf->b_last_insert);
344 else if (c == '.') /* to where last change was made */
345 posp = &(curbuf->b_last_change);
346 else if (c == '[') /* to start of previous operator */
347 posp = &(curbuf->b_op_start);
348 else if (c == ']') /* to end of previous operator */
349 posp = &(curbuf->b_op_end);
350 else if (c == '{' || c == '}') /* to previous/next paragraph */
351 {
352 pos_T pos;
353 oparg_T oa;
354 int slcb = listcmd_busy;
355
356 pos = curwin->w_cursor;
357 listcmd_busy = TRUE; /* avoid that '' is changed */
Bram Moolenaar8b96d642005-09-05 22:05:30 +0000358 if (findpar(&oa.inclusive,
359 c == '}' ? FORWARD : BACKWARD, 1L, NUL, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 {
361 pos_copy = curwin->w_cursor;
362 posp = &pos_copy;
363 }
364 curwin->w_cursor = pos;
365 listcmd_busy = slcb;
366 }
367 else if (c == '(' || c == ')') /* to previous/next sentence */
368 {
369 pos_T pos;
370 int slcb = listcmd_busy;
371
372 pos = curwin->w_cursor;
373 listcmd_busy = TRUE; /* avoid that '' is changed */
374 if (findsent(c == ')' ? FORWARD : BACKWARD, 1L))
375 {
376 pos_copy = curwin->w_cursor;
377 posp = &pos_copy;
378 }
379 curwin->w_cursor = pos;
380 listcmd_busy = slcb;
381 }
382#ifdef FEAT_VISUAL
383 else if (c == '<' || c == '>') /* start/end of visual area */
384 {
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000385 startp = &curbuf->b_visual.vi_start;
386 endp = &curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 if ((c == '<') == lt(*startp, *endp))
388 posp = startp;
389 else
390 posp = endp;
391 /*
392 * For Visual line mode, set mark at begin or end of line
393 */
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000394 if (curbuf->b_visual.vi_mode == 'V')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 {
396 pos_copy = *posp;
397 posp = &pos_copy;
398 if (c == '<')
399 pos_copy.col = 0;
400 else
401 pos_copy.col = MAXCOL;
402#ifdef FEAT_VIRTUALEDIT
403 pos_copy.coladd = 0;
404#endif
405 }
406 }
407#endif
408 else if (ASCII_ISLOWER(c)) /* normal named mark */
409 {
410 posp = &(curbuf->b_namedm[c - 'a']);
411 }
412 else if (ASCII_ISUPPER(c) || VIM_ISDIGIT(c)) /* named file mark */
413 {
414 if (VIM_ISDIGIT(c))
415 c = c - '0' + NMARKS;
416 else
417 c -= 'A';
418 posp = &(namedfm[c].fmark.mark);
419
420 if (namedfm[c].fmark.fnum == 0)
421 fname2fnum(&namedfm[c]);
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000422
423 if (fnum != NULL)
424 *fnum = namedfm[c].fmark.fnum;
425 else if (namedfm[c].fmark.fnum != curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 {
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000427 /* mark is in another file */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 posp = &pos_copy;
429
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430 if (namedfm[c].fmark.mark.lnum != 0
431 && changefile && namedfm[c].fmark.fnum)
432 {
433 if (buflist_getfile(namedfm[c].fmark.fnum,
434 (linenr_T)1, GETF_SETMARK, FALSE) == OK)
435 {
436 /* Set the lnum now, autocommands could have changed it */
437 curwin->w_cursor = namedfm[c].fmark.mark;
438 return (pos_T *)-1;
439 }
440 pos_copy.lnum = -1; /* can't get file */
441 }
442 else
443 pos_copy.lnum = 0; /* mark exists, but is not valid in
444 current buffer */
445 }
446 }
447
448 return posp;
449}
450
451/*
452 * Search for the next named mark in the current file.
453 *
454 * Returns pointer to pos_T of the next mark or NULL if no mark is found.
455 */
456 pos_T *
457getnextmark(startpos, dir, begin_line)
458 pos_T *startpos; /* where to start */
459 int dir; /* direction for search */
460 int begin_line;
461{
462 int i;
463 pos_T *result = NULL;
464 pos_T pos;
465
466 pos = *startpos;
467
468 /* When searching backward and leaving the cursor on the first non-blank,
469 * position must be in a previous line.
470 * When searching forward and leaving the cursor on the first non-blank,
471 * position must be in a next line. */
472 if (dir == BACKWARD && begin_line)
473 pos.col = 0;
474 else if (dir == FORWARD && begin_line)
475 pos.col = MAXCOL;
476
477 for (i = 0; i < NMARKS; i++)
478 {
479 if (curbuf->b_namedm[i].lnum > 0)
480 {
481 if (dir == FORWARD)
482 {
483 if ((result == NULL || lt(curbuf->b_namedm[i], *result))
484 && lt(pos, curbuf->b_namedm[i]))
485 result = &curbuf->b_namedm[i];
486 }
487 else
488 {
489 if ((result == NULL || lt(*result, curbuf->b_namedm[i]))
490 && lt(curbuf->b_namedm[i], pos))
491 result = &curbuf->b_namedm[i];
492 }
493 }
494 }
495
496 return result;
497}
498
499/*
500 * For an xtended filemark: set the fnum from the fname.
501 * This is used for marks obtained from the .viminfo file. It's postponed
502 * until the mark is used to avoid a long startup delay.
503 */
504 static void
505fname2fnum(fm)
506 xfmark_T *fm;
507{
508 char_u *p;
509
510 if (fm->fname != NULL)
511 {
512 /*
513 * First expand "~/" in the file name to the home directory.
Bram Moolenaar525ad4d2008-01-03 19:22:13 +0000514 * Don't expand the whole name, it may contain other '~' chars.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 */
Bram Moolenaar525ad4d2008-01-03 19:22:13 +0000516 if (fm->fname[0] == '~' && (fm->fname[1] == '/'
517#ifdef BACKSLASH_IN_FILENAME
518 || fm->fname[1] == '\\'
519#endif
520 ))
521 {
522 int len;
523
524 expand_env((char_u *)"~/", NameBuff, MAXPATHL);
Bram Moolenaarcb4cef22008-03-16 15:04:34 +0000525 len = (int)STRLEN(NameBuff);
Bram Moolenaar525ad4d2008-01-03 19:22:13 +0000526 vim_strncpy(NameBuff + len, fm->fname + 2, MAXPATHL - len - 1);
527 }
528 else
529 vim_strncpy(NameBuff, fm->fname, MAXPATHL - 1);
530
531 /* Try to shorten the file name. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 mch_dirname(IObuff, IOSIZE);
533 p = shorten_fname(NameBuff, IObuff);
534
535 /* buflist_new() will call fmarks_check_names() */
536 (void)buflist_new(NameBuff, p, (linenr_T)1, 0);
537 }
538}
539
540/*
541 * Check all file marks for a name that matches the file name in buf.
542 * May replace the name with an fnum.
543 * Used for marks that come from the .viminfo file.
544 */
545 void
546fmarks_check_names(buf)
547 buf_T *buf;
548{
549 char_u *name;
550 int i;
551#ifdef FEAT_JUMPLIST
552 win_T *wp;
553#endif
554
555 if (buf->b_ffname == NULL)
556 return;
557
558 name = home_replace_save(buf, buf->b_ffname);
559 if (name == NULL)
560 return;
561
562 for (i = 0; i < NMARKS + EXTRA_MARKS; ++i)
563 fmarks_check_one(&namedfm[i], name, buf);
564
565#ifdef FEAT_JUMPLIST
566 FOR_ALL_WINDOWS(wp)
567 {
568 for (i = 0; i < wp->w_jumplistlen; ++i)
569 fmarks_check_one(&wp->w_jumplist[i], name, buf);
570 }
571#endif
572
573 vim_free(name);
574}
575
576 static void
577fmarks_check_one(fm, name, buf)
578 xfmark_T *fm;
579 char_u *name;
580 buf_T *buf;
581{
582 if (fm->fmark.fnum == 0
583 && fm->fname != NULL
584 && fnamecmp(name, fm->fname) == 0)
585 {
586 fm->fmark.fnum = buf->b_fnum;
587 vim_free(fm->fname);
588 fm->fname = NULL;
589 }
590}
591
592/*
593 * Check a if a position from a mark is valid.
594 * Give and error message and return FAIL if not.
595 */
596 int
597check_mark(pos)
598 pos_T *pos;
599{
600 if (pos == NULL)
601 {
602 EMSG(_(e_umark));
603 return FAIL;
604 }
605 if (pos->lnum <= 0)
606 {
607 /* lnum is negative if mark is in another file can can't get that
608 * file, error message already give then. */
609 if (pos->lnum == 0)
610 EMSG(_(e_marknotset));
611 return FAIL;
612 }
613 if (pos->lnum > curbuf->b_ml.ml_line_count)
614 {
615 EMSG(_(e_markinval));
616 return FAIL;
617 }
618 return OK;
619}
620
621/*
622 * clrallmarks() - clear all marks in the buffer 'buf'
623 *
624 * Used mainly when trashing the entire buffer during ":e" type commands
625 */
626 void
627clrallmarks(buf)
628 buf_T *buf;
629{
630 static int i = -1;
631
632 if (i == -1) /* first call ever: initialize */
633 for (i = 0; i < NMARKS + 1; i++)
634 {
635 namedfm[i].fmark.mark.lnum = 0;
636 namedfm[i].fname = NULL;
637 }
638
639 for (i = 0; i < NMARKS; i++)
640 buf->b_namedm[i].lnum = 0;
641 buf->b_op_start.lnum = 0; /* start/end op mark cleared */
642 buf->b_op_end.lnum = 0;
643 buf->b_last_cursor.lnum = 1; /* '" mark cleared */
644 buf->b_last_cursor.col = 0;
645#ifdef FEAT_VIRTUALEDIT
646 buf->b_last_cursor.coladd = 0;
647#endif
648 buf->b_last_insert.lnum = 0; /* '^ mark cleared */
649 buf->b_last_change.lnum = 0; /* '. mark cleared */
650#ifdef FEAT_JUMPLIST
651 buf->b_changelistlen = 0;
652#endif
653}
654
655/*
656 * Get name of file from a filemark.
657 * When it's in the current buffer, return the text at the mark.
658 * Returns an allocated string.
659 */
660 char_u *
661fm_getname(fmark, lead_len)
662 fmark_T *fmark;
663 int lead_len;
664{
665 if (fmark->fnum == curbuf->b_fnum) /* current buffer */
666 return mark_line(&(fmark->mark), lead_len);
667 return buflist_nr2name(fmark->fnum, FALSE, TRUE);
668}
669
670/*
671 * Return the line at mark "mp". Truncate to fit in window.
672 * The returned string has been allocated.
673 */
674 static char_u *
675mark_line(mp, lead_len)
676 pos_T *mp;
677 int lead_len;
678{
679 char_u *s, *p;
680 int len;
681
682 if (mp->lnum == 0 || mp->lnum > curbuf->b_ml.ml_line_count)
683 return vim_strsave((char_u *)"-invalid-");
684 s = vim_strnsave(skipwhite(ml_get(mp->lnum)), (int)Columns);
685 if (s == NULL)
686 return NULL;
687 /* Truncate the line to fit it in the window */
688 len = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000689 for (p = s; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 {
691 len += ptr2cells(p);
692 if (len >= Columns - lead_len)
693 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 }
695 *p = NUL;
696 return s;
697}
698
699/*
700 * print the marks
701 */
702 void
703do_marks(eap)
704 exarg_T *eap;
705{
706 char_u *arg = eap->arg;
707 int i;
708 char_u *name;
709
710 if (arg != NULL && *arg == NUL)
711 arg = NULL;
712
713 show_one_mark('\'', arg, &curwin->w_pcmark, NULL, TRUE);
714 for (i = 0; i < NMARKS; ++i)
715 show_one_mark(i + 'a', arg, &curbuf->b_namedm[i], NULL, TRUE);
716 for (i = 0; i < NMARKS + EXTRA_MARKS; ++i)
717 {
718 if (namedfm[i].fmark.fnum != 0)
719 name = fm_getname(&namedfm[i].fmark, 15);
720 else
721 name = namedfm[i].fname;
722 if (name != NULL)
723 {
724 show_one_mark(i >= NMARKS ? i - NMARKS + '0' : i + 'A',
725 arg, &namedfm[i].fmark.mark, name,
726 namedfm[i].fmark.fnum == curbuf->b_fnum);
727 if (namedfm[i].fmark.fnum != 0)
728 vim_free(name);
729 }
730 }
731 show_one_mark('"', arg, &curbuf->b_last_cursor, NULL, TRUE);
732 show_one_mark('[', arg, &curbuf->b_op_start, NULL, TRUE);
733 show_one_mark(']', arg, &curbuf->b_op_end, NULL, TRUE);
734 show_one_mark('^', arg, &curbuf->b_last_insert, NULL, TRUE);
735 show_one_mark('.', arg, &curbuf->b_last_change, NULL, TRUE);
736#ifdef FEAT_VISUAL
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000737 show_one_mark('<', arg, &curbuf->b_visual.vi_start, NULL, TRUE);
738 show_one_mark('>', arg, &curbuf->b_visual.vi_end, NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739#endif
740 show_one_mark(-1, arg, NULL, NULL, FALSE);
741}
742
743 static void
744show_one_mark(c, arg, p, name, current)
745 int c;
746 char_u *arg;
747 pos_T *p;
748 char_u *name;
749 int current; /* in current file */
750{
751 static int did_title = FALSE;
752 int mustfree = FALSE;
753
754 if (c == -1) /* finish up */
755 {
756 if (did_title)
757 did_title = FALSE;
758 else
759 {
760 if (arg == NULL)
761 MSG(_("No marks set"));
762 else
763 EMSG2(_("E283: No marks matching \"%s\""), arg);
764 }
765 }
766 /* don't output anything if 'q' typed at --more-- prompt */
767 else if (!got_int
768 && (arg == NULL || vim_strchr(arg, c) != NULL)
769 && p->lnum != 0)
770 {
771 if (!did_title)
772 {
773 /* Highlight title */
774 MSG_PUTS_TITLE(_("\nmark line col file/text"));
775 did_title = TRUE;
776 }
777 msg_putchar('\n');
778 if (!got_int)
779 {
780 sprintf((char *)IObuff, " %c %6ld %4d ", c, p->lnum, p->col);
781 msg_outtrans(IObuff);
782 if (name == NULL && current)
783 {
784 name = mark_line(p, 15);
785 mustfree = TRUE;
786 }
787 if (name != NULL)
788 {
789 msg_outtrans_attr(name, current ? hl_attr(HLF_D) : 0);
790 if (mustfree)
791 vim_free(name);
792 }
793 }
794 out_flush(); /* show one line at a time */
795 }
796}
797
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000798/*
799 * ":delmarks[!] [marks]"
800 */
801 void
802ex_delmarks(eap)
803 exarg_T *eap;
804{
805 char_u *p;
806 int from, to;
807 int i;
808 int lower;
809 int digit;
810 int n;
811
812 if (*eap->arg == NUL && eap->forceit)
813 /* clear all marks */
814 clrallmarks(curbuf);
815 else if (eap->forceit)
816 EMSG(_(e_invarg));
817 else if (*eap->arg == NUL)
818 EMSG(_(e_argreq));
819 else
820 {
821 /* clear specified marks only */
822 for (p = eap->arg; *p != NUL; ++p)
823 {
824 lower = ASCII_ISLOWER(*p);
825 digit = VIM_ISDIGIT(*p);
826 if (lower || digit || ASCII_ISUPPER(*p))
827 {
828 if (p[1] == '-')
829 {
830 /* clear range of marks */
831 from = *p;
832 to = p[2];
833 if (!(lower ? ASCII_ISLOWER(p[2])
834 : (digit ? VIM_ISDIGIT(p[2])
835 : ASCII_ISUPPER(p[2])))
836 || to < from)
837 {
838 EMSG2(_(e_invarg2), p);
839 return;
840 }
841 p += 2;
842 }
843 else
844 /* clear one lower case mark */
845 from = to = *p;
846
847 for (i = from; i <= to; ++i)
848 {
849 if (lower)
850 curbuf->b_namedm[i - 'a'].lnum = 0;
851 else
852 {
853 if (digit)
854 n = i - '0' + NMARKS;
855 else
856 n = i - 'A';
857 namedfm[n].fmark.mark.lnum = 0;
858 vim_free(namedfm[n].fname);
859 namedfm[n].fname = NULL;
860 }
861 }
862 }
863 else
864 switch (*p)
865 {
866 case '"': curbuf->b_last_cursor.lnum = 0; break;
867 case '^': curbuf->b_last_insert.lnum = 0; break;
868 case '.': curbuf->b_last_change.lnum = 0; break;
869 case '[': curbuf->b_op_start.lnum = 0; break;
870 case ']': curbuf->b_op_end.lnum = 0; break;
871#ifdef FEAT_VISUAL
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000872 case '<': curbuf->b_visual.vi_start.lnum = 0; break;
873 case '>': curbuf->b_visual.vi_end.lnum = 0; break;
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000874#endif
875 case ' ': break;
876 default: EMSG2(_(e_invarg2), p);
877 return;
878 }
879 }
880 }
881}
882
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883#if defined(FEAT_JUMPLIST) || defined(PROTO)
884/*
885 * print the jumplist
886 */
887/*ARGSUSED*/
888 void
889ex_jumps(eap)
890 exarg_T *eap;
891{
892 int i;
893 char_u *name;
894
895 cleanup_jumplist();
896 /* Highlight title */
897 MSG_PUTS_TITLE(_("\n jump line col file/text"));
898 for (i = 0; i < curwin->w_jumplistlen && !got_int; ++i)
899 {
900 if (curwin->w_jumplist[i].fmark.mark.lnum != 0)
901 {
902 if (curwin->w_jumplist[i].fmark.fnum == 0)
903 fname2fnum(&curwin->w_jumplist[i]);
904 name = fm_getname(&curwin->w_jumplist[i].fmark, 16);
905 if (name == NULL) /* file name not available */
906 continue;
907
908 msg_putchar('\n');
909 if (got_int)
Bram Moolenaared39e1d2008-08-09 17:55:22 +0000910 {
911 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 break;
Bram Moolenaared39e1d2008-08-09 17:55:22 +0000913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 sprintf((char *)IObuff, "%c %2d %5ld %4d ",
915 i == curwin->w_jumplistidx ? '>' : ' ',
916 i > curwin->w_jumplistidx ? i - curwin->w_jumplistidx
917 : curwin->w_jumplistidx - i,
918 curwin->w_jumplist[i].fmark.mark.lnum,
919 curwin->w_jumplist[i].fmark.mark.col);
920 msg_outtrans(IObuff);
921 msg_outtrans_attr(name,
922 curwin->w_jumplist[i].fmark.fnum == curbuf->b_fnum
923 ? hl_attr(HLF_D) : 0);
924 vim_free(name);
925 ui_breakcheck();
926 }
927 out_flush();
928 }
929 if (curwin->w_jumplistidx == curwin->w_jumplistlen)
930 MSG_PUTS("\n>");
931}
932
933/*
934 * print the changelist
935 */
936/*ARGSUSED*/
937 void
938ex_changes(eap)
939 exarg_T *eap;
940{
941 int i;
942 char_u *name;
943
944 /* Highlight title */
945 MSG_PUTS_TITLE(_("\nchange line col text"));
946
947 for (i = 0; i < curbuf->b_changelistlen && !got_int; ++i)
948 {
949 if (curbuf->b_changelist[i].lnum != 0)
950 {
951 msg_putchar('\n');
952 if (got_int)
953 break;
954 sprintf((char *)IObuff, "%c %3d %5ld %4d ",
955 i == curwin->w_changelistidx ? '>' : ' ',
956 i > curwin->w_changelistidx ? i - curwin->w_changelistidx
957 : curwin->w_changelistidx - i,
958 (long)curbuf->b_changelist[i].lnum,
959 curbuf->b_changelist[i].col);
960 msg_outtrans(IObuff);
961 name = mark_line(&curbuf->b_changelist[i], 17);
962 if (name == NULL)
963 break;
964 msg_outtrans_attr(name, hl_attr(HLF_D));
965 vim_free(name);
966 ui_breakcheck();
967 }
968 out_flush();
969 }
970 if (curwin->w_changelistidx == curbuf->b_changelistlen)
971 MSG_PUTS("\n>");
972}
973#endif
974
975#define one_adjust(add) \
976 { \
977 lp = add; \
978 if (*lp >= line1 && *lp <= line2) \
979 { \
980 if (amount == MAXLNUM) \
981 *lp = 0; \
982 else \
983 *lp += amount; \
984 } \
985 else if (amount_after && *lp > line2) \
986 *lp += amount_after; \
987 }
988
989/* don't delete the line, just put at first deleted line */
990#define one_adjust_nodel(add) \
991 { \
992 lp = add; \
993 if (*lp >= line1 && *lp <= line2) \
994 { \
995 if (amount == MAXLNUM) \
996 *lp = line1; \
997 else \
998 *lp += amount; \
999 } \
1000 else if (amount_after && *lp > line2) \
1001 *lp += amount_after; \
1002 }
1003
1004/*
1005 * Adjust marks between line1 and line2 (inclusive) to move 'amount' lines.
1006 * Must be called before changed_*(), appended_lines() or deleted_lines().
1007 * May be called before or after changing the text.
1008 * When deleting lines line1 to line2, use an 'amount' of MAXLNUM: The marks
1009 * within this range are made invalid.
1010 * If 'amount_after' is non-zero adjust marks after line2.
1011 * Example: Delete lines 34 and 35: mark_adjust(34, 35, MAXLNUM, -2);
1012 * Example: Insert two lines below 55: mark_adjust(56, MAXLNUM, 2, 0);
1013 * or: mark_adjust(56, 55, MAXLNUM, 2);
1014 */
1015 void
1016mark_adjust(line1, line2, amount, amount_after)
1017 linenr_T line1;
1018 linenr_T line2;
1019 long amount;
1020 long amount_after;
1021{
1022 int i;
1023 int fnum = curbuf->b_fnum;
1024 linenr_T *lp;
1025 win_T *win;
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001026#ifdef FEAT_WINDOWS
1027 tabpage_T *tab;
1028#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
1030 if (line2 < line1 && amount_after == 0L) /* nothing to do */
1031 return;
1032
1033 if (!cmdmod.lockmarks)
1034 {
1035 /* named marks, lower case and upper case */
1036 for (i = 0; i < NMARKS; i++)
1037 {
1038 one_adjust(&(curbuf->b_namedm[i].lnum));
1039 if (namedfm[i].fmark.fnum == fnum)
1040 one_adjust_nodel(&(namedfm[i].fmark.mark.lnum));
1041 }
1042 for (i = NMARKS; i < NMARKS + EXTRA_MARKS; i++)
1043 {
1044 if (namedfm[i].fmark.fnum == fnum)
1045 one_adjust_nodel(&(namedfm[i].fmark.mark.lnum));
1046 }
1047
1048 /* last Insert position */
1049 one_adjust(&(curbuf->b_last_insert.lnum));
1050
1051 /* last change position */
1052 one_adjust(&(curbuf->b_last_change.lnum));
1053
1054#ifdef FEAT_JUMPLIST
1055 /* list of change positions */
1056 for (i = 0; i < curbuf->b_changelistlen; ++i)
1057 one_adjust_nodel(&(curbuf->b_changelist[i].lnum));
1058#endif
1059
1060#ifdef FEAT_VISUAL
1061 /* Visual area */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001062 one_adjust_nodel(&(curbuf->b_visual.vi_start.lnum));
1063 one_adjust_nodel(&(curbuf->b_visual.vi_end.lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064#endif
1065
1066#ifdef FEAT_QUICKFIX
1067 /* quickfix marks */
Bram Moolenaar28c258f2006-01-25 22:02:51 +00001068 qf_mark_adjust(NULL, line1, line2, amount, amount_after);
1069 /* location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001070 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaar28c258f2006-01-25 22:02:51 +00001071 qf_mark_adjust(win, line1, line2, amount, amount_after);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072#endif
1073
1074#ifdef FEAT_SIGNS
1075 sign_mark_adjust(line1, line2, amount, amount_after);
1076#endif
1077 }
1078
1079 /* previous context mark */
1080 one_adjust(&(curwin->w_pcmark.lnum));
1081
1082 /* previous pcmark */
1083 one_adjust(&(curwin->w_prev_pcmark.lnum));
1084
1085 /* saved cursor for formatting */
1086 if (saved_cursor.lnum != 0)
1087 one_adjust_nodel(&(saved_cursor.lnum));
1088
1089 /*
1090 * Adjust items in all windows related to the current buffer.
1091 */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001092 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 {
1094#ifdef FEAT_JUMPLIST
1095 if (!cmdmod.lockmarks)
1096 /* Marks in the jumplist. When deleting lines, this may create
1097 * duplicate marks in the jumplist, they will be removed later. */
1098 for (i = 0; i < win->w_jumplistlen; ++i)
1099 if (win->w_jumplist[i].fmark.fnum == fnum)
1100 one_adjust_nodel(&(win->w_jumplist[i].fmark.mark.lnum));
1101#endif
1102
1103 if (win->w_buffer == curbuf)
1104 {
1105 if (!cmdmod.lockmarks)
1106 /* marks in the tag stack */
1107 for (i = 0; i < win->w_tagstacklen; i++)
1108 if (win->w_tagstack[i].fmark.fnum == fnum)
1109 one_adjust_nodel(&(win->w_tagstack[i].fmark.mark.lnum));
1110
1111#ifdef FEAT_VISUAL
1112 /* the displayed Visual area */
1113 if (win->w_old_cursor_lnum != 0)
1114 {
1115 one_adjust_nodel(&(win->w_old_cursor_lnum));
1116 one_adjust_nodel(&(win->w_old_visual_lnum));
1117 }
1118#endif
1119
1120 /* topline and cursor position for windows with the same buffer
1121 * other than the current window */
1122 if (win != curwin)
1123 {
1124 if (win->w_topline >= line1 && win->w_topline <= line2)
1125 {
1126 if (amount == MAXLNUM) /* topline is deleted */
1127 {
1128 if (line1 <= 1)
1129 win->w_topline = 1;
1130 else
1131 win->w_topline = line1 - 1;
1132 }
1133 else /* keep topline on the same line */
1134 win->w_topline += amount;
1135#ifdef FEAT_DIFF
1136 win->w_topfill = 0;
1137#endif
1138 }
1139 else if (amount_after && win->w_topline > line2)
1140 {
1141 win->w_topline += amount_after;
1142#ifdef FEAT_DIFF
1143 win->w_topfill = 0;
1144#endif
1145 }
1146 if (win->w_cursor.lnum >= line1 && win->w_cursor.lnum <= line2)
1147 {
1148 if (amount == MAXLNUM) /* line with cursor is deleted */
1149 {
1150 if (line1 <= 1)
1151 win->w_cursor.lnum = 1;
1152 else
1153 win->w_cursor.lnum = line1 - 1;
1154 win->w_cursor.col = 0;
1155 }
1156 else /* keep cursor on the same line */
1157 win->w_cursor.lnum += amount;
1158 }
1159 else if (amount_after && win->w_cursor.lnum > line2)
1160 win->w_cursor.lnum += amount_after;
1161 }
1162
1163#ifdef FEAT_FOLDING
1164 /* adjust folds */
1165 foldMarkAdjust(win, line1, line2, amount, amount_after);
1166#endif
1167 }
1168 }
1169
1170#ifdef FEAT_DIFF
1171 /* adjust diffs */
1172 diff_mark_adjust(line1, line2, amount, amount_after);
1173#endif
1174}
1175
1176/* This code is used often, needs to be fast. */
1177#define col_adjust(pp) \
1178 { \
1179 posp = pp; \
1180 if (posp->lnum == lnum && posp->col >= mincol) \
1181 { \
1182 posp->lnum += lnum_amount; \
1183 if (col_amount < 0 && posp->col <= (colnr_T)-col_amount) \
1184 posp->col = 0; \
1185 else \
1186 posp->col += col_amount; \
1187 } \
1188 }
1189
1190/*
1191 * Adjust marks in line "lnum" at column "mincol" and further: add
1192 * "lnum_amount" to the line number and add "col_amount" to the column
1193 * position.
1194 */
1195 void
1196mark_col_adjust(lnum, mincol, lnum_amount, col_amount)
1197 linenr_T lnum;
1198 colnr_T mincol;
1199 long lnum_amount;
1200 long col_amount;
1201{
1202 int i;
1203 int fnum = curbuf->b_fnum;
1204 win_T *win;
1205 pos_T *posp;
1206
1207 if ((col_amount == 0L && lnum_amount == 0L) || cmdmod.lockmarks)
1208 return; /* nothing to do */
1209
1210 /* named marks, lower case and upper case */
1211 for (i = 0; i < NMARKS; i++)
1212 {
1213 col_adjust(&(curbuf->b_namedm[i]));
1214 if (namedfm[i].fmark.fnum == fnum)
1215 col_adjust(&(namedfm[i].fmark.mark));
1216 }
1217 for (i = NMARKS; i < NMARKS + EXTRA_MARKS; i++)
1218 {
1219 if (namedfm[i].fmark.fnum == fnum)
1220 col_adjust(&(namedfm[i].fmark.mark));
1221 }
1222
1223 /* last Insert position */
1224 col_adjust(&(curbuf->b_last_insert));
1225
1226 /* last change position */
1227 col_adjust(&(curbuf->b_last_change));
1228
1229#ifdef FEAT_JUMPLIST
1230 /* list of change positions */
1231 for (i = 0; i < curbuf->b_changelistlen; ++i)
1232 col_adjust(&(curbuf->b_changelist[i]));
1233#endif
1234
1235#ifdef FEAT_VISUAL
1236 /* Visual area */
Bram Moolenaara226a6d2006-02-26 23:59:20 +00001237 col_adjust(&(curbuf->b_visual.vi_start));
1238 col_adjust(&(curbuf->b_visual.vi_end));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239#endif
1240
1241 /* previous context mark */
1242 col_adjust(&(curwin->w_pcmark));
1243
1244 /* previous pcmark */
1245 col_adjust(&(curwin->w_prev_pcmark));
1246
1247 /* saved cursor for formatting */
1248 col_adjust(&saved_cursor);
1249
1250 /*
1251 * Adjust items in all windows related to the current buffer.
1252 */
1253 FOR_ALL_WINDOWS(win)
1254 {
1255#ifdef FEAT_JUMPLIST
1256 /* marks in the jumplist */
1257 for (i = 0; i < win->w_jumplistlen; ++i)
1258 if (win->w_jumplist[i].fmark.fnum == fnum)
1259 col_adjust(&(win->w_jumplist[i].fmark.mark));
1260#endif
1261
1262 if (win->w_buffer == curbuf)
1263 {
1264 /* marks in the tag stack */
1265 for (i = 0; i < win->w_tagstacklen; i++)
1266 if (win->w_tagstack[i].fmark.fnum == fnum)
1267 col_adjust(&(win->w_tagstack[i].fmark.mark));
1268
1269 /* cursor position for other windows with the same buffer */
1270 if (win != curwin)
1271 col_adjust(&win->w_cursor);
1272 }
1273 }
1274}
1275
1276#ifdef FEAT_JUMPLIST
1277/*
1278 * When deleting lines, this may create duplicate marks in the
1279 * jumplist. They will be removed here for the current window.
1280 */
1281 static void
1282cleanup_jumplist()
1283{
1284 int i;
1285 int from, to;
1286
1287 to = 0;
1288 for (from = 0; from < curwin->w_jumplistlen; ++from)
1289 {
1290 if (curwin->w_jumplistidx == from)
1291 curwin->w_jumplistidx = to;
1292 for (i = from + 1; i < curwin->w_jumplistlen; ++i)
1293 if (curwin->w_jumplist[i].fmark.fnum
1294 == curwin->w_jumplist[from].fmark.fnum
1295 && curwin->w_jumplist[from].fmark.fnum != 0
1296 && curwin->w_jumplist[i].fmark.mark.lnum
1297 == curwin->w_jumplist[from].fmark.mark.lnum)
1298 break;
1299 if (i >= curwin->w_jumplistlen) /* no duplicate */
1300 curwin->w_jumplist[to++] = curwin->w_jumplist[from];
1301 else
1302 vim_free(curwin->w_jumplist[from].fname);
1303 }
1304 if (curwin->w_jumplistidx == curwin->w_jumplistlen)
1305 curwin->w_jumplistidx = to;
1306 curwin->w_jumplistlen = to;
1307}
1308
1309# if defined(FEAT_WINDOWS) || defined(PROTO)
1310/*
1311 * Copy the jumplist from window "from" to window "to".
1312 */
1313 void
1314copy_jumplist(from, to)
1315 win_T *from;
1316 win_T *to;
1317{
1318 int i;
1319
1320 for (i = 0; i < from->w_jumplistlen; ++i)
1321 {
1322 to->w_jumplist[i] = from->w_jumplist[i];
1323 if (from->w_jumplist[i].fname != NULL)
1324 to->w_jumplist[i].fname = vim_strsave(from->w_jumplist[i].fname);
1325 }
1326 to->w_jumplistlen = from->w_jumplistlen;
1327 to->w_jumplistidx = from->w_jumplistidx;
1328}
1329
1330/*
1331 * Free items in the jumplist of window "wp".
1332 */
1333 void
1334free_jumplist(wp)
1335 win_T *wp;
1336{
1337 int i;
1338
1339 for (i = 0; i < wp->w_jumplistlen; ++i)
1340 vim_free(wp->w_jumplist[i].fname);
1341}
1342# endif
1343#endif /* FEAT_JUMPLIST */
1344
1345 void
1346set_last_cursor(win)
1347 win_T *win;
1348{
1349 win->w_buffer->b_last_cursor = win->w_cursor;
1350}
1351
Bram Moolenaarea408852005-06-25 22:49:46 +00001352#if defined(EXITFREE) || defined(PROTO)
1353 void
1354free_all_marks()
1355{
1356 int i;
1357
1358 for (i = 0; i < NMARKS + EXTRA_MARKS; i++)
1359 if (namedfm[i].fmark.mark.lnum != 0)
1360 vim_free(namedfm[i].fname);
1361}
1362#endif
1363
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364#if defined(FEAT_VIMINFO) || defined(PROTO)
1365 int
1366read_viminfo_filemark(virp, force)
1367 vir_T *virp;
1368 int force;
1369{
1370 char_u *str;
1371 xfmark_T *fm;
1372 int i;
1373
1374 /* We only get here if line[0] == '\'' or '-'.
1375 * Illegal mark names are ignored (for future expansion). */
1376 str = virp->vir_line + 1;
1377 if (
1378#ifndef EBCDIC
1379 *str <= 127 &&
1380#endif
1381 ((*virp->vir_line == '\'' && (VIM_ISDIGIT(*str) || isupper(*str)))
1382 || (*virp->vir_line == '-' && *str == '\'')))
1383 {
1384 if (*str == '\'')
1385 {
1386#ifdef FEAT_JUMPLIST
1387 /* If the jumplist isn't full insert fmark as oldest entry */
1388 if (curwin->w_jumplistlen == JUMPLISTSIZE)
1389 fm = NULL;
1390 else
1391 {
1392 for (i = curwin->w_jumplistlen; i > 0; --i)
1393 curwin->w_jumplist[i] = curwin->w_jumplist[i - 1];
1394 ++curwin->w_jumplistidx;
1395 ++curwin->w_jumplistlen;
1396 fm = &curwin->w_jumplist[0];
1397 fm->fmark.mark.lnum = 0;
1398 fm->fname = NULL;
1399 }
1400#else
1401 fm = NULL;
1402#endif
1403 }
1404 else if (VIM_ISDIGIT(*str))
1405 fm = &namedfm[*str - '0' + NMARKS];
1406 else
1407 fm = &namedfm[*str - 'A'];
1408 if (fm != NULL && (fm->fmark.mark.lnum == 0 || force))
1409 {
1410 str = skipwhite(str + 1);
1411 fm->fmark.mark.lnum = getdigits(&str);
1412 str = skipwhite(str);
1413 fm->fmark.mark.col = getdigits(&str);
1414#ifdef FEAT_VIRTUALEDIT
1415 fm->fmark.mark.coladd = 0;
1416#endif
1417 fm->fmark.fnum = 0;
1418 str = skipwhite(str);
1419 vim_free(fm->fname);
1420 fm->fname = viminfo_readstring(virp, (int)(str - virp->vir_line),
1421 FALSE);
1422 }
1423 }
1424 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
1425}
1426
1427 void
1428write_viminfo_filemarks(fp)
1429 FILE *fp;
1430{
1431 int i;
1432 char_u *name;
1433 buf_T *buf;
1434 xfmark_T *fm;
1435
1436 if (get_viminfo_parameter('f') == 0)
1437 return;
1438
1439 fprintf(fp, _("\n# File marks:\n"));
1440
1441 /*
1442 * Find a mark that is the same file and position as the cursor.
1443 * That one, or else the last one is deleted.
1444 * Move '0 to '1, '1 to '2, etc. until the matching one or '9
1445 * Set '0 mark to current cursor position.
1446 */
1447 if (curbuf->b_ffname != NULL && !removable(curbuf->b_ffname))
1448 {
1449 name = buflist_nr2name(curbuf->b_fnum, TRUE, FALSE);
1450 for (i = NMARKS; i < NMARKS + EXTRA_MARKS - 1; ++i)
1451 if (namedfm[i].fmark.mark.lnum == curwin->w_cursor.lnum
1452 && (namedfm[i].fname == NULL
1453 ? namedfm[i].fmark.fnum == curbuf->b_fnum
1454 : (name != NULL
1455 && STRCMP(name, namedfm[i].fname) == 0)))
1456 break;
1457 vim_free(name);
1458
1459 vim_free(namedfm[i].fname);
1460 for ( ; i > NMARKS; --i)
1461 namedfm[i] = namedfm[i - 1];
1462 namedfm[NMARKS].fmark.mark = curwin->w_cursor;
1463 namedfm[NMARKS].fmark.fnum = curbuf->b_fnum;
1464 namedfm[NMARKS].fname = NULL;
1465 }
1466
1467 /* Write the filemarks '0 - '9 and 'A - 'Z */
1468 for (i = 0; i < NMARKS + EXTRA_MARKS; i++)
1469 write_one_filemark(fp, &namedfm[i], '\'',
1470 i < NMARKS ? i + 'A' : i - NMARKS + '0');
1471
1472#ifdef FEAT_JUMPLIST
1473 /* Write the jumplist with -' */
1474 fprintf(fp, _("\n# Jumplist (newest first):\n"));
1475 setpcmark(); /* add current cursor position */
1476 cleanup_jumplist();
1477 for (fm = &curwin->w_jumplist[curwin->w_jumplistlen - 1];
1478 fm >= &curwin->w_jumplist[0]; --fm)
1479 {
1480 if (fm->fmark.fnum == 0
1481 || ((buf = buflist_findnr(fm->fmark.fnum)) != NULL
1482 && !removable(buf->b_ffname)))
1483 write_one_filemark(fp, fm, '-', '\'');
1484 }
1485#endif
1486}
1487
1488 static void
1489write_one_filemark(fp, fm, c1, c2)
1490 FILE *fp;
1491 xfmark_T *fm;
1492 int c1;
1493 int c2;
1494{
1495 char_u *name;
1496
1497 if (fm->fmark.mark.lnum == 0) /* not set */
1498 return;
1499
1500 if (fm->fmark.fnum != 0) /* there is a buffer */
1501 name = buflist_nr2name(fm->fmark.fnum, TRUE, FALSE);
1502 else
1503 name = fm->fname; /* use name from .viminfo */
1504 if (name != NULL && *name != NUL)
1505 {
1506 fprintf(fp, "%c%c %ld %ld ", c1, c2, (long)fm->fmark.mark.lnum,
1507 (long)fm->fmark.mark.col);
1508 viminfo_writestring(fp, name);
1509 }
1510
1511 if (fm->fmark.fnum != 0)
1512 vim_free(name);
1513}
1514
1515/*
1516 * Return TRUE if "name" is on removable media (depending on 'viminfo').
1517 */
1518 int
1519removable(name)
1520 char_u *name;
1521{
1522 char_u *p;
1523 char_u part[51];
1524 int retval = FALSE;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001525 size_t n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526
1527 name = home_replace_save(NULL, name);
1528 if (name != NULL)
1529 {
1530 for (p = p_viminfo; *p; )
1531 {
1532 copy_option_part(&p, part, 51, ", ");
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001533 if (part[0] == 'r')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001535 n = STRLEN(part + 1);
1536 if (MB_STRNICMP(part + 1, name, n) == 0)
1537 {
1538 retval = TRUE;
1539 break;
1540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 }
1542 }
1543 vim_free(name);
1544 }
1545 return retval;
1546}
1547
1548static void write_one_mark __ARGS((FILE *fp_out, int c, pos_T *pos));
1549
1550/*
1551 * Write all the named marks for all buffers.
1552 * Return the number of buffers for which marks have been written.
1553 */
1554 int
1555write_viminfo_marks(fp_out)
1556 FILE *fp_out;
1557{
1558 int count;
1559 buf_T *buf;
1560 int is_mark_set;
1561 int i;
1562#ifdef FEAT_WINDOWS
1563 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001564 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565
1566 /*
1567 * Set b_last_cursor for the all buffers that have a window.
1568 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001569 FOR_ALL_TAB_WINDOWS(tp, win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 set_last_cursor(win);
1571#else
1572 set_last_cursor(curwin);
1573#endif
1574
1575 fprintf(fp_out, _("\n# History of marks within files (newest to oldest):\n"));
1576 count = 0;
1577 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1578 {
1579 /*
1580 * Only write something if buffer has been loaded and at least one
1581 * mark is set.
1582 */
1583 if (buf->b_marks_read)
1584 {
1585 if (buf->b_last_cursor.lnum != 0)
1586 is_mark_set = TRUE;
1587 else
1588 {
1589 is_mark_set = FALSE;
1590 for (i = 0; i < NMARKS; i++)
1591 if (buf->b_namedm[i].lnum != 0)
1592 {
1593 is_mark_set = TRUE;
1594 break;
1595 }
1596 }
1597 if (is_mark_set && buf->b_ffname != NULL
1598 && buf->b_ffname[0] != NUL && !removable(buf->b_ffname))
1599 {
1600 home_replace(NULL, buf->b_ffname, IObuff, IOSIZE, TRUE);
1601 fprintf(fp_out, "\n> ");
1602 viminfo_writestring(fp_out, IObuff);
1603 write_one_mark(fp_out, '"', &buf->b_last_cursor);
1604 write_one_mark(fp_out, '^', &buf->b_last_insert);
1605 write_one_mark(fp_out, '.', &buf->b_last_change);
1606#ifdef FEAT_JUMPLIST
1607 /* changelist positions are stored oldest first */
1608 for (i = 0; i < buf->b_changelistlen; ++i)
1609 write_one_mark(fp_out, '+', &buf->b_changelist[i]);
1610#endif
1611 for (i = 0; i < NMARKS; i++)
1612 write_one_mark(fp_out, 'a' + i, &buf->b_namedm[i]);
1613 count++;
1614 }
1615 }
1616 }
1617
1618 return count;
1619}
1620
1621 static void
1622write_one_mark(fp_out, c, pos)
1623 FILE *fp_out;
1624 int c;
1625 pos_T *pos;
1626{
1627 if (pos->lnum != 0)
1628 fprintf(fp_out, "\t%c\t%ld\t%d\n", c, (long)pos->lnum, (int)pos->col);
1629}
1630
1631/*
1632 * Handle marks in the viminfo file:
Bram Moolenaard812df62008-11-09 12:46:09 +00001633 * fp_out != NULL: copy marks for buffers not in buffer list
1634 * fp_out == NULL && (flags & VIF_WANT_MARKS): read marks for curbuf only
1635 * fp_out == NULL && (flags & VIF_GET_OLDFILES | VIF_FORCEIT): fill v:oldfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 */
1637 void
Bram Moolenaard812df62008-11-09 12:46:09 +00001638copy_viminfo_marks(virp, fp_out, count, eof, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 vir_T *virp;
1640 FILE *fp_out;
1641 int count;
1642 int eof;
Bram Moolenaard812df62008-11-09 12:46:09 +00001643 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644{
1645 char_u *line = virp->vir_line;
1646 buf_T *buf;
1647 int num_marked_files;
1648 int load_marks;
1649 int copy_marks_out;
1650 char_u *str;
1651 int i;
1652 char_u *p;
1653 char_u *name_buf;
1654 pos_T pos;
Bram Moolenaard812df62008-11-09 12:46:09 +00001655#ifdef FEAT_EVAL
1656 list_T *list = NULL;
1657#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658
1659 if ((name_buf = alloc(LSIZE)) == NULL)
1660 return;
1661 *name_buf = NUL;
Bram Moolenaard812df62008-11-09 12:46:09 +00001662
1663#ifdef FEAT_EVAL
1664 if (fp_out == NULL && (flags & (VIF_GET_OLDFILES | VIF_FORCEIT)))
1665 {
1666 list = list_alloc();
1667 if (list != NULL)
1668 set_vim_var_list(VV_OLDFILES, list);
1669 }
1670#endif
1671
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 num_marked_files = get_viminfo_parameter('\'');
1673 while (!eof && (count < num_marked_files || fp_out == NULL))
1674 {
1675 if (line[0] != '>')
1676 {
1677 if (line[0] != '\n' && line[0] != '\r' && line[0] != '#')
1678 {
1679 if (viminfo_error("E576: ", _("Missing '>'"), line))
1680 break; /* too many errors, return now */
1681 }
1682 eof = vim_fgets(line, LSIZE, virp->vir_fd);
1683 continue; /* Skip this dud line */
1684 }
1685
1686 /*
1687 * Handle long line and translate escaped characters.
1688 * Find file name, set str to start.
1689 * Ignore leading and trailing white space.
1690 */
1691 str = skipwhite(line + 1);
1692 str = viminfo_readstring(virp, (int)(str - virp->vir_line), FALSE);
1693 if (str == NULL)
1694 continue;
1695 p = str + STRLEN(str);
1696 while (p != str && (*p == NUL || vim_isspace(*p)))
1697 p--;
1698 if (*p)
1699 p++;
1700 *p = NUL;
1701
Bram Moolenaard812df62008-11-09 12:46:09 +00001702#ifdef FEAT_EVAL
1703 if (list != NULL)
1704 list_append_string(list, str, -1);
1705#endif
1706
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 /*
1708 * If fp_out == NULL, load marks for current buffer.
1709 * If fp_out != NULL, copy marks for buffers not in buflist.
1710 */
1711 load_marks = copy_marks_out = FALSE;
1712 if (fp_out == NULL)
1713 {
Bram Moolenaard812df62008-11-09 12:46:09 +00001714 if ((flags & VIF_WANT_MARKS) && curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 {
1716 if (*name_buf == NUL) /* only need to do this once */
1717 home_replace(NULL, curbuf->b_ffname, name_buf, LSIZE, TRUE);
1718 if (fnamecmp(str, name_buf) == 0)
1719 load_marks = TRUE;
1720 }
1721 }
1722 else /* fp_out != NULL */
1723 {
1724 /* This is slow if there are many buffers!! */
1725 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
1726 if (buf->b_ffname != NULL)
1727 {
1728 home_replace(NULL, buf->b_ffname, name_buf, LSIZE, TRUE);
1729 if (fnamecmp(str, name_buf) == 0)
1730 break;
1731 }
1732
1733 /*
1734 * copy marks if the buffer has not been loaded
1735 */
1736 if (buf == NULL || !buf->b_marks_read)
1737 {
1738 copy_marks_out = TRUE;
1739 fputs("\n> ", fp_out);
1740 viminfo_writestring(fp_out, str);
1741 count++;
1742 }
1743 }
1744 vim_free(str);
1745
1746#ifdef FEAT_VIRTUALEDIT
1747 pos.coladd = 0;
1748#endif
1749 while (!(eof = viminfo_readline(virp)) && line[0] == TAB)
1750 {
1751 if (load_marks)
1752 {
1753 if (line[1] != NUL)
1754 {
1755 sscanf((char *)line + 2, "%ld %u", &pos.lnum, &pos.col);
1756 switch (line[1])
1757 {
1758 case '"': curbuf->b_last_cursor = pos; break;
1759 case '^': curbuf->b_last_insert = pos; break;
1760 case '.': curbuf->b_last_change = pos; break;
1761 case '+':
1762#ifdef FEAT_JUMPLIST
1763 /* changelist positions are stored oldest
1764 * first */
1765 if (curbuf->b_changelistlen == JUMPLISTSIZE)
1766 /* list is full, remove oldest entry */
1767 mch_memmove(curbuf->b_changelist,
1768 curbuf->b_changelist + 1,
1769 sizeof(pos_T) * (JUMPLISTSIZE - 1));
1770 else
1771 ++curbuf->b_changelistlen;
1772 curbuf->b_changelist[
1773 curbuf->b_changelistlen - 1] = pos;
1774#endif
1775 break;
1776 default: if ((i = line[1] - 'a') >= 0 && i < NMARKS)
1777 curbuf->b_namedm[i] = pos;
1778 }
1779 }
1780 }
1781 else if (copy_marks_out)
1782 fputs((char *)line, fp_out);
1783 }
1784 if (load_marks)
1785 {
1786#ifdef FEAT_JUMPLIST
1787 win_T *wp;
1788
1789 FOR_ALL_WINDOWS(wp)
1790 {
1791 if (wp->w_buffer == curbuf)
1792 wp->w_changelistidx = curbuf->b_changelistlen;
1793 }
1794#endif
1795 break;
1796 }
1797 }
1798 vim_free(name_buf);
1799}
1800#endif /* FEAT_VIMINFO */