mirror of
https://github.com/neovim/neovim.git
synced 2025-11-26 04:00:45 +00:00
vim-patch:7.4.758
Problem: When 'conceallevel' is 1 and quitting the command-line window with
CTRL-C the first character ':' is erased.
Solution: Reset 'conceallevel' in the command-line window. (Hirohito
Higashi)
fa67fbe6b8
This commit is contained in:
committed by
Justin M. Keyes
parent
a9a25fda42
commit
b0cfb6905a
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user