This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{ url: '/spectacles/paris' },{ url: '/spectacles/nantes' },{ url: '/spectacles/brest' }] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # enable code command in zsh terminal | |
| function code { | |
| if [[ $# = 0 ]] | |
| then | |
| open -a "Visual Studio Code" | |
| else | |
| local argPath="$1" | |
| [[ $1 = /* ]] && argPath="$1" || argPath="$PWD/${1#./}" | |
| open -a "Visual Studio Code" "$argPath" | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "ES6 Import": { | |
| "prefix": "xim", | |
| "body": [ | |
| "import { $0 } from '${1}';" | |
| ], | |
| "description": "ES6 Import" | |
| }, | |
| "Initial State Reducer": { | |
| "prefix": "xin", |