X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/611c994e1b00ef9dac617fe96cd644f0297e2a19..3827a2680a7205ff3da78a18531d39463c637ebc:/README.md diff --git a/README.md b/README.md index 55baaa5..6fd8a38 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,21 @@ the following to your `.vimrc`: let g:vim_markdown_folding_style_pythonic=1 ``` +### Set header folding level + +Folding level is a number between 1 and 6. By default, if not specified, it is set to 1. + +```vim +let g:vim_markdown_folding_level = 6 +``` + +Tip: it can be changed on the fly with: + +```vim +:let g:vim_markdown_folding_level = 1 +:edit +``` + ### Disable Default Key Mappings Add the following line to your `.vimrc` to disable default key mappings: @@ -109,6 +124,7 @@ Highlight YAML frontmatter as used by Jekyll: let g:vim_markdown_frontmatter=1 ``` + ## Mappings The following work on normal and visual modes: @@ -169,7 +185,7 @@ To disable a map use: If a range is given, e.g. hit `:` from visual mode, only operate on the range. -- `:TableFormat`: Format the table under the cursor [like this](http://www.cirosantilli.com/markdown-styleguide/#tables). +- `:TableFormat`: Format the table under the cursor [like this](http://www.cirosantilli.com/markdown-style-guide/#tables). Requires [Tabular](https://github.com/godlygeek/tabular).