diff src/proto/ex_docmd.pro @ 28179:49631bf057d3 v8.2.4615

patch 8.2.4615: mapping with escaped bar does not work in :def function Commit: https://github.com/vim/vim/commit/ac48506ac62b2ece523d5af6ea6c95b699d70b94 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 23 19:45:01 2022 +0000 patch 8.2.4615: mapping with escaped bar does not work in :def function Problem: Mapping with escaped bar does not work in :def function. (Sergey Vlasov) Solution: Do not remove the backslash. (closes #10002)
author Bram Moolenaar <Bram@vim.org>
date Wed, 23 Mar 2022 21:00:05 +0100
parents 269f89efb06a
children dfe18756f2ad
line wrap: on
line diff
--- a/src/proto/ex_docmd.pro
+++ b/src/proto/ex_docmd.pro
@@ -26,7 +26,7 @@ long excmd_get_argt(cmdidx_T idx);
 char_u *skip_range(char_u *cmd_start, int skip_star, int *ctx);
 void ex_ni(exarg_T *eap);
 int expand_filename(exarg_T *eap, char_u **cmdlinep, char **errormsgp);
-void separate_nextcmd(exarg_T *eap);
+void separate_nextcmd(exarg_T *eap, int keep_backslash);
 char_u *skip_cmd_arg(char_u *p, int rembs);
 int get_bad_opt(char_u *p, exarg_T *eap);
 int ends_excmd(int c);