-
Notifications
You must be signed in to change notification settings - Fork 49
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
Marker provider not works #233
Comments
Will make it become default behavior after solving the performance issue for |
timely - was just coming to ask about this - is #219 what I should be watching for updates? |
Watching this issue is enough. |
Neovim can't handle the cross ranges like: local ranges = {
{
endLine = 5,
kind = "comment",
startLine = 3
}, {
endLine = 7,
kind = "marker",
startLine = 4
}
} The two ranges are distorted and become [3,5] and [ I have no idea how to solve this cross ranges issue. Users should decide which kind is a high priority range and discard the low priority by themselves. |
Neovim version (nvim -v | head -n1)
0.10.0
Operating system/version
macOS 14.5
How to reproduce the issue
I can't use
za
to fold the range between// #region xxx
and// #endregion
markers. It will prompt the error:Cannot find fold
.2024-07-13.21.09.19.mov
This is my lazyvim config:
Expected behavior
Fold the code between
#region
and#endregion
like vscode.Actual behavior
The code won't be folded and throw the error:
cannot find fold
.The text was updated successfully, but these errors were encountered: