kevinhwang91 / nvim-ufo

Not UFO in the sky, but an ultra fold in Neovim.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Multiple windows with the same buffer make unfolding glitchy

igorlfs opened this issue · comments

Neovim version (nvim -v | head -n1)

NVIM v0.10.0-dev-1854+g224b2ec202

Operating system/version

Linux 6.6.6

How to reproduce the issue

cat mini.lua

-- Use Vim packages install the plugin, also work with some plugins manager such as packer.nvim
vim.o.packpath = '~/.local/share/nvim/site'
vim.cmd('packadd promise-async')
vim.cmd('packadd nvim-ufo')

-- Setting
vim.o.foldcolumn = '1'
vim.o.foldlevel = 99
vim.o.foldlevelstart = -1
vim.o.foldenable = true

local ufo = require('ufo')
ufo.setup()
vim.keymap.set('n', 'zR', ufo.openAllFolds)
vim.keymap.set('n', 'zM', ufo.closeAllFolds)

nvim --clean +'so mini.lua'

  1. Open a buffer. <C-w>v to open another split with the same buffer.
  2. In the new split, close any fold.
  3. Close the same fold in the original split.
  4. Move to the new split again, and try to open it.
    ...

Expected behavior

The fold should be opened normally

Actual behavior

Instead, it glitches as if it had entered a loop, where the highlight on open is never cleared:
image