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