aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_getln.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-02-09 01:41:04 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-02-09 01:41:04 -0500
commit17ae27190d4589b2a35f44bc6c8b552f4bf06d4e (patch)
tree63744d41c9c2e3b0fe0eafd55e96d26896bbba82 /src/nvim/ex_getln.c
parent31aa060bca0084d19eac382408727c5f3b190af3 (diff)
parent18be6e0b30e64b45d3bcec944ac19a32410da0ee (diff)
downloadrneovim-17ae27190d4589b2a35f44bc6c8b552f4bf06d4e.tar.gz
rneovim-17ae27190d4589b2a35f44bc6c8b552f4bf06d4e.tar.bz2
rneovim-17ae27190d4589b2a35f44bc6c8b552f4bf06d4e.zip
Merge #4136 vim-patch:7.4.{755,758,760}
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r--src/nvim/ex_getln.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index 96bf2c78d2..d015f6b4a0 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -5136,6 +5136,8 @@ static int ex_window(void)
/* Don't execute autocommands while deleting the window. */
block_autocmds();
+ // Avoid command-line window first character being concealed
+ curwin->w_p_cole = 0;
wp = curwin;
bp = curbuf;
win_goto(old_curwin);