comparison runtime/doc/syntax.txt @ 18016:834b7854aa3c

Update runtime files Commit: https://github.com/vim/vim/commit/30e9b3c4256710781c3bd64efb33f138e4e074b3 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 7 16:24:12 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 Sep 2019 16:30:03 +0200
parents ca8e754bdd53
children 6650e3dff8d4
comparison
equal deleted inserted replaced
18015:4e43c4aa6563 18016:834b7854aa3c
1744 1744
1745 There are several html preprocessor languages out there. html.vim has been 1745 There are several html preprocessor languages out there. html.vim has been
1746 written such that it should be trivial to include it. To do so add the 1746 written such that it should be trivial to include it. To do so add the
1747 following two lines to the syntax coloring file for that language 1747 following two lines to the syntax coloring file for that language
1748 (the example comes from the asp.vim file): 1748 (the example comes from the asp.vim file):
1749 1749 >
1750 runtime! syntax/html.vim 1750 runtime! syntax/html.vim
1751 syn cluster htmlPreproc add=asp 1751 syn cluster htmlPreproc add=asp
1752 1752
1753 Now you just need to make sure that you add all regions that contain 1753 Now you just need to make sure that you add all regions that contain
1754 the preprocessor language to the cluster htmlPreproc. 1754 the preprocessor language to the cluster htmlPreproc.