1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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.
11 * mark.c: functions for setting marks and jumping to them
17 * This file contains routines to maintain and manipulate marks.
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
27 #define EXTRA_MARKS 10 /* marks 0-9 */
28 static xfmark_T namedfm
[NMARKS
+ EXTRA_MARKS
]; /* marks with file nr */
30 static void fname2fnum
__ARGS((xfmark_T
*fm
));
31 static void fmarks_check_one
__ARGS((xfmark_T
*fm
, char_u
*name
, buf_T
*buf
));
32 static char_u
*mark_line
__ARGS((pos_T
*mp
, int lead_len
));
33 static void show_one_mark
__ARGS((int, char_u
*, pos_T
*, char_u
*, int current
));
35 static void cleanup_jumplist
__ARGS((void));
38 static void write_one_filemark
__ARGS((FILE *fp
, xfmark_T
*fm
, int c1
, int c2
));
42 * Set named mark "c" at current cursor position.
43 * Returns OK on success, FAIL if bad name given.
49 return setmark_pos(c
, &curwin
->w_cursor
, curbuf
->b_fnum
);
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.
58 setmark_pos(c
, pos
, fnum
)
65 /* Check for a special key (may cause islower() to crash). */
69 if (c
== '\'' || c
== '`')
71 if (pos
== &curwin
->w_cursor
)
74 /* keep it even when the cursor doesn't move */
75 curwin
->w_prev_pcmark
= curwin
->w_pcmark
;
78 curwin
->w_pcmark
= *pos
;
84 curbuf
->b_last_cursor
= *pos
;
88 /* Allow setting '[ and '] for an autocommand that simulates reading a
92 curbuf
->b_op_start
= *pos
;
97 curbuf
->b_op_end
= *pos
;
102 if (c
> 'z') /* some islower() and isupper() cannot handle
103 characters above 127 */
109 curbuf
->b_namedm
[i
] = *pos
;
115 namedfm
[i
].fmark
.mark
= *pos
;
116 namedfm
[i
].fmark
.fnum
= fnum
;
117 vim_free(namedfm
[i
].fname
);
118 namedfm
[i
].fname
= NULL
;
125 * Set the previous context mark to the current position and add it to the
135 #ifdef JUMPLIST_ROTATE
139 /* for :global the mark is set only once */
140 if (global_busy
|| listcmd_busy
|| cmdmod
.keepjumps
)
143 curwin
->w_prev_pcmark
= curwin
->w_pcmark
;
144 curwin
->w_pcmark
= curwin
->w_cursor
;
147 # ifdef JUMPLIST_ROTATE
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.
153 if (curwin
->w_jumplistidx
< curwin
->w_jumplistlen
)
154 ++curwin
->w_jumplistidx
;
155 while (curwin
->w_jumplistidx
< curwin
->w_jumplistlen
)
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
;
165 /* If jumplist is full: remove oldest entry */
166 if (++curwin
->w_jumplistlen
> JUMPLISTSIZE
)
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
];
173 curwin
->w_jumplistidx
= curwin
->w_jumplistlen
;
174 fm
= &curwin
->w_jumplist
[curwin
->w_jumplistlen
- 1];
176 fm
->fmark
.mark
= curwin
->w_pcmark
;
177 fm
->fmark
.fnum
= curbuf
->b_fnum
;
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.
191 if (curwin
->w_prev_pcmark
.lnum
!= 0
192 && (equalpos(curwin
->w_pcmark
, curwin
->w_cursor
)
193 || curwin
->w_pcmark
.lnum
== 0))
195 curwin
->w_pcmark
= curwin
->w_prev_pcmark
;
196 curwin
->w_prev_pcmark
.lnum
= 0; /* Show it has been checked */
200 #if defined(FEAT_JUMPLIST) || defined(PROTO)
202 * move "count" positions in the jump list (count may be negative)
213 if (curwin
->w_jumplistlen
== 0) /* nothing to jump to */
214 return (pos_T
*)NULL
;
218 if (curwin
->w_jumplistidx
+ count
< 0
219 || curwin
->w_jumplistidx
+ count
>= curwin
->w_jumplistlen
)
220 return (pos_T
*)NULL
;
223 * if first CTRL-O or CTRL-I command after a jump, add cursor position
224 * to list. Careful: If there are duplicates (CTRL-O immediately after
225 * starting Vim on a file), another entry may have been removed.
227 if (curwin
->w_jumplistidx
== curwin
->w_jumplistlen
)
230 --curwin
->w_jumplistidx
; /* skip the new entry */
231 if (curwin
->w_jumplistidx
+ count
< 0)
232 return (pos_T
*)NULL
;
235 curwin
->w_jumplistidx
+= count
;
237 jmp
= curwin
->w_jumplist
+ curwin
->w_jumplistidx
;
238 if (jmp
->fmark
.fnum
== 0)
240 if (jmp
->fmark
.fnum
!= curbuf
->b_fnum
)
242 /* jump to other file */
243 if (buflist_findnr(jmp
->fmark
.fnum
) == NULL
)
244 { /* Skip this one .. */
245 count
+= count
< 0 ? -1 : 1;
248 if (buflist_getfile(jmp
->fmark
.fnum
, jmp
->fmark
.mark
.lnum
,
250 return (pos_T
*)NULL
;
251 /* Set lnum again, autocommands my have changed it */
252 curwin
->w_cursor
= jmp
->fmark
.mark
;
256 pos
= &(jmp
->fmark
.mark
);
262 * Move "count" positions in the changelist (count may be negative).
265 movechangelist(count
)
270 if (curbuf
->b_changelistlen
== 0) /* nothing to jump to */
271 return (pos_T
*)NULL
;
273 n
= curwin
->w_changelistidx
;
277 return (pos_T
*)NULL
;
280 else if (n
+ count
>= curbuf
->b_changelistlen
)
282 if (n
== curbuf
->b_changelistlen
- 1)
283 return (pos_T
*)NULL
;
284 n
= curbuf
->b_changelistlen
- 1;
288 curwin
->w_changelistidx
= n
;
289 return curbuf
->b_changelist
+ n
;
295 * 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
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)
305 getmark(c
, changefile
)
309 return getmark_fnum(c
, changefile
, NULL
);
313 getmark_fnum(c
, changefile
, fnum
)
320 pos_T
*startp
, *endp
;
322 static pos_T pos_copy
;
326 /* Check for special key, can't be a mark name and might cause islower()
331 if (c
> '~') /* check for islower()/isupper() */
335 if (c
== '\'' || c
== '`') /* previous context mark */
337 pos_copy
= curwin
->w_pcmark
; /* need to make a copy because */
338 posp
= &pos_copy
; /* w_pcmark may be changed soon */
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 */
354 int slcb
= listcmd_busy
;
356 pos
= curwin
->w_cursor
;
357 listcmd_busy
= TRUE
; /* avoid that '' is changed */
358 if (findpar(&oa
.inclusive
,
359 c
== '}' ? FORWARD
: BACKWARD
, 1L, NUL
, FALSE
))
361 pos_copy
= curwin
->w_cursor
;
364 curwin
->w_cursor
= pos
;
367 else if (c
== '(' || c
== ')') /* to previous/next sentence */
370 int slcb
= listcmd_busy
;
372 pos
= curwin
->w_cursor
;
373 listcmd_busy
= TRUE
; /* avoid that '' is changed */
374 if (findsent(c
== ')' ? FORWARD
: BACKWARD
, 1L))
376 pos_copy
= curwin
->w_cursor
;
379 curwin
->w_cursor
= pos
;
383 else if (c
== '<' || c
== '>') /* start/end of visual area */
385 startp
= &curbuf
->b_visual
.vi_start
;
386 endp
= &curbuf
->b_visual
.vi_end
;
387 if ((c
== '<') == lt(*startp
, *endp
))
392 * For Visual line mode, set mark at begin or end of line
394 if (curbuf
->b_visual
.vi_mode
== 'V')
401 pos_copy
.col
= MAXCOL
;
402 #ifdef FEAT_VIRTUALEDIT
408 else if (ASCII_ISLOWER(c
)) /* normal named mark */
410 posp
= &(curbuf
->b_namedm
[c
- 'a']);
412 else if (ASCII_ISUPPER(c
) || VIM_ISDIGIT(c
)) /* named file mark */
415 c
= c
- '0' + NMARKS
;
418 posp
= &(namedfm
[c
].fmark
.mark
);
420 if (namedfm
[c
].fmark
.fnum
== 0)
421 fname2fnum(&namedfm
[c
]);
424 *fnum
= namedfm
[c
].fmark
.fnum
;
425 else if (namedfm
[c
].fmark
.fnum
!= curbuf
->b_fnum
)
427 /* mark is in another file */
430 if (namedfm
[c
].fmark
.mark
.lnum
!= 0
431 && changefile
&& namedfm
[c
].fmark
.fnum
)
433 if (buflist_getfile(namedfm
[c
].fmark
.fnum
,
434 (linenr_T
)1, GETF_SETMARK
, FALSE
) == OK
)
436 /* Set the lnum now, autocommands could have changed it */
437 curwin
->w_cursor
= namedfm
[c
].fmark
.mark
;
440 pos_copy
.lnum
= -1; /* can't get file */
443 pos_copy
.lnum
= 0; /* mark exists, but is not valid in
452 * Search for the next named mark in the current file.
454 * Returns pointer to pos_T of the next mark or NULL if no mark is found.
457 getnextmark(startpos
, dir
, begin_line
)
458 pos_T
*startpos
; /* where to start */
459 int dir
; /* direction for search */
463 pos_T
*result
= NULL
;
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
)
474 else if (dir
== FORWARD
&& begin_line
)
477 for (i
= 0; i
< NMARKS
; i
++)
479 if (curbuf
->b_namedm
[i
].lnum
> 0)
483 if ((result
== NULL
|| lt(curbuf
->b_namedm
[i
], *result
))
484 && lt(pos
, curbuf
->b_namedm
[i
]))
485 result
= &curbuf
->b_namedm
[i
];
489 if ((result
== NULL
|| lt(*result
, curbuf
->b_namedm
[i
]))
490 && lt(curbuf
->b_namedm
[i
], pos
))
491 result
= &curbuf
->b_namedm
[i
];
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.
510 if (fm
->fname
!= NULL
)
513 * First expand "~/" in the file name to the home directory.
514 * Don't expand the whole name, it may contain other '~' chars.
516 if (fm
->fname
[0] == '~' && (fm
->fname
[1] == '/'
517 #ifdef BACKSLASH_IN_FILENAME
518 || fm
->fname
[1] == '\\'
524 expand_env((char_u
*)"~/", NameBuff
, MAXPATHL
);
525 len
= STRLEN(NameBuff
);
526 vim_strncpy(NameBuff
+ len
, fm
->fname
+ 2, MAXPATHL
- len
- 1);
529 vim_strncpy(NameBuff
, fm
->fname
, MAXPATHL
- 1);
531 /* Try to shorten the file name. */
532 mch_dirname(IObuff
, IOSIZE
);
533 p
= shorten_fname(NameBuff
, IObuff
);
535 /* buflist_new() will call fmarks_check_names() */
536 (void)buflist_new(NameBuff
, p
, (linenr_T
)1, 0);
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.
546 fmarks_check_names(buf
)
555 if (buf
->b_ffname
== NULL
)
558 name
= home_replace_save(buf
, buf
->b_ffname
);
562 for (i
= 0; i
< NMARKS
+ EXTRA_MARKS
; ++i
)
563 fmarks_check_one(&namedfm
[i
], name
, buf
);
568 for (i
= 0; i
< wp
->w_jumplistlen
; ++i
)
569 fmarks_check_one(&wp
->w_jumplist
[i
], name
, buf
);
577 fmarks_check_one(fm
, name
, buf
)
582 if (fm
->fmark
.fnum
== 0
584 && fnamecmp(name
, fm
->fname
) == 0)
586 fm
->fmark
.fnum
= buf
->b_fnum
;
593 * Check a if a position from a mark is valid.
594 * Give and error message and return FAIL if not.
607 /* lnum is negative if mark is in another file can can't get that
608 * file, error message already give then. */
610 EMSG(_(e_marknotset
));
613 if (pos
->lnum
> curbuf
->b_ml
.ml_line_count
)
615 EMSG(_(e_markinval
));
622 * clrallmarks() - clear all marks in the buffer 'buf'
624 * Used mainly when trashing the entire buffer during ":e" type commands
632 if (i
== -1) /* first call ever: initialize */
633 for (i
= 0; i
< NMARKS
+ 1; i
++)
635 namedfm
[i
].fmark
.mark
.lnum
= 0;
636 namedfm
[i
].fname
= NULL
;
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;
648 buf
->b_last_insert
.lnum
= 0; /* '^ mark cleared */
649 buf
->b_last_change
.lnum
= 0; /* '. mark cleared */
651 buf
->b_changelistlen
= 0;
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.
661 fm_getname(fmark
, lead_len
)
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
);
671 * Return the line at mark "mp". Truncate to fit in window.
672 * The returned string has been allocated.
675 mark_line(mp
, lead_len
)
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
);
687 /* Truncate the line to fit it in the window */
689 for (p
= s
; *p
!= NUL
; mb_ptr_adv(p
))
692 if (len
>= Columns
- lead_len
)
706 char_u
*arg
= eap
->arg
;
710 if (arg
!= NULL
&& *arg
== NUL
)
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
)
718 if (namedfm
[i
].fmark
.fnum
!= 0)
719 name
= fm_getname(&namedfm
[i
].fmark
, 15);
721 name
= namedfm
[i
].fname
;
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)
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
);
737 show_one_mark('<', arg
, &curbuf
->b_visual
.vi_start
, NULL
, TRUE
);
738 show_one_mark('>', arg
, &curbuf
->b_visual
.vi_end
, NULL
, TRUE
);
740 show_one_mark(-1, arg
, NULL
, NULL
, FALSE
);
744 show_one_mark(c
, arg
, p
, name
, current
)
749 int current
; /* in current file */
751 static int did_title
= FALSE
;
752 int mustfree
= FALSE
;
754 if (c
== -1) /* finish up */
761 MSG(_("No marks set"));
763 EMSG2(_("E283: No marks matching \"%s\""), arg
);
766 /* don't output anything if 'q' typed at --more-- prompt */
768 && (arg
== NULL
|| vim_strchr(arg
, c
) != NULL
)
773 /* Highlight title */
774 MSG_PUTS_TITLE(_("\nmark line col file/text"));
780 sprintf((char *)IObuff
, " %c %6ld %4d ", c
, p
->lnum
, p
->col
);
781 msg_outtrans(IObuff
);
782 if (name
== NULL
&& current
)
784 name
= mark_line(p
, 15);
789 msg_outtrans_attr(name
, current
? hl_attr(HLF_D
) : 0);
794 out_flush(); /* show one line at a time */
799 * ":delmarks[!] [marks]"
812 if (*eap
->arg
== NUL
&& eap
->forceit
)
813 /* clear all marks */
815 else if (eap
->forceit
)
817 else if (*eap
->arg
== NUL
)
821 /* clear specified marks only */
822 for (p
= eap
->arg
; *p
!= NUL
; ++p
)
824 lower
= ASCII_ISLOWER(*p
);
825 digit
= VIM_ISDIGIT(*p
);
826 if (lower
|| digit
|| ASCII_ISUPPER(*p
))
830 /* clear range of marks */
833 if (!(lower
? ASCII_ISLOWER(p
[2])
834 : (digit
? VIM_ISDIGIT(p
[2])
835 : ASCII_ISUPPER(p
[2])))
838 EMSG2(_(e_invarg2
), p
);
844 /* clear one lower case mark */
847 for (i
= from
; i
<= to
; ++i
)
850 curbuf
->b_namedm
[i
- 'a'].lnum
= 0;
854 n
= i
- '0' + NMARKS
;
857 namedfm
[n
].fmark
.mark
.lnum
= 0;
858 vim_free(namedfm
[n
].fname
);
859 namedfm
[n
].fname
= NULL
;
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;
872 case '<': curbuf
->b_visual
.vi_start
.lnum
= 0; break;
873 case '>': curbuf
->b_visual
.vi_end
.lnum
= 0; break;
876 default: EMSG2(_(e_invarg2
), p
);
883 #if defined(FEAT_JUMPLIST) || defined(PROTO)
896 /* Highlight title */
897 MSG_PUTS_TITLE(_("\n jump line col file/text"));
898 for (i
= 0; i
< curwin
->w_jumplistlen
&& !got_int
; ++i
)
900 if (curwin
->w_jumplist
[i
].fmark
.mark
.lnum
!= 0)
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 */
911 sprintf((char *)IObuff
, "%c %2d %5ld %4d ",
912 i
== curwin
->w_jumplistidx
? '>' : ' ',
913 i
> curwin
->w_jumplistidx
? i
- curwin
->w_jumplistidx
914 : curwin
->w_jumplistidx
- i
,
915 curwin
->w_jumplist
[i
].fmark
.mark
.lnum
,
916 curwin
->w_jumplist
[i
].fmark
.mark
.col
);
917 msg_outtrans(IObuff
);
918 msg_outtrans_attr(name
,
919 curwin
->w_jumplist
[i
].fmark
.fnum
== curbuf
->b_fnum
920 ? hl_attr(HLF_D
) : 0);
926 if (curwin
->w_jumplistidx
== curwin
->w_jumplistlen
)
931 * print the changelist
941 /* Highlight title */
942 MSG_PUTS_TITLE(_("\nchange line col text"));
944 for (i
= 0; i
< curbuf
->b_changelistlen
&& !got_int
; ++i
)
946 if (curbuf
->b_changelist
[i
].lnum
!= 0)
951 sprintf((char *)IObuff
, "%c %3d %5ld %4d ",
952 i
== curwin
->w_changelistidx
? '>' : ' ',
953 i
> curwin
->w_changelistidx
? i
- curwin
->w_changelistidx
954 : curwin
->w_changelistidx
- i
,
955 (long)curbuf
->b_changelist
[i
].lnum
,
956 curbuf
->b_changelist
[i
].col
);
957 msg_outtrans(IObuff
);
958 name
= mark_line(&curbuf
->b_changelist
[i
], 17);
961 msg_outtrans_attr(name
, hl_attr(HLF_D
));
967 if (curwin
->w_changelistidx
== curbuf
->b_changelistlen
)
972 #define one_adjust(add) \
975 if (*lp >= line1 && *lp <= line2) \
977 if (amount == MAXLNUM) \
982 else if (amount_after && *lp > line2) \
983 *lp += amount_after; \
986 /* don't delete the line, just put at first deleted line */
987 #define one_adjust_nodel(add) \
990 if (*lp >= line1 && *lp <= line2) \
992 if (amount == MAXLNUM) \
997 else if (amount_after && *lp > line2) \
998 *lp += amount_after; \
1002 * Adjust marks between line1 and line2 (inclusive) to move 'amount' lines.
1003 * Must be called before changed_*(), appended_lines() or deleted_lines().
1004 * May be called before or after changing the text.
1005 * When deleting lines line1 to line2, use an 'amount' of MAXLNUM: The marks
1006 * within this range are made invalid.
1007 * If 'amount_after' is non-zero adjust marks after line2.
1008 * Example: Delete lines 34 and 35: mark_adjust(34, 35, MAXLNUM, -2);
1009 * Example: Insert two lines below 55: mark_adjust(56, MAXLNUM, 2, 0);
1010 * or: mark_adjust(56, 55, MAXLNUM, 2);
1013 mark_adjust(line1
, line2
, amount
, amount_after
)
1020 int fnum
= curbuf
->b_fnum
;
1024 if (line2
< line1
&& amount_after
== 0L) /* nothing to do */
1027 if (!cmdmod
.lockmarks
)
1029 /* named marks, lower case and upper case */
1030 for (i
= 0; i
< NMARKS
; i
++)
1032 one_adjust(&(curbuf
->b_namedm
[i
].lnum
));
1033 if (namedfm
[i
].fmark
.fnum
== fnum
)
1034 one_adjust_nodel(&(namedfm
[i
].fmark
.mark
.lnum
));
1036 for (i
= NMARKS
; i
< NMARKS
+ EXTRA_MARKS
; i
++)
1038 if (namedfm
[i
].fmark
.fnum
== fnum
)
1039 one_adjust_nodel(&(namedfm
[i
].fmark
.mark
.lnum
));
1042 /* last Insert position */
1043 one_adjust(&(curbuf
->b_last_insert
.lnum
));
1045 /* last change position */
1046 one_adjust(&(curbuf
->b_last_change
.lnum
));
1048 #ifdef FEAT_JUMPLIST
1049 /* list of change positions */
1050 for (i
= 0; i
< curbuf
->b_changelistlen
; ++i
)
1051 one_adjust_nodel(&(curbuf
->b_changelist
[i
].lnum
));
1056 one_adjust_nodel(&(curbuf
->b_visual
.vi_start
.lnum
));
1057 one_adjust_nodel(&(curbuf
->b_visual
.vi_end
.lnum
));
1060 #ifdef FEAT_QUICKFIX
1061 /* quickfix marks */
1062 qf_mark_adjust(NULL
, line1
, line2
, amount
, amount_after
);
1063 /* location lists */
1064 FOR_ALL_WINDOWS(win
)
1065 qf_mark_adjust(win
, line1
, line2
, amount
, amount_after
);
1069 sign_mark_adjust(line1
, line2
, amount
, amount_after
);
1073 /* previous context mark */
1074 one_adjust(&(curwin
->w_pcmark
.lnum
));
1076 /* previous pcmark */
1077 one_adjust(&(curwin
->w_prev_pcmark
.lnum
));
1079 /* saved cursor for formatting */
1080 if (saved_cursor
.lnum
!= 0)
1081 one_adjust_nodel(&(saved_cursor
.lnum
));
1084 * Adjust items in all windows related to the current buffer.
1086 FOR_ALL_WINDOWS(win
)
1088 #ifdef FEAT_JUMPLIST
1089 if (!cmdmod
.lockmarks
)
1090 /* Marks in the jumplist. When deleting lines, this may create
1091 * duplicate marks in the jumplist, they will be removed later. */
1092 for (i
= 0; i
< win
->w_jumplistlen
; ++i
)
1093 if (win
->w_jumplist
[i
].fmark
.fnum
== fnum
)
1094 one_adjust_nodel(&(win
->w_jumplist
[i
].fmark
.mark
.lnum
));
1097 if (win
->w_buffer
== curbuf
)
1099 if (!cmdmod
.lockmarks
)
1100 /* marks in the tag stack */
1101 for (i
= 0; i
< win
->w_tagstacklen
; i
++)
1102 if (win
->w_tagstack
[i
].fmark
.fnum
== fnum
)
1103 one_adjust_nodel(&(win
->w_tagstack
[i
].fmark
.mark
.lnum
));
1106 /* the displayed Visual area */
1107 if (win
->w_old_cursor_lnum
!= 0)
1109 one_adjust_nodel(&(win
->w_old_cursor_lnum
));
1110 one_adjust_nodel(&(win
->w_old_visual_lnum
));
1114 /* topline and cursor position for windows with the same buffer
1115 * other than the current window */
1118 if (win
->w_topline
>= line1
&& win
->w_topline
<= line2
)
1120 if (amount
== MAXLNUM
) /* topline is deleted */
1125 win
->w_topline
= line1
- 1;
1127 else /* keep topline on the same line */
1128 win
->w_topline
+= amount
;
1133 else if (amount_after
&& win
->w_topline
> line2
)
1135 win
->w_topline
+= amount_after
;
1140 if (win
->w_cursor
.lnum
>= line1
&& win
->w_cursor
.lnum
<= line2
)
1142 if (amount
== MAXLNUM
) /* line with cursor is deleted */
1145 win
->w_cursor
.lnum
= 1;
1147 win
->w_cursor
.lnum
= line1
- 1;
1148 win
->w_cursor
.col
= 0;
1150 else /* keep cursor on the same line */
1151 win
->w_cursor
.lnum
+= amount
;
1153 else if (amount_after
&& win
->w_cursor
.lnum
> line2
)
1154 win
->w_cursor
.lnum
+= amount_after
;
1159 foldMarkAdjust(win
, line1
, line2
, amount
, amount_after
);
1166 diff_mark_adjust(line1
, line2
, amount
, amount_after
);
1170 /* This code is used often, needs to be fast. */
1171 #define col_adjust(pp) \
1174 if (posp->lnum == lnum && posp->col >= mincol) \
1176 posp->lnum += lnum_amount; \
1177 if (col_amount < 0 && posp->col <= (colnr_T)-col_amount) \
1180 posp->col += col_amount; \
1185 * Adjust marks in line "lnum" at column "mincol" and further: add
1186 * "lnum_amount" to the line number and add "col_amount" to the column
1190 mark_col_adjust(lnum
, mincol
, lnum_amount
, col_amount
)
1197 int fnum
= curbuf
->b_fnum
;
1201 if ((col_amount
== 0L && lnum_amount
== 0L) || cmdmod
.lockmarks
)
1202 return; /* nothing to do */
1204 /* named marks, lower case and upper case */
1205 for (i
= 0; i
< NMARKS
; i
++)
1207 col_adjust(&(curbuf
->b_namedm
[i
]));
1208 if (namedfm
[i
].fmark
.fnum
== fnum
)
1209 col_adjust(&(namedfm
[i
].fmark
.mark
));
1211 for (i
= NMARKS
; i
< NMARKS
+ EXTRA_MARKS
; i
++)
1213 if (namedfm
[i
].fmark
.fnum
== fnum
)
1214 col_adjust(&(namedfm
[i
].fmark
.mark
));
1217 /* last Insert position */
1218 col_adjust(&(curbuf
->b_last_insert
));
1220 /* last change position */
1221 col_adjust(&(curbuf
->b_last_change
));
1223 #ifdef FEAT_JUMPLIST
1224 /* list of change positions */
1225 for (i
= 0; i
< curbuf
->b_changelistlen
; ++i
)
1226 col_adjust(&(curbuf
->b_changelist
[i
]));
1231 col_adjust(&(curbuf
->b_visual
.vi_start
));
1232 col_adjust(&(curbuf
->b_visual
.vi_end
));
1235 /* previous context mark */
1236 col_adjust(&(curwin
->w_pcmark
));
1238 /* previous pcmark */
1239 col_adjust(&(curwin
->w_prev_pcmark
));
1241 /* saved cursor for formatting */
1242 col_adjust(&saved_cursor
);
1245 * Adjust items in all windows related to the current buffer.
1247 FOR_ALL_WINDOWS(win
)
1249 #ifdef FEAT_JUMPLIST
1250 /* marks in the jumplist */
1251 for (i
= 0; i
< win
->w_jumplistlen
; ++i
)
1252 if (win
->w_jumplist
[i
].fmark
.fnum
== fnum
)
1253 col_adjust(&(win
->w_jumplist
[i
].fmark
.mark
));
1256 if (win
->w_buffer
== curbuf
)
1258 /* marks in the tag stack */
1259 for (i
= 0; i
< win
->w_tagstacklen
; i
++)
1260 if (win
->w_tagstack
[i
].fmark
.fnum
== fnum
)
1261 col_adjust(&(win
->w_tagstack
[i
].fmark
.mark
));
1263 /* cursor position for other windows with the same buffer */
1265 col_adjust(&win
->w_cursor
);
1270 #ifdef FEAT_JUMPLIST
1272 * When deleting lines, this may create duplicate marks in the
1273 * jumplist. They will be removed here for the current window.
1282 for (from
= 0; from
< curwin
->w_jumplistlen
; ++from
)
1284 if (curwin
->w_jumplistidx
== from
)
1285 curwin
->w_jumplistidx
= to
;
1286 for (i
= from
+ 1; i
< curwin
->w_jumplistlen
; ++i
)
1287 if (curwin
->w_jumplist
[i
].fmark
.fnum
1288 == curwin
->w_jumplist
[from
].fmark
.fnum
1289 && curwin
->w_jumplist
[from
].fmark
.fnum
!= 0
1290 && curwin
->w_jumplist
[i
].fmark
.mark
.lnum
1291 == curwin
->w_jumplist
[from
].fmark
.mark
.lnum
)
1293 if (i
>= curwin
->w_jumplistlen
) /* no duplicate */
1294 curwin
->w_jumplist
[to
++] = curwin
->w_jumplist
[from
];
1296 vim_free(curwin
->w_jumplist
[from
].fname
);
1298 if (curwin
->w_jumplistidx
== curwin
->w_jumplistlen
)
1299 curwin
->w_jumplistidx
= to
;
1300 curwin
->w_jumplistlen
= to
;
1303 # if defined(FEAT_WINDOWS) || defined(PROTO)
1305 * Copy the jumplist from window "from" to window "to".
1308 copy_jumplist(from
, to
)
1314 for (i
= 0; i
< from
->w_jumplistlen
; ++i
)
1316 to
->w_jumplist
[i
] = from
->w_jumplist
[i
];
1317 if (from
->w_jumplist
[i
].fname
!= NULL
)
1318 to
->w_jumplist
[i
].fname
= vim_strsave(from
->w_jumplist
[i
].fname
);
1320 to
->w_jumplistlen
= from
->w_jumplistlen
;
1321 to
->w_jumplistidx
= from
->w_jumplistidx
;
1325 * Free items in the jumplist of window "wp".
1333 for (i
= 0; i
< wp
->w_jumplistlen
; ++i
)
1334 vim_free(wp
->w_jumplist
[i
].fname
);
1337 #endif /* FEAT_JUMPLIST */
1340 set_last_cursor(win
)
1343 win
->w_buffer
->b_last_cursor
= win
->w_cursor
;
1346 #if defined(EXITFREE) || defined(PROTO)
1352 for (i
= 0; i
< NMARKS
+ EXTRA_MARKS
; i
++)
1353 if (namedfm
[i
].fmark
.mark
.lnum
!= 0)
1354 vim_free(namedfm
[i
].fname
);
1358 #if defined(FEAT_VIMINFO) || defined(PROTO)
1360 read_viminfo_filemark(virp
, force
)
1368 /* We only get here if line[0] == '\'' or '-'.
1369 * Illegal mark names are ignored (for future expansion). */
1370 str
= virp
->vir_line
+ 1;
1375 ((*virp
->vir_line
== '\'' && (VIM_ISDIGIT(*str
) || isupper(*str
)))
1376 || (*virp
->vir_line
== '-' && *str
== '\'')))
1380 #ifdef FEAT_JUMPLIST
1381 /* If the jumplist isn't full insert fmark as oldest entry */
1382 if (curwin
->w_jumplistlen
== JUMPLISTSIZE
)
1386 for (i
= curwin
->w_jumplistlen
; i
> 0; --i
)
1387 curwin
->w_jumplist
[i
] = curwin
->w_jumplist
[i
- 1];
1388 ++curwin
->w_jumplistidx
;
1389 ++curwin
->w_jumplistlen
;
1390 fm
= &curwin
->w_jumplist
[0];
1391 fm
->fmark
.mark
.lnum
= 0;
1398 else if (VIM_ISDIGIT(*str
))
1399 fm
= &namedfm
[*str
- '0' + NMARKS
];
1401 fm
= &namedfm
[*str
- 'A'];
1402 if (fm
!= NULL
&& (fm
->fmark
.mark
.lnum
== 0 || force
))
1404 str
= skipwhite(str
+ 1);
1405 fm
->fmark
.mark
.lnum
= getdigits(&str
);
1406 str
= skipwhite(str
);
1407 fm
->fmark
.mark
.col
= getdigits(&str
);
1408 #ifdef FEAT_VIRTUALEDIT
1409 fm
->fmark
.mark
.coladd
= 0;
1412 str
= skipwhite(str
);
1413 vim_free(fm
->fname
);
1414 fm
->fname
= viminfo_readstring(virp
, (int)(str
- virp
->vir_line
),
1418 return vim_fgets(virp
->vir_line
, LSIZE
, virp
->vir_fd
);
1422 write_viminfo_filemarks(fp
)
1430 if (get_viminfo_parameter('f') == 0)
1433 fprintf(fp
, _("\n# File marks:\n"));
1436 * Find a mark that is the same file and position as the cursor.
1437 * That one, or else the last one is deleted.
1438 * Move '0 to '1, '1 to '2, etc. until the matching one or '9
1439 * Set '0 mark to current cursor position.
1441 if (curbuf
->b_ffname
!= NULL
&& !removable(curbuf
->b_ffname
))
1443 name
= buflist_nr2name(curbuf
->b_fnum
, TRUE
, FALSE
);
1444 for (i
= NMARKS
; i
< NMARKS
+ EXTRA_MARKS
- 1; ++i
)
1445 if (namedfm
[i
].fmark
.mark
.lnum
== curwin
->w_cursor
.lnum
1446 && (namedfm
[i
].fname
== NULL
1447 ? namedfm
[i
].fmark
.fnum
== curbuf
->b_fnum
1449 && STRCMP(name
, namedfm
[i
].fname
) == 0)))
1453 vim_free(namedfm
[i
].fname
);
1454 for ( ; i
> NMARKS
; --i
)
1455 namedfm
[i
] = namedfm
[i
- 1];
1456 namedfm
[NMARKS
].fmark
.mark
= curwin
->w_cursor
;
1457 namedfm
[NMARKS
].fmark
.fnum
= curbuf
->b_fnum
;
1458 namedfm
[NMARKS
].fname
= NULL
;
1461 /* Write the filemarks '0 - '9 and 'A - 'Z */
1462 for (i
= 0; i
< NMARKS
+ EXTRA_MARKS
; i
++)
1463 write_one_filemark(fp
, &namedfm
[i
], '\'',
1464 i
< NMARKS
? i
+ 'A' : i
- NMARKS
+ '0');
1466 #ifdef FEAT_JUMPLIST
1467 /* Write the jumplist with -' */
1468 fprintf(fp
, _("\n# Jumplist (newest first):\n"));
1469 setpcmark(); /* add current cursor position */
1471 for (fm
= &curwin
->w_jumplist
[curwin
->w_jumplistlen
- 1];
1472 fm
>= &curwin
->w_jumplist
[0]; --fm
)
1474 if (fm
->fmark
.fnum
== 0
1475 || ((buf
= buflist_findnr(fm
->fmark
.fnum
)) != NULL
1476 && !removable(buf
->b_ffname
)))
1477 write_one_filemark(fp
, fm
, '-', '\'');
1483 write_one_filemark(fp
, fm
, c1
, c2
)
1491 if (fm
->fmark
.mark
.lnum
== 0) /* not set */
1494 if (fm
->fmark
.fnum
!= 0) /* there is a buffer */
1495 name
= buflist_nr2name(fm
->fmark
.fnum
, TRUE
, FALSE
);
1497 name
= fm
->fname
; /* use name from .viminfo */
1498 if (name
!= NULL
&& *name
!= NUL
)
1500 fprintf(fp
, "%c%c %ld %ld ", c1
, c2
, (long)fm
->fmark
.mark
.lnum
,
1501 (long)fm
->fmark
.mark
.col
);
1502 viminfo_writestring(fp
, name
);
1505 if (fm
->fmark
.fnum
!= 0)
1510 * Return TRUE if "name" is on removable media (depending on 'viminfo').
1521 name
= home_replace_save(NULL
, name
);
1524 for (p
= p_viminfo
; *p
; )
1526 copy_option_part(&p
, part
, 51, ", ");
1529 n
= STRLEN(part
+ 1);
1530 if (MB_STRNICMP(part
+ 1, name
, n
) == 0)
1542 static void write_one_mark
__ARGS((FILE *fp_out
, int c
, pos_T
*pos
));
1545 * Write all the named marks for all buffers.
1546 * Return the number of buffers for which marks have been written.
1549 write_viminfo_marks(fp_out
)
1561 * Set b_last_cursor for the all buffers that have a window.
1563 FOR_ALL_TAB_WINDOWS(tp
, win
)
1564 set_last_cursor(win
);
1566 set_last_cursor(curwin
);
1569 fprintf(fp_out
, _("\n# History of marks within files (newest to oldest):\n"));
1571 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
1574 * Only write something if buffer has been loaded and at least one
1577 if (buf
->b_marks_read
)
1579 if (buf
->b_last_cursor
.lnum
!= 0)
1583 is_mark_set
= FALSE
;
1584 for (i
= 0; i
< NMARKS
; i
++)
1585 if (buf
->b_namedm
[i
].lnum
!= 0)
1591 if (is_mark_set
&& buf
->b_ffname
!= NULL
1592 && buf
->b_ffname
[0] != NUL
&& !removable(buf
->b_ffname
))
1594 home_replace(NULL
, buf
->b_ffname
, IObuff
, IOSIZE
, TRUE
);
1595 fprintf(fp_out
, "\n> ");
1596 viminfo_writestring(fp_out
, IObuff
);
1597 write_one_mark(fp_out
, '"', &buf
->b_last_cursor
);
1598 write_one_mark(fp_out
, '^', &buf
->b_last_insert
);
1599 write_one_mark(fp_out
, '.', &buf
->b_last_change
);
1600 #ifdef FEAT_JUMPLIST
1601 /* changelist positions are stored oldest first */
1602 for (i
= 0; i
< buf
->b_changelistlen
; ++i
)
1603 write_one_mark(fp_out
, '+', &buf
->b_changelist
[i
]);
1605 for (i
= 0; i
< NMARKS
; i
++)
1606 write_one_mark(fp_out
, 'a' + i
, &buf
->b_namedm
[i
]);
1616 write_one_mark(fp_out
, c
, pos
)
1622 fprintf(fp_out
, "\t%c\t%ld\t%d\n", c
, (long)pos
->lnum
, (int)pos
->col
);
1626 * Handle marks in the viminfo file:
1627 * fp_out == NULL read marks for current buffer only
1628 * fp_out != NULL copy marks for buffers not in buffer list
1631 copy_viminfo_marks(virp
, fp_out
, count
, eof
)
1637 char_u
*line
= virp
->vir_line
;
1639 int num_marked_files
;
1648 if ((name_buf
= alloc(LSIZE
)) == NULL
)
1651 num_marked_files
= get_viminfo_parameter('\'');
1652 while (!eof
&& (count
< num_marked_files
|| fp_out
== NULL
))
1656 if (line
[0] != '\n' && line
[0] != '\r' && line
[0] != '#')
1658 if (viminfo_error("E576: ", _("Missing '>'"), line
))
1659 break; /* too many errors, return now */
1661 eof
= vim_fgets(line
, LSIZE
, virp
->vir_fd
);
1662 continue; /* Skip this dud line */
1666 * Handle long line and translate escaped characters.
1667 * Find file name, set str to start.
1668 * Ignore leading and trailing white space.
1670 str
= skipwhite(line
+ 1);
1671 str
= viminfo_readstring(virp
, (int)(str
- virp
->vir_line
), FALSE
);
1674 p
= str
+ STRLEN(str
);
1675 while (p
!= str
&& (*p
== NUL
|| vim_isspace(*p
)))
1682 * If fp_out == NULL, load marks for current buffer.
1683 * If fp_out != NULL, copy marks for buffers not in buflist.
1685 load_marks
= copy_marks_out
= FALSE
;
1688 if (curbuf
->b_ffname
!= NULL
)
1690 if (*name_buf
== NUL
) /* only need to do this once */
1691 home_replace(NULL
, curbuf
->b_ffname
, name_buf
, LSIZE
, TRUE
);
1692 if (fnamecmp(str
, name_buf
) == 0)
1696 else /* fp_out != NULL */
1698 /* This is slow if there are many buffers!! */
1699 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
1700 if (buf
->b_ffname
!= NULL
)
1702 home_replace(NULL
, buf
->b_ffname
, name_buf
, LSIZE
, TRUE
);
1703 if (fnamecmp(str
, name_buf
) == 0)
1708 * copy marks if the buffer has not been loaded
1710 if (buf
== NULL
|| !buf
->b_marks_read
)
1712 copy_marks_out
= TRUE
;
1713 fputs("\n> ", fp_out
);
1714 viminfo_writestring(fp_out
, str
);
1720 #ifdef FEAT_VIRTUALEDIT
1723 while (!(eof
= viminfo_readline(virp
)) && line
[0] == TAB
)
1729 sscanf((char *)line
+ 2, "%ld %u", &pos
.lnum
, &pos
.col
);
1732 case '"': curbuf
->b_last_cursor
= pos
; break;
1733 case '^': curbuf
->b_last_insert
= pos
; break;
1734 case '.': curbuf
->b_last_change
= pos
; break;
1736 #ifdef FEAT_JUMPLIST
1737 /* changelist positions are stored oldest
1739 if (curbuf
->b_changelistlen
== JUMPLISTSIZE
)
1740 /* list is full, remove oldest entry */
1741 mch_memmove(curbuf
->b_changelist
,
1742 curbuf
->b_changelist
+ 1,
1743 sizeof(pos_T
) * (JUMPLISTSIZE
- 1));
1745 ++curbuf
->b_changelistlen
;
1746 curbuf
->b_changelist
[
1747 curbuf
->b_changelistlen
- 1] = pos
;
1750 default: if ((i
= line
[1] - 'a') >= 0 && i
< NMARKS
)
1751 curbuf
->b_namedm
[i
] = pos
;
1755 else if (copy_marks_out
)
1756 fputs((char *)line
, fp_out
);
1760 #ifdef FEAT_JUMPLIST
1765 if (wp
->w_buffer
== curbuf
)
1766 wp
->w_changelistidx
= curbuf
->b_changelistlen
;
1774 #endif /* FEAT_VIMINFO */