1/* getchar.c */ 2char_u *get_recorded(void); 3char_u *get_inserted(void); 4int stuff_empty(void); 5int readbuf1_empty(void); 6void typeahead_noflush(int c); 7void flush_buffers(flush_buffers_T flush_typeahead); 8void ResetRedobuff(void); 9void CancelRedo(void); 10void saveRedobuff(save_redo_T *save_redo); 11void restoreRedobuff(save_redo_T *save_redo); 12void AppendToRedobuff(char_u *s); 13void AppendToRedobuffLit(char_u *str, int len); 14void AppendCharToRedobuff(int c); 15void AppendNumberToRedobuff(long n); 16void stuffReadbuff(char_u *s); 17void stuffRedoReadbuff(char_u *s); 18void stuffReadbuffSpec(char_u *s); 19void stuffcharReadbuff(int c); 20void stuffnumReadbuff(long n); 21void stuffescaped(char_u *arg, int literally); 22int start_redo(long count, int old_redo); 23int start_redo_ins(void); 24void stop_redo_ins(void); 25int noremap_keys(void); 26int ins_typebuf(char_u *str, int noremap, int offset, int nottyped, int silent); 27void ins_char_typebuf(int c, int modifier); 28int typebuf_changed(int tb_change_cnt); 29int typebuf_typed(void); 30int typebuf_maplen(void); 31void del_typebuf(int len, int offset); 32int save_typebuf(void); 33void save_typeahead(tasave_T *tp); 34void restore_typeahead(tasave_T *tp, int overwrite); 35void openscript(char_u *name, int directly); 36void close_all_scripts(void); 37int using_script(void); 38void before_blocking(void); 39int merge_modifyOtherKeys(int c_arg, int *modifiers); 40int vgetc(void); 41int safe_vgetc(void); 42int plain_vgetc(void); 43int vpeekc(void); 44int vpeekc_nomap(void); 45int vpeekc_any(void); 46int char_avail(void); 47void f_getchar(typval_T *argvars, typval_T *rettv); 48void f_getcharstr(typval_T *argvars, typval_T *rettv); 49void f_getcharmod(typval_T *argvars, typval_T *rettv); 50void parse_queued_messages(void); 51void vungetc(int c); 52int fix_input_buffer(char_u *buf, int len); 53int input_available(void); 54char_u *getcmdkeycmd(int promptc, void *cookie, int indent, getline_opt_T do_concat); 55/* vim: set ft=c : */ 56