We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when using fdm=marker and there's no treesitter/lsp/etc, use foldmarkers as a fallback, with the line as the name of the symbol, so that
fdm=marker
# section 1 {{{1 # subsection 1.1 {{{2 # ... # subsection 1.2 {{{2
would become
section 1 ├── subsection 1.1 └── subsection 1.2
long configs, especially ones where you can't include/import from a separate file
nice to have
the marker can be removed with
string.gsub(line, string.gsub(vim.o.foldmarker, ',.*', '') .. '%d*', '')
not sure if it's possible to use the builtin comment function tho
The text was updated successfully, but these errors were encountered:
This is a neat idea. Would probably require building a custom backend, like we did for asciidoc
Sorry, something went wrong.
No branches or pull requests
Did you check existing requests?
Describe the feature
when using
fdm=marker
and there's no treesitter/lsp/etc, use foldmarkers as a fallback, with the line as the name of the symbol, so thatwould become
Provide background
long configs, especially ones where you can't include/import from a separate file
What is the significance of this feature?
nice to have
Additional details
the marker can be removed with
not sure if it's possible to use the builtin comment function tho
The text was updated successfully, but these errors were encountered: