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 / edit.pro < prev    next >
Encoding:
Text File  |  1997-03-12  |  1013 b   |  24 lines

  1. /* edit.c */
  2. int edit __PARMS((int initstr, int startln, long count));
  3. int is_ctrl_x_key __PARMS((int c));
  4. int add_completion_and_infercase __PARMS((char_u *str, int len, char_u *fname, int dir));
  5. int get_literal __PARMS((void));
  6. void insertchar __PARMS((unsigned c, int force_formatting, int second_indent));
  7. void set_last_insert __PARMS((int c));
  8. void beginline __PARMS((int flag));
  9. int oneright __PARMS((void));
  10. int oneleft __PARMS((void));
  11. int cursor_up __PARMS((long n));
  12. int cursor_down __PARMS((long n));
  13. int screengo __PARMS((int dir, long dist));
  14. int onepage __PARMS((int dir, long count));
  15. void halfpage __PARMS((int flag, linenr_t Prenum));
  16. int stuff_inserted __PARMS((int c, long count, int no_esc));
  17. char_u *get_last_insert __PARMS((void));
  18. void replace_push __PARMS((int c));
  19. int replace_pop __PARMS((void));
  20. void replace_flush __PARMS((void));
  21. void fixthisline __PARMS((int (*get_the_indent)(void)));
  22. int in_cinkeys __PARMS((int keytyped, int when, int line_is_empty));
  23. int hkmap __PARMS((int c));
  24.