blob: 897cad37fc994f27f0c73e106f2389741a4b8f8a [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* getchar.c */
Bram Moolenaar0a36fec2014-02-11 15:10:43 +01002void free_buff __ARGS((buffheader_T *buf));
Bram Moolenaare9400a42007-05-06 13:04:32 +00003char_u *get_recorded __ARGS((void));
4char_u *get_inserted __ARGS((void));
5int stuff_empty __ARGS((void));
Bram Moolenaar0a36fec2014-02-11 15:10:43 +01006int readbuf1_empty __ARGS((void));
Bram Moolenaare9400a42007-05-06 13:04:32 +00007void typeahead_noflush __ARGS((int c));
Bram Moolenaarbe094a12012-02-05 01:18:48 +01008void flush_buffers __ARGS((int flush_typeahead));
Bram Moolenaare9400a42007-05-06 13:04:32 +00009void ResetRedobuff __ARGS((void));
Bram Moolenaarbe094a12012-02-05 01:18:48 +010010void CancelRedo __ARGS((void));
Bram Moolenaare9400a42007-05-06 13:04:32 +000011void saveRedobuff __ARGS((void));
12void restoreRedobuff __ARGS((void));
13void AppendToRedobuff __ARGS((char_u *s));
14void AppendToRedobuffLit __ARGS((char_u *str, int len));
15void AppendCharToRedobuff __ARGS((int c));
16void AppendNumberToRedobuff __ARGS((long n));
17void stuffReadbuff __ARGS((char_u *s));
18void stuffReadbuffLen __ARGS((char_u *s, long len));
19void stuffReadbuffSpec __ARGS((char_u *s));
20void stuffcharReadbuff __ARGS((int c));
21void stuffnumReadbuff __ARGS((long n));
22int start_redo __ARGS((long count, int old_redo));
23int start_redo_ins __ARGS((void));
24void stop_redo_ins __ARGS((void));
25int ins_typebuf __ARGS((char_u *str, int noremap, int offset, int nottyped, int silent));
26void ins_char_typebuf __ARGS((int c));
27int typebuf_changed __ARGS((int tb_change_cnt));
28int typebuf_typed __ARGS((void));
29int typebuf_maplen __ARGS((void));
30void del_typebuf __ARGS((int len, int offset));
31int alloc_typebuf __ARGS((void));
32void free_typebuf __ARGS((void));
33int save_typebuf __ARGS((void));
34void save_typeahead __ARGS((tasave_T *tp));
35void restore_typeahead __ARGS((tasave_T *tp));
36void openscript __ARGS((char_u *name, int directly));
37void close_all_scripts __ARGS((void));
38int using_script __ARGS((void));
39void before_blocking __ARGS((void));
40void updatescript __ARGS((int c));
41int vgetc __ARGS((void));
42int safe_vgetc __ARGS((void));
Bram Moolenaar61abfd12007-09-13 16:26:47 +000043int plain_vgetc __ARGS((void));
Bram Moolenaare9400a42007-05-06 13:04:32 +000044int vpeekc __ARGS((void));
45int vpeekc_nomap __ARGS((void));
46int vpeekc_any __ARGS((void));
47int char_avail __ARGS((void));
48void vungetc __ARGS((int c));
49int inchar __ARGS((char_u *buf, int maxlen, long wait_time, int tb_change_cnt));
50int fix_input_buffer __ARGS((char_u *buf, int len, int script));
51int input_available __ARGS((void));
52int do_map __ARGS((int maptype, char_u *arg, int mode, int abbrev));
53int get_map_mode __ARGS((char_u **cmdp, int forceit));
54void map_clear __ARGS((char_u *cmdp, char_u *arg, int forceit, int abbr));
55void map_clear_int __ARGS((buf_T *buf, int mode, int local, int abbr));
Bram Moolenaarbd743252010-10-20 21:23:33 +020056char_u *map_mode_to_chars __ARGS((int mode));
Bram Moolenaare9400a42007-05-06 13:04:32 +000057int map_to_exists __ARGS((char_u *str, char_u *modechars, int abbr));
58int map_to_exists_mode __ARGS((char_u *rhs, int mode, int abbr));
59char_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));
60int ExpandMappings __ARGS((regmatch_T *regmatch, int *num_file, char_u ***file));
61int check_abbr __ARGS((int c, char_u *ptr, int col, int mincol));
62char_u *vim_strsave_escape_csi __ARGS((char_u *p));
63void vim_unescape_csi __ARGS((char_u *p));
64int makemap __ARGS((FILE *fd, buf_T *buf));
65int put_escstr __ARGS((FILE *fd, char_u *strstart, int what));
66void check_map_keycodes __ARGS((void));
Bram Moolenaarbd743252010-10-20 21:23:33 +020067char_u *check_map __ARGS((char_u *keys, int mode, int exact, int ign_mod, int abbr, mapblock_T **mp_ptr, int *local_ptr));
Bram Moolenaare9400a42007-05-06 13:04:32 +000068void init_mappings __ARGS((void));
69void add_map __ARGS((char_u *map, int mode));
Bram Moolenaar071d4272004-06-13 20:20:40 +000070/* vim: set ft=c : */