0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.0024

This commit is contained in:
Bram Moolenaar
2004-12-24 14:35:23 +00:00
parent 1cd871b534
commit b5bf5b8fae
43 changed files with 887 additions and 311 deletions

View File

@@ -5216,6 +5216,28 @@ fix_help_buffer()
}
}
/*
* ":exusage"
*/
/*ARGSUSED*/
void
ex_exusage(eap)
exarg_T *eap;
{
do_cmdline_cmd((char_u *)"help ex-cmd-index");
}
/*
* ":viusage"
*/
/*ARGSUSED*/
void
ex_viusage(eap)
exarg_T *eap;
{
do_cmdline_cmd((char_u *)"help normal-index");
}
#if defined(FEAT_EX_EXTRA) || defined(PROTO)
static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang));