isRuslan / vim-es6

List of JavaScript ES6 snippets and syntax highlighting for vim.

Home Page:http://www.vim.org/scripts/script.php?script_id=5230

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Write JavaScript ES6 easily with vim.

Install

You need SnipMate or UltiSnips installed.

To install using Vundle:

" add this line to your .vimrc file
Plugin 'isRuslan/vim-es6'

To install using pathogen.vim:

cd ~/.vim/bundle
git clone https://github.com/isRuslan/vim-es6.git

To manual install download zip file:

cd ~/.vim
unzip vim-es6.zip

To checkout the source from repository:

cd ~/.vim/bundle
git clone https://github.com/isRuslan/vim-es6.git

Snippets list

Trigger Result
gfn→ function* name (arg) { yield arg; }
=>→ (arg) => { ... },
class→ class name { constructor () { ...} }
forof→ for (let value of arr) { ... }
im→ import lib from 'Library'
ex→ export default foo

About

List of JavaScript ES6 snippets and syntax highlighting for vim.

http://www.vim.org/scripts/script.php?script_id=5230


Languages

Language:Vim Script 98.7%Language:JavaScript 1.3%