mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07: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:
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);
|
||||
|
@ -530,7 +530,7 @@ static int included_patches[] = {
|
||||
// 761 NA
|
||||
// 760,
|
||||
// 759 NA
|
||||
// 758,
|
||||
758,
|
||||
// 757 NA
|
||||
// 756 NA
|
||||
755,
|
||||
|
Loading…
Reference in New Issue
Block a user