Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Customize fold text still have weird numbers #13

Closed
dinhmai74 opened this issue Jun 19, 2022 · 2 comments
Closed

Customize fold text still have weird numbers #13

dinhmai74 opened this issue Jun 19, 2022 · 2 comments
Labels
bug Something isn't working duplicate This issue or pull request already exists

Comments

@dinhmai74
Copy link

Neovim version (nvim -v | head -n1)

0.7.0

Operating system/version

macos 12.4

How to reproduce the issue

  1. Enter the files
  2. Sign numbers apear

I use CoC nvim with this config for ufo
`
vim.wo.foldcolumn = '1'
vim.wo.foldlevel = 99 -- feel free to decrease the value
vim.wo.foldenable = true

local handler = function(virtText, lnum, endLnum, width, truncate)
local newVirtText = {}
local suffix = ('  %d '):format(endLnum - lnum)
local sufWidth = vim.fn.strdisplaywidth(suffix)
local targetWidth = width - sufWidth
local curWidth = 0
for _, chunk in ipairs(virtText) do
local chunkText = chunk[1]
local chunkWidth = vim.fn.strdisplaywidth(chunkText)
if targetWidth > curWidth + chunkWidth then
table.insert(newVirtText, chunk)
else
chunkText = truncate(chunkText, targetWidth - curWidth)
local hlGroup = chunk[2]
table.insert(newVirtText, { chunkText, hlGroup })
chunkWidth = vim.fn.strdisplaywidth(chunkText)
-- str width returned from truncate() may less than 2nd argument, need padding
if curWidth + chunkWidth < targetWidth then
suffix = suffix .. (' '):rep(targetWidth - curWidth - chunkWidth)
end
break
end
curWidth = curWidth + chunkWidth
end
table.insert(newVirtText, { suffix, 'MoreMsg' })
return newVirtText
end

-- global handler
require('ufo').setup({
fold_virt_text_handler = handler
})

`

Expected behavior

Like the demo
Uploading image.png…

Actual behavior

Uploading image.png…

@dinhmai74 dinhmai74 added the bug Something isn't working label Jun 19, 2022
@kevinhwang91
Copy link
Owner

image is missing.

@dinhmai74
Copy link
Author

nvm it is the same issue with this one #4 (comment)

@kevinhwang91 kevinhwang91 added the duplicate This issue or pull request already exists label Jun 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working duplicate This issue or pull request already exists
Projects
None yet
Development

No branches or pull requests

2 participants