X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d446595f9e690e9f50eeda0f0e144320ccca72dc..3827a2680a7205ff3da78a18531d39463c637ebc:/README.md diff --git a/README.md b/README.md index 925fd67..6fd8a38 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,22 @@ To fold in a style like [python-mode](https://github.com/klen/python-mode), add the following to your `.vimrc`: ```vim -let g:vim_markdown_folding_style_pythonic = 1 +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 @@ -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).