Skip to content

Commit

Permalink
Add contributing tips
Browse files Browse the repository at this point in the history
  • Loading branch information
duckdoom4 committed Jul 10, 2024
1 parent 3e3b7b1 commit 8d01b41
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,28 @@ If you want to add new features, please make sure to discuss it in an issue.
5. Make your changes and submit a pull request with `develop` as your target branch
6. Happy coding! 🚀

Tips:

If you're working on syntax features, add the following textmate rule to your vscode `settings.json` file:

```json
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "debug.invalid.illegal.unmatched.renpy",
"settings": {
"foreground": "#f00"
}
},
}
```

This will make any unmatched tokens red.

Use ctrl+alt+shift+i to display the vscode build-in token debug information.

https://regexr.com will be your new best friend.

## Additional Information

### Extension Versions
Expand Down

0 comments on commit 8d01b41

Please sign in to comment.