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