All Projects → epilande → vim-es2015-snippets

epilande / vim-es2015-snippets

Licence: other
✂️ ES2015 code snippets for vim

Projects that are alternatives of or similar to vim-es2015-snippets

Wikitext-VSCode-Extension
A Visual Studio Code Extension that provides language support for Wikitext.
Stars: ✭ 50 (+28.21%)
Mutual labels:  snippets
opentype-feature-bundle
Syntax highlighting and snippets for OpenType feature development in TextMate/Sublime Text
Stars: ✭ 35 (-10.26%)
Mutual labels:  snippets
stencil-snippets
An extension to add some snippets on vs code
Stars: ✭ 21 (-46.15%)
Mutual labels:  snippets
network tech
Cisco config syntax and snippets for Sublime Text
Stars: ✭ 82 (+110.26%)
Mutual labels:  snippets
LunarVim
An IDE layer for Neovim with sane defaults. Completely free and community driven.
Stars: ✭ 9,296 (+23735.9%)
Mutual labels:  snippets
ts-nextjs-tailwind-starter
🔋 Next.js + Tailwind CSS + TypeScript starter packed with useful development features
Stars: ✭ 880 (+2156.41%)
Mutual labels:  snippets
macos-snippets
Snip is a lightweight snippets manager app for macOS
Stars: ✭ 238 (+510.26%)
Mutual labels:  snippets
vscode-react-javascript-snippets
Extension for React/Javascript snippets with search supporting ES7+ and babel features
Stars: ✭ 782 (+1905.13%)
Mutual labels:  snippets
flutter-riverpod-snippets
https://marketplace.visualstudio.com/items?itemName=robert-brunhage.flutter-riverpod-snippets
Stars: ✭ 33 (-15.38%)
Mutual labels:  snippets
magnum-tips
Collection of useful snippets for https://magnum.graphics
Stars: ✭ 27 (-30.77%)
Mutual labels:  snippets
competitive-rust-snippets
My Rust snippets for competitive programming
Stars: ✭ 72 (+84.62%)
Mutual labels:  snippets
snippets.nvim
No description or website provided.
Stars: ✭ 30 (-23.08%)
Mutual labels:  snippets
codesnip
A code bank designed with Pascal in mind
Stars: ✭ 62 (+58.97%)
Mutual labels:  snippets
viconf
My (n)Vim config files
Stars: ✭ 18 (-53.85%)
Mutual labels:  snippets
hack-pet
🐰 Managing command snippets for hackers/bug bounty hunters. with pet.
Stars: ✭ 77 (+97.44%)
Mutual labels:  snippets
github markdown snippets
GitHub flavored Markdown with plain'ol HTML knowledge! Boom!
Stars: ✭ 23 (-41.03%)
Mutual labels:  snippets
Password Generator
🔄 Simple password generator class library in C# 6.0, use for generate your own password! 📗
Stars: ✭ 21 (-46.15%)
Mutual labels:  snippets
vue-snippets
Visual Studio Code Syntax Highlighting For Vue3 And Vue2
Stars: ✭ 25 (-35.9%)
Mutual labels:  snippets
Bijou.js
Bijou.js: Useful JavaScript snippets in one simple library
Stars: ✭ 30 (-23.08%)
Mutual labels:  snippets
30-seconds-of-csharp
Short C# code snippets for all your development needs
Stars: ✭ 132 (+238.46%)
Mutual labels:  snippets

Vim ES2015 Snippets

A Vim snippet library for ES2015. You may also want to check out vim-react-snippets.

Requires UltiSnips.

vim-es2015-snippets

Installation

Using vim-plug:

" ES2015 code snippets
Plug 'epilande/vim-es2015-snippets'

" React code snippets (Optional)
Plug 'epilande/vim-react-snippets'

" Ultisnips
Plug 'SirVer/ultisnips'

" Trigger configuration (Optional)
" let g:UltiSnipsExpandTrigger="<C-l>"

Usage

In a JavaScript or JSX file, type a trigger name while in Insert mode, then press Ultisnips trigger key. In my case I have it mapped to <C-l>.

In Insert mode

c=><C-l>

Will expand to

const name = (args) => {
  return ;
};

Check out UltiSnips/javascript.snippets to see all snippets.

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].