An open API service indexing awesome lists of open source software.

https://github.com/vinliao/fast-arrow

A VSCode snippet to write JS arrow function really fast
https://github.com/vinliao/fast-arrow

vscode-extension vscode-snippets

Last synced: 2 months ago
JSON representation

A VSCode snippet to write JS arrow function really fast

Awesome Lists containing this project

README

        

# Fast arrow
This is a VSCode snippet to write JS arrow function really fast

![gif](https://raw.githubusercontent.com/vinliao/fast-arrow/master/images/faster.gif)

This snippet is supported on
- .js
- .ts
- .vue
- .jsx
- .tsx

## Available snippets
### `fa`
This stands for **f**ast **a**rrow and it will turn to
```
() => {
YOUR_CURSOR_HERE
}
```

### `faa`
This stands for **f**ast **a**rrow **a**rgs and it will turn to
```
(YOUR_CURSOR_HERE) => {

}
```

### `fai`
This stands for **f**ast **a**rrow **i**nline and it will turn to
```
() => {}YOUR_CURSOR_HERE
```

### `far`
This stands for **f**ast **a**rrow **r**esponse and it will turn to
```
response => {
YOUR_CURSOR_HERE
}
```

## Installation
You can find this inside your VSCode's marketplace. Search for the name "fast arrow"