comparison src/proto/usercmd.pro @ 27744:515ce8e07bf2 v8.2.4398

patch 8.2.4398: some command completion functions are too long Commit: https://github.com/vim/vim/commit/b31aec3b9387ed12677dca09069c3ae98c6c7447 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed Feb 16 12:44:29 2022 +0000 patch 8.2.4398: some command completion functions are too long Problem: Some command completion functions are too long. Solution: Refactor code into separate functions. Add a few more tests. (Yegappan Lakshmanan, closes #9785)
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Feb 2022 13:45:04 +0100
parents 589226a5f317
children 858002fef4b7
comparison
equal deleted inserted replaced
27743:629769fd1ff1 27744:515ce8e07bf2
1 /* usercmd.c */ 1 /* usercmd.c */
2 char_u *find_ucmd(exarg_T *eap, char_u *p, int *full, expand_T *xp, int *complp); 2 char_u *find_ucmd(exarg_T *eap, char_u *p, int *full, expand_T *xp, int *complp);
3 char_u *set_context_in_user_cmdarg(char_u *cmd, char_u *arg, long argt, int compl, expand_T *xp, int forceit);
3 char_u *set_context_in_user_cmd(expand_T *xp, char_u *arg_in); 4 char_u *set_context_in_user_cmd(expand_T *xp, char_u *arg_in);
4 char_u *expand_user_command_name(int idx); 5 char_u *expand_user_command_name(int idx);
5 char_u *get_user_commands(expand_T *xp, int idx); 6 char_u *get_user_commands(expand_T *xp, int idx);
6 char_u *get_user_command_name(int idx, int cmdidx); 7 char_u *get_user_command_name(int idx, int cmdidx);
7 char_u *get_user_cmd_addr_type(expand_T *xp, int idx); 8 char_u *get_user_cmd_addr_type(expand_T *xp, int idx);