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 / cmdline.pro < prev    next >
Encoding:
Text File  |  1997-03-12  |  1.3 KB  |  25 lines

  1. /* cmdline.c */
  2. void add_to_history __PARMS((int histype, char_u *new_entry));
  3. char_u *getcmdline __PARMS((int firstc, long count));
  4. int put_on_cmdline __PARMS((char_u *str, int len, int redraw));
  5. void alloc_cmdbuff __PARMS((int len));
  6. int realloc_cmdbuff __PARMS((int len));
  7. void redrawcmdline __PARMS((void));
  8. void compute_cmdrow __PARMS((void));
  9. int do_cmdline __PARMS((char_u *cmdline, int sourcing, int repeating));
  10. int autowrite __PARMS((BUF *buf, int forceit));
  11. void autowrite_all __PARMS((void));
  12. int do_ecmd __PARMS((int fnum, char_u *fname, char_u *sfname, char_u *command, linenr_t newlnum, int flags));
  13. void check_arg_idx __PARMS((void));
  14. void gotocmdline __PARMS((int clr));
  15. int check_fname __PARMS((void));
  16. int getfile __PARMS((int fnum, char_u *fname, char_u *sfname, int setpm, linenr_t lnum, int forceit));
  17. char_u *ExpandOne __PARMS((char_u *str, char_u *orig, int options, int mode));
  18. void tilde_replace __PARMS((char_u *orig_pat, int num_files, char_u **files));
  19. char_u *addstar __PARMS((char_u *fname, int len));
  20. int do_source __PARMS((register char_u *fname, int check_other));
  21. void prepare_viminfo_history __PARMS((int len));
  22. int read_viminfo_history __PARMS((char_u *line, FILE *fp));
  23. void finish_viminfo_history __PARMS((void));
  24. void write_viminfo_history __PARMS((FILE *fp));
  25.