comparison src/proto/ex_docmd.pro @ 22260:d7c1e3efa88e v8.2.1679

patch 8.2.1679: Vim9: ":*" is not recognized as a range Commit: https://github.com/vim/vim/commit/3bd8de40b484d3617a19092d3cc036f8b4f3d51c Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 14 16:37:34 2020 +0200 patch 8.2.1679: Vim9: ":*" is not recognized as a range Problem: Vim9: ":*" is not recognized as a range. Solution: Move recognizing "*" into skip_range(). (closes https://github.com/vim/vim/issues/6838)
author Bram Moolenaar <Bram@vim.org>
date Mon, 14 Sep 2020 16:45:04 +0200
parents b931df03adcc
children c996700d569f
comparison
equal deleted inserted replaced
22259:70b887aaedf1 22260:d7c1e3efa88e
14 char_u *find_ex_command(exarg_T *eap, int *full, void *(*lookup)(char_u *, size_t, cctx_T *), cctx_T *cctx); 14 char_u *find_ex_command(exarg_T *eap, int *full, void *(*lookup)(char_u *, size_t, cctx_T *), cctx_T *cctx);
15 int modifier_len(char_u *cmd); 15 int modifier_len(char_u *cmd);
16 int cmd_exists(char_u *name); 16 int cmd_exists(char_u *name);
17 cmdidx_T excmd_get_cmdidx(char_u *cmd, int len); 17 cmdidx_T excmd_get_cmdidx(char_u *cmd, int len);
18 long excmd_get_argt(cmdidx_T idx); 18 long excmd_get_argt(cmdidx_T idx);
19 char_u *skip_range(char_u *cmd, int *ctx); 19 char_u *skip_range(char_u *cmd, int skip_star, int *ctx);
20 void ex_ni(exarg_T *eap); 20 void ex_ni(exarg_T *eap);
21 int expand_filename(exarg_T *eap, char_u **cmdlinep, char **errormsgp); 21 int expand_filename(exarg_T *eap, char_u **cmdlinep, char **errormsgp);
22 void separate_nextcmd(exarg_T *eap); 22 void separate_nextcmd(exarg_T *eap);
23 char_u *skip_cmd_arg(char_u *p, int rembs); 23 char_u *skip_cmd_arg(char_u *p, int rembs);
24 int get_bad_opt(char_u *p, exarg_T *eap); 24 int get_bad_opt(char_u *p, exarg_T *eap);