mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 12:45:17 -07:00
fix(treesitter): don't forcefully open folds
Problem: When `vim._foldupdate()` is invoked inside a scheduled callback, the cursor may have moved to a line with a closed fold, e.g., after `dd` on the line that is one line above a folded region. Then it opens the fold, which is unnecessary and distracting. Legacy foldexprs do not have this issue. Solution: Don't explicitly open folds on cursor. Note: This doesn't completely prevent spurious opening of folds. That is due to bugs in treesitter foldexpr algorithm, which should be addressed separately.
This commit is contained in:
parent
f22e9e10f9
commit
040369e1e4
@ -536,11 +536,14 @@ static int nlua_iconv(lua_State *lstate)
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Like 'zx' but don't call newFoldLevel()
|
||||
// Update foldlevels (e.g., by evaluating 'foldexpr') for all lines in the current window without
|
||||
// invoking other side effects. Unlike `zx`, it does not close manually opened folds and does not
|
||||
// open folds under the cursor.
|
||||
static int nlua_foldupdate(lua_State *lstate)
|
||||
{
|
||||
curwin->w_foldinvalid = true; // recompute folds
|
||||
foldOpenCursor();
|
||||
foldUpdate(curwin, 1, (linenr_T)MAXLNUM);
|
||||
curwin->w_foldinvalid = false;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user