We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11fb061 commit 0b8cf82Copy full SHA for 0b8cf82
README.md
@@ -37,3 +37,4 @@ To checkout the source from repository:
37
| `class→` | `class name { constructor () { ...} }` |
38
| `forof→` | `for (let value of arr) { ... }` |
39
| `im→` | `import lib from 'Library'` |
40
+| `ex→` | `export default foo` |
UltiSnips/javascript.snippets
@@ -35,3 +35,8 @@ endsnippet
35
snippet im
36
import ${1:foo} from '${2:bar}'
endsnippet
+
+# Export
+snippet ex
41
+export ${1:default} ${2:bar}
42
+endsnippet
snippets/javascript.snippets
@@ -31,3 +31,7 @@ snippet forof
31
32
33
34
+ export ${1:default} ${2:bar}
0 commit comments