All Projects → isRuslan → Vim Es6

isRuslan / Vim Es6

List of JavaScript ES6 snippets and syntax highlighting for vim.

Programming Languages

es6
455 projects

Projects that are alternatives of or similar to Vim Es6

Dockerfile.vim
Vim syntax file & snippets for Docker's Dockerfile
Stars: ✭ 645 (+38.71%)
Mutual labels:  snippets, viml
Vim Bufferline
super simple vim plugin to show the list of buffers in the command bar
Stars: ✭ 448 (-3.66%)
Mutual labels:  viml
Todo.txt Vim
Vim plugin for Todo.txt
Stars: ✭ 383 (-17.63%)
Mutual labels:  viml
Javascript Snippets
Short JavaScript code snippets
Stars: ✭ 431 (-7.31%)
Mutual labels:  snippets
Dbext.vim
Provides database access to many dbms (Oracle, Sybase, Microsoft, MySQL, DBI,..)
Stars: ✭ 397 (-14.62%)
Mutual labels:  viml
Vim Ruby Debugger
Vim plugin for debugging Ruby applications (using ruby-debug-ide gem)
Stars: ✭ 434 (-6.67%)
Mutual labels:  viml
Dotfiles
Setup and install scripts for a new machine + dotfiles for various apps. Linux, Mac, and Mac (Amazon specific) branches are included.
Stars: ✭ 382 (-17.85%)
Mutual labels:  snippets
Yunocommit.vim
Y U NO commit after so many writes???
Stars: ✭ 456 (-1.94%)
Mutual labels:  viml
Vscode R
R Extension for Visual Studio Code (execution, snippet, lint, R documantation, R Markdown)
Stars: ✭ 445 (-4.3%)
Mutual labels:  snippets
Dotvim
lean & mean vim distribution
Stars: ✭ 425 (-8.6%)
Mutual labels:  viml
30 Seconds Of Java
Collection of reusable tested Java 11 compatible code snippets that you can understand in 30 seconds or less.
Stars: ✭ 421 (-9.46%)
Mutual labels:  snippets
Sublime Rails Snippets
Sublime Text snippets for the latest Ruby and Rails versions
Stars: ✭ 406 (-12.69%)
Mutual labels:  snippets
Ghcmod Vim
Happy Haskell programming on Vim, powered by ghc-mod
Stars: ✭ 435 (-6.45%)
Mutual labels:  viml
Yankring.vim
Maintains a history of previous yanks, changes and deletes
Stars: ✭ 391 (-15.91%)
Mutual labels:  viml
Wildfire.vim
Smart selection of the closest text object
Stars: ✭ 448 (-3.66%)
Mutual labels:  viml
Vim Sublime
A ready to use minimal Vim (Sublime Text -like) .vimrc configuration
Stars: ✭ 384 (-17.42%)
Mutual labels:  viml
Vim Startify
🔗 The fancy start screen for Vim.
Stars: ✭ 4,479 (+863.23%)
Mutual labels:  viml
Vim Golang
Github mirror of Go vimscripts, synced with main repository
Stars: ✭ 432 (-7.1%)
Mutual labels:  viml
Vim Taskwarrior
vim interface for taskwarrior
Stars: ✭ 456 (-1.94%)
Mutual labels:  viml
Vim Seek
Seek makes navigating long lines effortless, acting like f but taking two characters.
Stars: ✭ 452 (-2.8%)
Mutual labels:  viml

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].