X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/70e12b926f24f5eed93d9e35db515dd1887b994d..1b37c6c879c6fcdd5f96ef12b95eeda2e0b416e7:/README.md diff --git a/README.md b/README.md index 87fef46..0328b7f 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,18 @@ It never increases its default size (half screen), it only shrinks. let g:vim_markdown_toc_autofit = 1 ``` +### Syntax Concealing + +Concealing is set for some syntax. + +For example, conceal `[link text](link url)` as just `link text`. + +To enable/disable conceal use Vim's standard conceal configuration. + +```vim +set conceallevel = 2 +``` + ### Syntax extensions The following options control which syntax extensions will be turned on. They are off by default. @@ -133,7 +145,6 @@ Highlight YAML frontmatter as used by Jekyll: let g:vim_markdown_frontmatter = 1 ``` - ## Mappings The following work on normal and visual modes: @@ -176,6 +187,8 @@ To disable a map use: ## Commands +The following requires `:filetype plugin on`. + - `:HeaderDecrease`: Decrease level of all headers in buffer: `h2` to `h1`, `h3` to `h2`, etc.