Add an option to conceal preformatted text blocks

This merges PR #641.
This commit is contained in:
Greg Anders
2019-03-28 14:49:42 -07:00
committed by Henry Qin
parent f5cf991115
commit e56c26c7ba
4 changed files with 27 additions and 3 deletions

View File

@ -2887,6 +2887,26 @@ URLs and hides markers and URL for links that have a description.
Default: 2
------------------------------------------------------------------------------
*g:vimwiki_conceal_pre*
Conceal preformatted text markers. For example,
>
{{{python
def say_hello():
print("Hello, world!")
}}}
>
would appear as simply
>
def say_hello():
print("Hello, world!")
>
in your wiki file.
Default: 0
------------------------------------------------------------------------------
*g:vimwiki_autowriteall*