view src/proto/help.pro @ 31065:50405a481037 v9.0.0867

patch 9.0.0867: wildmenu redrawing code is spread out Commit: https://github.com/vim/vim/commit/d6e91385f0f7256aec8f70373c9e3399770d22e5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 12 17:44:13 2022 +0000 patch 9.0.0867: wildmenu redrawing code is spread out Problem: Wildmenu redrawing code is spread out. Solution: Refactor to move code together. (closes https://github.com/vim/vim/issues/11528)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Nov 2022 18:45:04 +0100
parents f103da6ba95f
children
line wrap: on
line source

/* help.c */
void ex_help(exarg_T *eap);
void ex_helpclose(exarg_T *eap);
char_u *check_help_lang(char_u *arg);
int help_heuristic(char_u *matched_string, int offset, int wrong_case);
int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang);
void cleanup_help_tags(int num_file, char_u **file);
void prepare_help_buffer(void);
void fix_help_buffer(void);
void ex_exusage(exarg_T *eap);
void ex_viusage(exarg_T *eap);
void ex_helptags(exarg_T *eap);
/* vim: set ft=c : */