diff options
author | Raphaƫl Colin <raphael.colin2@etu.unistra.fr> | 2019-03-30 12:40:41 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-03-30 22:18:18 +0100 |
commit | 104a40463af1d4e5e74f38379251f29ec73500c2 (patch) | |
tree | be6e891ad12b1233c766f96eeff6619d063c0e0b /src | |
parent | 1ae52a3bba88835589c4dbf68d3ad169b1d4d21a (diff) | |
download | rneovim-104a40463af1d4e5e74f38379251f29ec73500c2.tar.gz rneovim-104a40463af1d4e5e74f38379251f29ec73500c2.tar.bz2 rneovim-104a40463af1d4e5e74f38379251f29ec73500c2.zip |
vim-patch:8.0.0629: set `starting` earlier
The patch is N/A but we include it for consistency.
closes #9814
---
Problem: Checking for ambigous width is not working. (Hirohito Higashi)
Solution: Reset "starting" earlier.
https://github.com/vim/vim/commit/6b1da3312e15c065b373c9ec2732f31a77cee61f
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 5dffca95a2..aa7f93c15e 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -547,10 +547,11 @@ int main(int argc, char **argv) if (params.n_commands > 0) exe_commands(¶ms); + starting = 0; + RedrawingDisabled = 0; redraw_all_later(NOT_VALID); no_wait_return = FALSE; - starting = 0; // 'autochdir' has been postponed. do_autochdir(); |