comparison runtime/syntax/mason.vim @ 29150:d1fe80fb35e6

Update runtime files Commit: https://github.com/vim/vim/commit/8c1b8cb2e0b52d0853f85c2096a2f22dbc57a788 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 14 17:41:28 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Tue, 14 Jun 2022 18:45:04 +0200
parents d91cf2e26ef0
children
comparison
equal deleted inserted replaced
29149:b467ffd8824f 29150:d1fe80fb35e6
1 " Vim syntax file 1 " Vim syntax file
2 " Language: Mason (Perl embedded in HTML) 2 " Language: Mason (Perl embedded in HTML)
3 " Maintainer: vim-perl <vim-perl@googlegroups.com> 3 " Maintainer: vim-perl <vim-perl@googlegroups.com>
4 " Homepage: http://github.com/vim-perl/vim-perl/tree/master 4 " Homepage: https://github.com/vim-perl/vim-perl
5 " Bugs/requests: http://github.com/vim-perl/vim-perl/issues 5 " Bugs/requests: https://github.com/vim-perl/vim-perl/issues
6 " Last Change: 2017-09-12 6 " License: Vim License (see :help license)
7 " Contributors: Hinrik Örn Sigurðsson <hinrik.sig@gmail.com> 7 " Last Change: 2021 Oct 10
8 " Andrew Smith <andrewdsmith@yahoo.com> 8 " Contributors: Hinrik Örn Sigurðsson <hinrik.sig@gmail.com>
9 " Andrew Smith <andrewdsmith@yahoo.com>
9 " 10 "
10 " TODO: 11 " TODO:
11 " - Fix <%text> blocks to show HTML tags but ignore Mason tags. 12 " - Fix <%text> blocks to show HTML tags but ignore Mason tags.
12 " 13 "
13 14
72 73
73 " Set up default highlighting. Almost all of this is done in the included 74 " Set up default highlighting. Almost all of this is done in the included
74 " syntax files. 75 " syntax files.
75 hi def link masonDoc Comment 76 hi def link masonDoc Comment
76 hi def link masonPod Comment 77 hi def link masonPod Comment
78 hi def link podOrdinary masonPod
77 hi def link masonPerlComment perlComment 79 hi def link masonPerlComment perlComment
78 80
79 let b:current_syntax = "mason" 81 let b:current_syntax = "mason"
80 82
81 if main_syntax == 'mason' 83 if main_syntax == 'mason'