Bram Moolenaar | d7663c2 | 2019-08-06 21:59:57 +0200 | [diff] [blame] | 1 | /* cmdhist.c */ |
| 2 | int get_hislen(void); |
| 3 | histentry_T *get_histentry(int hist_type); |
| 4 | void set_histentry(int hist_type, histentry_T *entry); |
| 5 | int *get_hisidx(int hist_type); |
| 6 | int *get_hisnum(int hist_type); |
| 7 | int hist_char2type(int c); |
| 8 | char_u *get_history_arg(expand_T *xp, int idx); |
| 9 | void init_history(void); |
| 10 | void clear_hist_entry(histentry_T *hisptr); |
| 11 | int in_history(int type, char_u *str, int move_to_front, int sep, int writing); |
| 12 | void add_to_history(int histype, char_u *new_entry, int in_map, int sep); |
| 13 | void remove_key_from_history(void); |
| 14 | void ex_history(exarg_T *eap); |
| 15 | void f_histadd(typval_T *argvars, typval_T *rettv); |
| 16 | void f_histdel(typval_T *argvars, typval_T *rettv); |
| 17 | void f_histget(typval_T *argvars, typval_T *rettv); |
| 18 | void f_histnr(typval_T *argvars, typval_T *rettv); |
| 19 | /* vim: set ft=c : */ |