yajs.vim


Ⅰ. 插件描述

YAJS.vim: Yet Another JavaScript Syntax for Vim

Ⅱ. 基本信息

创建日期:  2012-01-17
使用用户:  1464
Github星:  658
插件作者:  othree

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'othree/vim-javascript-syntax-come-back-be-here'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'othree/vim-javascript-syntax-come-back-be-here'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'othree/vim-javascript-syntax-come-back-be-here'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/othree/yajs.vim

Ⅳ. 文档说明

YAJS: Yet Another JavaScript Syntax

Yet Another JavaScript Syntax file for Vim. Key differences:

For ES.Next features such as decorator, binding operator. Please install es.next.syntax.vim.

Differences from jelera/vim-javascript-syntax

I start a new project instead of sending PR to jelera is because: jelera/vim-javascript-syntax is not so active.
And I want to do lots of changes, including ES6 and other not confirmed standard support.
Also, one of my goals is to produce 100% correct syntax.
But it hurt performance, so I prefer to create a new one instead of merging back.

Installation

Recommend use pathogen or Vundle. Vundle:

Plugin 'othree/yajs.vim'

Performance Issue

yajs.vim is not good on performance. If you are using a slow computer. You might feel lag while moving the cursor. You can try disable cursorline and colorcolumn, or reduce the number of synmaxcol. Another possible solution is change to neovim

If you still want cursor line highlight, some terminal has their built-in support. Ex: iTerm2, Edit Profile -> Colors -> Cursor Colors.

Credits

  • 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 figure out the crazy Vim Regexes)

Reference

JSDoc

Report Issue

Please send issue report to github. Provide sample code to help me debug.

Changes

Version 2.1

  • Update syntax to support latest specs

Version 2.0.1

  • Fix performance issue

Version 2.0

  • Include Mozilla's WebIDL
  • Bug Fix

Version 1.6

  • Bug Fix

License

Vim License

添加新评论