blob: 9a3e9e9e0d67c82ba0004178573fcea3342f9d04 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* mark.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002int setmark(int c);
3int setmark_pos(int c, pos_T *pos, int fnum);
4void setpcmark(void);
5void checkpcmark(void);
6pos_T *movemark(int count);
7pos_T *movechangelist(int count);
8pos_T *getmark_buf(buf_T *buf, int c, int changefile);
9pos_T *getmark(int c, int changefile);
10pos_T *getmark_buf_fnum(buf_T *buf, int c, int changefile, int *fnum);
11pos_T *getnextmark(pos_T *startpos, int dir, int begin_line);
12void fmarks_check_names(buf_T *buf);
13int check_mark(pos_T *pos);
14void clrallmarks(buf_T *buf);
15char_u *fm_getname(fmark_T *fmark, int lead_len);
16void do_marks(exarg_T *eap);
17void ex_delmarks(exarg_T *eap);
18void ex_jumps(exarg_T *eap);
19void ex_changes(exarg_T *eap);
20void mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after);
21void mark_col_adjust(linenr_T lnum, colnr_T mincol, long lnum_amount, long col_amount);
22void copy_jumplist(win_T *from, win_T *to);
23void free_jumplist(win_T *wp);
24void set_last_cursor(win_T *win);
25void free_all_marks(void);
26int read_viminfo_filemark(vir_T *virp, int force);
27void write_viminfo_filemarks(FILE *fp);
28int removable(char_u *name);
29int write_viminfo_marks(FILE *fp_out);
30void copy_viminfo_marks(vir_T *virp, FILE *fp_out, int count, int eof, int flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000031/* vim: set ft=c : */