Ⅰ. 插件描述
Yet Another TypeScript Syntax: The most advanced TypeScript Syntax Highlighting in VimⅡ. 基本信息
|
Ⅲ. 安装方法
使用Vundle管理器安装
在你的.vimrc下添加:Plugin 'herringtondarkholme/yats-vim'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall
对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。
使用NeoBundle管理器安装
在你的.vimrc下添加:NeoBundle 'herringtondarkholme/yats-vim'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall
使用VimPlug管理器安装
在你的.vimrc下添加:Plug 'herringtondarkholme/yats-vim'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall
使用Pathogen管理器安装
在终端中运行以下命令:cd ~/.vim/bundle
git clone https://github.com/herringtondarkholme/yats.vim
Ⅳ. 文档说明
YATS: Yet Another TypeScript Syntax

Yet Another TypeScript Syntax file for Vim, adapted from YAJS.
Key differences:
- Exuberant Highlighting. The most elaborate or byzatine syntax highlighting for TypeScript.
- Bundled with snippets for UltiSnips!
- Builtin Support for tagbar!
- Use 'typescript' as group name's prefix, not 'typeScript' nor 'TypeScript'. Works great with SyntaxComplete.
- Inherit Web API and DOM keywords from YAJS
- Syntax fold. Fold long code block, semantically!
- Remove old, unused syntax definitions.
Config
let g:yats_host_keyword = 1: configure yats to highlight host specific keywords likeaddEventListener. Default is 1. Set it 0 to turn off highlighting.- Note:
set re=1explicitly in your vimrc. Old regexp engine will incur performance issues for yats and old engine is usually turned on by other plugins.
Credits
- othree, whose YAJS is the most up-to-date js syntax for Vim
- Jose Elera, Enhanced Javascript syntax
- Zhao Yi, Claudio Fleiner, Scott Shattuck (This file is based on their hard work)
- gumnos (From the #vim IRC Channel in Freenode) (Who helped me figured out the crazy Vim Regexes)
License
The same as Vim