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 / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / src / proto / getchar.pro < prev    next >
Encoding:
Text File  |  2003-06-01  |  2.7 KB  |  61 lines

  1. /* getchar.c */
  2. void free_buff __ARGS((struct buffheader *buf));
  3. char_u *get_recorded __ARGS((void));
  4. char_u *get_inserted __ARGS((void));
  5. int stuff_empty __ARGS((void));
  6. void typeahead_noflush __ARGS((int c));
  7. void flush_buffers __ARGS((int typeahead));
  8. void ResetRedobuff __ARGS((void));
  9. void saveRedobuff __ARGS((void));
  10. void restoreRedobuff __ARGS((void));
  11. void AppendToRedobuff __ARGS((char_u *s));
  12. void AppendToRedobuffLit __ARGS((char_u *s));
  13. void AppendCharToRedobuff __ARGS((int c));
  14. void AppendNumberToRedobuff __ARGS((long n));
  15. void stuffReadbuff __ARGS((char_u *s));
  16. void stuffReadbuffLen __ARGS((char_u *s, long len));
  17. void stuffReadbuffSpec __ARGS((char_u *s));
  18. void stuffcharReadbuff __ARGS((int c));
  19. void stuffnumReadbuff __ARGS((long n));
  20. int start_redo __ARGS((long count, int old_redo));
  21. int start_redo_ins __ARGS((void));
  22. void stop_redo_ins __ARGS((void));
  23. int ins_typebuf __ARGS((char_u *str, int noremap, int offset, int nottyped, int silent));
  24. int typebuf_typed __ARGS((void));
  25. int typebuf_maplen __ARGS((void));
  26. void del_typebuf __ARGS((int len, int offset));
  27. int alloc_typebuf __ARGS((void));
  28. void free_typebuf __ARGS((void));
  29. int save_typebuf __ARGS((void));
  30. void save_typeahead __ARGS((tasave_T *tp));
  31. void restore_typeahead __ARGS((tasave_T *tp));
  32. void openscript __ARGS((char_u *name, int directly));
  33. int using_script __ARGS((void));
  34. void updatescript __ARGS((int c));
  35. int vgetc __ARGS((void));
  36. int safe_vgetc __ARGS((void));
  37. int vpeekc __ARGS((void));
  38. int vpeekc_nomap __ARGS((void));
  39. int vpeekc_any __ARGS((void));
  40. int char_avail __ARGS((void));
  41. void vungetc __ARGS((int c));
  42. int inchar __ARGS((char_u *buf, int maxlen, long wait_time));
  43. int fix_input_buffer __ARGS((char_u *buf, int len, int script));
  44. int input_available __ARGS((void));
  45. int do_map __ARGS((int maptype, char_u *arg, int mode, int abbrev));
  46. int get_map_mode __ARGS((char_u **cmdp, int forceit));
  47. void map_clear __ARGS((char_u *cmdp, char_u *arg, int forceit, int abbr));
  48. void map_clear_int __ARGS((buf_T *buf, int mode, int local, int abbr));
  49. int map_to_exists __ARGS((char_u *str, char_u *modechars));
  50. int map_to_exists_mode __ARGS((char_u *rhs, int mode));
  51. char_u *set_context_in_map_cmd __ARGS((expand_T *xp, char_u *cmd, char_u *arg, int forceit, int isabbrev, int isunmap, cmdidx_T cmdidx));
  52. int ExpandMappings __ARGS((regmatch_T *regmatch, int *num_file, char_u ***file));
  53. int check_abbr __ARGS((int c, char_u *ptr, int col, int mincol));
  54. int makemap __ARGS((FILE *fd, buf_T *buf));
  55. int put_escstr __ARGS((FILE *fd, char_u *strstart, int what));
  56. void check_map_keycodes __ARGS((void));
  57. char_u *check_map __ARGS((char_u *keys, int mode, int exact));
  58. void init_mappings __ARGS((void));
  59. void add_map __ARGS((char_u *map, int mode));
  60. /* vim: set ft=c : */
  61.