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

fix: improve string width calculation #247

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

teatimeguest
Copy link

I found that sometimes notifications are not rendered correctly. Here is an example:

local notify = require("notify")
local title = "\u{1D4AF}\u{212F}\u{1D4C8}\u{1D4C9}" -- "π’―β„―π“ˆπ“‰"

notify("Title not correctly highlighted", nil, { title = title, render = "compact" })
notify("Borderline too short", nil, { title = title, render = "simple" })
notifications

Such glitches can be caused by several factors: UTF-16 surrogate pairs (accidentally taken into account here and here), combining character sequences, fullwidth characters, etc.

To fix the problem, this PR makes the following changes:

  • Use Lua's # operator to determine the position of extmarks, as it requires simply byte indices.
  • Use vim.api.nvim_strwidth instead of vim.fn.strchars or vim.str_utfindex to more reliably calculate the width of a string on screen.

Tested with NeoVim v0.5.1 and v0.10.0-nightly.

Limitations

vim.api.nvim_strwidth works well in many cases, but is not perfect (e.g., for emojis).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant