annotate runtime/ftplugin/tt2html.vim @ 20255:aac52c32a91f
v8.2.0683
patch 8.2.0683: Vim9: parsing type does not always work
Commit: https://github.com/vim/vim/commit/5adc55cb746893c6ddf7865ff654582902dee2e3
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 2 23:12:58 2020 +0200
patch 8.2.0683: Vim9: parsing type does not always work
Problem: Vim9: parsing type does not always work.
Solution: Handle func type without return value. Test more closures.
Fix type check offset. Fix garbage collection.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 02 May 2020 23:15:03 +0200 |
parents |
42bf9264e64e |
children |
d1fe80fb35e6 |
rev |
line source |
5239
|
1 " Language: TT2 embedded with HTML
|
|
2 " Maintainer: vim-perl <vim-perl@googlegroups.com>
|
|
3 " Homepage: http://github.com/vim-perl/vim-perl
|
|
4 " Bugs/requests: http://github.com/vim-perl/vim-perl/issues
|
5277
|
5 " Last Change: 2013-07-21
|
5239
|
6
|
|
7 " Only do this when not done yet for this buffer
|
|
8 if exists("b:did_ftplugin")
|
|
9 finish
|
|
10 endif
|
|
11
|
|
12 " Just use the HTML plugin for now.
|
|
13 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim
|