Mercurial > vim
view runtime/syntax/aspperl.vim @ 18650:3aab097c8d26 v8.1.2317
patch 8.1.2317: no test for spell affix file with flag on suffix
Commit: https://github.com/vim/vim/commit/37ff4cf87069e54f991d86df9beff19bfdd15875
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Nov 17 20:10:20 2019 +0100
patch 8.1.2317: no test for spell affix file with flag on suffix
Problem: No test for spell affix file with flag on suffix.
Solution: Add a test case.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 17 Nov 2019 20:15:03 +0100 |
parents | 43efa4f5a8ea |
children |
line wrap: on
line source
" Vim syntax file " Language: Active State's PerlScript (ASP) " Maintainer: Aaron Hope <edh@brioforge.com> " URL: http://nim.dhs.org/~edh/aspperl.vim " Last Change: 2001 May 09 " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif if !exists("main_syntax") let main_syntax = 'perlscript' endif runtime! syntax/html.vim unlet b:current_syntax syn include @AspPerlScript syntax/perl.vim syn cluster htmlPreproc add=AspPerlScriptInsideHtmlTags syn region AspPerlScriptInsideHtmlTags keepend matchgroup=Delimiter start=+<%=\=+ skip=+".*%>.*"+ end=+%>+ contains=@AspPerlScript syn region AspPerlScriptInsideHtmlTags keepend matchgroup=Delimiter start=+<script\s\+language="\=perlscript"\=[^>]*>+ end=+</script>+ contains=@AspPerlScript let b:current_syntax = "aspperl"