You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# React Snippets for Visual Studio Code
2
2
3
-
Extension for Visual Studio Code to add snippets for React in ECMA Script 6.
3
+
Extension for Visual Studio Code to add snippets for React in ECMAScript 6.
4
4
5
5

6
6
@@ -52,6 +52,8 @@ u-action // Redux action
52
52
u-it // Jest test `it`
53
53
u-desc // Jest test `describe`
54
54
u-suite // Jest test suite (including import statements)
55
+
u-afterEach // Jest afterEach function
56
+
u-beforeEach // Jest beforeEach function
55
57
```
56
58
57
59
## Installation
@@ -65,3 +67,8 @@ Can also be installed using
65
67
```bash
66
68
ext install uruit-react-snippets
67
69
```
70
+
71
+
## Troubleshooting
72
+
If the snippets prefixes do not show up when typing them, make sure you have the tab-completion enabled in your settings: `"editor.tabCompletion": true`.
73
+
74
+
Alternatively, you can choose *Insert Snippet* in the Command Palette (`Cmd+Shift+P` on Mac, `Ctrl+Shift+P` on Windows or Linux).
0 commit comments