Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 1 | /* help.c */ |
| 2 | void ex_help(exarg_T *eap); |
| 3 | void ex_helpclose(exarg_T *eap); |
| 4 | char_u *check_help_lang(char_u *arg); |
| 5 | int help_heuristic(char_u *matched_string, int offset, int wrong_case); |
| 6 | int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang); |
| 7 | void cleanup_help_tags(int num_file, char_u **file); |
| 8 | void prepare_help_buffer(void); |
| 9 | void fix_help_buffer(void); |
| 10 | void ex_exusage(exarg_T *eap); |
| 11 | void ex_viusage(exarg_T *eap); |
| 12 | void ex_helptags(exarg_T *eap); |
| 13 | /* vim: set ft=c : */ |