aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-10-07 21:51:04 -0700
committerJustin M. Keyes <justinkz@gmail.com>2019-10-07 21:51:04 -0700
commit3b3a40978117a79cd6960c820b12e6f04408ac25 (patch)
tree347bf4fa16579a0d78314589babd405b520f68a3 /src/nvim/ex_cmds.c
parent7faa6c41c89f1c5d48f92a436ed690bc7ce6ea85 (diff)
parent0586a4b512b2495d32f20c46946d35a0d403bd52 (diff)
downloadrneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.tar.gz
rneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.tar.bz2
rneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.zip
Merge #11077 'vim-patch:8.1.{1354,1356,1362,1588}'
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r--src/nvim/ex_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index b2d7ded6be..00de7a3d66 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -2767,7 +2767,7 @@ void ex_append(exarg_T *eap)
State = CMDLINE;
theline = eap->getline(
eap->cstack->cs_looplevel > 0 ? -1 :
- NUL, eap->cookie, indent);
+ NUL, eap->cookie, indent, true);
State = save_State;
}
lines_left = Rows - 1;
@@ -3630,7 +3630,7 @@ static buf_T *do_sub(exarg_T *eap, proftime_T timeout,
for (; i <= (long)ec; ++i)
msg_putchar('^');
- resp = getexmodeline('?', NULL, 0);
+ resp = getexmodeline('?', NULL, 0, true);
if (resp != NULL) {
typed = *resp;
xfree(resp);