]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Update Markdown syntax, add missing configs
authorChristian Brabandt <cb@256bit.org>
Sun, 10 Mar 2024 18:32:55 +0000 (19:32 +0100)
committerChristian Brabandt <cb@256bit.org>
Sun, 10 Mar 2024 18:34:32 +0000 (19:34 +0100)
fixes: #14168

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/syntax.txt

index 83285dd28b4d95a41519292ecb9f07e567e81d49..de8a665e16b1e760a2e6bca7f2d4b9d995800186 100644 (file)
@@ -1,4 +1,4 @@
-*syntax.txt*   For Vim version 9.1.  Last change: 2024 Feb 06
+*syntax.txt*   For Vim version 9.1.  Last change: 2024 Mar 10
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -2236,10 +2236,19 @@ MARKDOWN                                                *ft-markdown-syntax*
 
 If you have long regions there might be wrong highlighting.  At the cost of
 slowing down displaying, you can have the engine look further back to sync on
-the start of a region, for example 500 lines: >
+the start of a region, for example 500 lines (default is 50): >
 
        :let g:markdown_minlines = 500
 
+If you want to enable fenced code block syntax highlighting in your markdown
+documents you can enable like this: >
+
+       :let g:markdown_fenced_languages = ['html', 'python', 'bash=sh']
+
+To disable markdown syntax concealing add the following to your vimrc: >
+
+       :let g:markdown_syntax_conceal = 0
+
 
 MATHEMATICA            *mma.vim* *ft-mma-syntax* *ft-mathematica-syntax*