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
vim_markdown_folding_level
Maybe I'm doing something wrong but if I add
let g:vim_markdown_folding_level = 2
to my .vimrc, it has no effect. The plugin will still fold every single section no matter which level its headline has.
.vimrc
The text was updated successfully, but these errors were encountered:
How confident are you some other plugin or setting isn't enabling more folding?
Sorry, something went wrong.
I have just disabled all other plugins and the problem still exists. So just to clarify, using default configuration the content
# Headline 1 Level 1 content. ## Headline 2 Level 2 content.
is displayed as
# Headline 1 +-- 3 lines: Level 1 content.-------- ## Headline 2 +-- 3 lines: Level 2 content.--------
but it should be
# Headline 1 Level 1 content. ## Headline 2 +-- 3 lines: Level 2 content.--------
right?
The results you expect are what I get over here in Neovim...
Can you dump the output of :set and :version here?
:set
:version
No branches or pull requests
Maybe I'm doing something wrong but if I add
to my
.vimrc
, it has no effect. The plugin will still fold every single section no matter which level its headline has.The text was updated successfully, but these errors were encountered: