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