1/* mark.c */ 2int 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 ex_marks(exarg_T *eap); 17void ex_delmarks(exarg_T *eap); 18void ex_jumps(exarg_T *eap); 19void ex_clearjumps(exarg_T *eap); 20void ex_changes(exarg_T *eap); 21void mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after); 22void mark_adjust_nofold(linenr_T line1, linenr_T line2, long amount, long amount_after); 23void mark_col_adjust(linenr_T lnum, colnr_T mincol, long lnum_amount, long col_amount, int spaces_removed); 24void cleanup_jumplist(win_T *wp, int loadfiles); 25void copy_jumplist(win_T *from, win_T *to); 26void free_jumplist(win_T *wp); 27void set_last_cursor(win_T *win); 28void free_all_marks(void); 29xfmark_T *get_namedfm(void); 30void f_getmarklist(typval_T *argvars, typval_T *rettv); 31/* vim: set ft=c : */ 32