diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fold.c b/src/nvim/fold.c index 6ddcbcb13f..a92ee86248 100644 --- a/src/nvim/fold.c +++ b/src/nvim/fold.c @@ -761,7 +761,7 @@ void clearFolding(win_T *win) */ void foldUpdate(win_T *wp, linenr_T top, linenr_T bot) { - if (compl_busy) { + if (compl_busy || State & INSERT) { return; } |