Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,19 @@ let foo (arg: list 'a) => switch arg {
| [_] | [_, _, ..._] => failwith "<case>"
};
```

## FAQ

- How do I enable emmet in ReasonReact files?

Add this in your `settings.json`:
```json
"emmet.includeLanguages": {
"reason": "javascriptreact"
}
```

Plus if it's not already there, consider adding:
```json
"emmet.triggerExpansionOnTab": true,
```