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
- Host: GitHub
- URL: https://github.com/vinliao/fast-arrow
- Owner: vinliao
- License: mit
- Created: 2019-09-25T04:29:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-08T02:21:53.000Z (over 1 year ago)
- Last Synced: 2025-03-29T09:41:25.745Z (3 months ago)
- Topics: vscode-extension, vscode-snippets
- Homepage: https://marketplace.visualstudio.com/items?itemName=vinliao.fast-arrow
- Size: 1.1 MB
- Stars: 23
- Watchers: 4
- Forks: 7
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Fast arrow
This is a VSCode snippet to write JS arrow function really fast
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"