diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-26 21:44:46 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-26 21:44:46 +0100 |
commit | 0c0734d527a132edfb4089be48486586424b3f41 (patch) | |
tree | 6dc04964a23e8c85be6283a1642c06f2003bc7c2 /runtime/doc/syntax.txt | |
parent | fc4ea2a72d36de1196a3ce17352e72f8fe90f4bb (diff) | |
download | vim-git-0c0734d527a132edfb4089be48486586424b3f41.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/doc/syntax.txt')
-rw-r--r-- | runtime/doc/syntax.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index 2d1826315..3ec4acf1c 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -1,4 +1,4 @@ -*syntax.txt* For Vim version 8.1. Last change: 2019 Nov 14 +*syntax.txt* For Vim version 8.1. Last change: 2019 Nov 20 VIM REFERENCE MANUAL by Bram Moolenaar @@ -2771,10 +2771,10 @@ To set a user-defined list of code block syntax highlighting: > To assign multiple code block types to a single syntax, define `rst_syntax_code_list` as a mapping: > let rst_syntax_code_list = { - \ 'cpp' = ['cpp', 'c++'], - \ 'bash' = ['bash', 'sh'], + \ 'cpp': ['cpp', 'c++'], + \ 'bash': ['bash', 'sh'], ... - } + \ } To use color highlighting for emphasis text: > let rst_use_emphasis_colors = 1 |