DEV Community

Cover image for Folding sections of Markdown in Vim
Max for bitcrowd

Posted on • Edited on • Originally published at bitcrowd.dev

4 1

Folding sections of Markdown in Vim

TIL: Vim is able to fold sections or Markdown on their headings 💡

Modern version of Vim and Neovim support folding .md Markdown documents on their section headings #, ##, ### etc. out of the box, even without installing the additional vim-markdown-folding plugin.

What is folding 🤔

Vimʼs documentation describes “folding” as:

Folding is used to show a range of lines in the buffer as a single line on the
screen.  Like a piece of paper which is folded to make it shorter:

    +------------------------+
    | line 1         |
    | line 2         |
    | line 3         |
    |_______________________ |
    \            \
     \________________________\
     / folded lines       /
    /________________________/
    | line 12        |
    | line 13        |
    | line 14        |
    +------------------------+

The text is still in the buffer, unchanged.  Only the way lines are displayed
is affected by folding.

The advantage of folding is that you can get a better overview of the
structure of text, by folding lines of a section and replacing it with a line
that indicates that there is a section.
Enter fullscreen mode Exit fullscreen mode

When editing large documents, I personally find it handy to temporarily fold and “hide away” certain parts I currently donʼt care about.

Folding Markdown 🗂

Out of the box, Vim and Neovim currently wonʼt know “how” to fold Markdown sections. Their included default vim-markdown filetype and syntax plugin however offers an undocumented setting to enable just this:

let g:markdown_folding = 1
Enter fullscreen mode Exit fullscreen mode

There is an open pull request include this in the official documentation, but it is not merged yet.

Flicking this switch turns my .md buffers into something like this:

+--- 32 lines: ## What is folding 🤔···········································
+--- 23 lines: ## Folding Markdown 🗂···········································
Enter fullscreen mode Exit fullscreen mode

Pressing zR will recursively unfold all sections again. From there on you may continue to happily fold and unfold. Drew Neil from Vimcasts put together a nice and short overview over the most important folding commands:

command effect
zo open current fold
zO recursively open current fold
zc close current fold
zC recursively close current fold
za toggle current fold
zA recursively open/close current fold
zm reduce foldlevel by one
zM close all folds
zr increase foldlevel by one
zR open all folds

First look 👀

With Markdown-folding enabled, Vim will default to the fully “folded” view when opening a Markdown buffer. I personally prefer to start with the “full” document though. According to this Stackoverflow thread there are a few ways out of this behavior.

I went for setting a custom foldlevelstart value in my configuration. It instructs Vim how or if a buffer should be folded when one starts editing:

'foldlevelstart' 'fdls' number (default: -1)
            global
    Sets 'foldlevel' when starting to edit another buffer in a window.
    Useful to always start editing with all folds closed (value zero),
    some folds closed (one) or no folds closed (99).
    This is done before reading any modeline, thus a setting in a modeline
    overrules this option.  Starting to edit a file for |diff-mode| also
    ignores this option and closes all folds.
    It is also done before BufReadPre autocommands, to allow an autocmd to
    overrule the 'foldlevel' value for specific files.
    When the value is negative, it is not used.
Enter fullscreen mode Exit fullscreen mode

I went for starting with all folds open in Markdown buffers:

au FileType markdown setlocal foldlevel=99
Enter fullscreen mode Exit fullscreen mode

Happy folding 🗺

Image of Datadog

Create and maintain end-to-end frontend tests

Learn best practices on creating frontend tests, testing on-premise apps, integrating tests into your CI/CD pipeline, and using Datadog’s testing tunnel.

Download The Guide

Top comments (0)

Eliminate Context Switching and Maximize Productivity

Pieces.app

Pieces Copilot is your personalized workflow assistant, working alongside your favorite apps. Ask questions about entire repositories, generate contextualized code, save and reuse useful snippets, and streamline your development process.

Learn more