home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / amiga / vim46src.lha / vim-4.6 / src / proto / mark.pro < prev    next >
Encoding:
Text File  |  1997-03-12  |  838 b   |  19 lines

  1. /* mark.c */
  2. int setmark __PARMS((int c));
  3. void setpcmark __PARMS((void));
  4. void checkpcmark __PARMS((void));
  5. FPOS *movemark __PARMS((int count));
  6. FPOS *getmark __PARMS((int c, int changefile));
  7. void fmarks_check_names __PARMS((BUF *buf));
  8. int check_mark __PARMS((FPOS *pos));
  9. void clrallmarks __PARMS((BUF *buf));
  10. char_u *fm_getname __PARMS((struct filemark *fmark));
  11. void do_marks __PARMS((char_u *arg));
  12. void do_jumps __PARMS((void));
  13. void mark_adjust __PARMS((linenr_t line1, linenr_t line2, long amount, long amount_after));
  14. void set_last_cursor __PARMS((WIN *win));
  15. int read_viminfo_filemark __PARMS((char_u *line, FILE *fp, int force));
  16. void write_viminfo_filemarks __PARMS((FILE *fp));
  17. int write_viminfo_marks __PARMS((FILE *fp_out));
  18. void copy_viminfo_marks __PARMS((char_u *line, FILE *fp_in, FILE *fp_out, int count, int eof));
  19.