File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -23,21 +23,25 @@ It allows merging them faster with less conflicts and will reduce review time.
2323Every PR should contain a test case that covers the added feature or bug fix.
2424This prevents regressions and makes reviewing the changes easier by proofing correct functionality.
2525
26- Tests for the language grammar providing the syntax highlighting are in [ ` syntaxes/tests ` ] ( syntaxes/tests/ ) .
26+ Tests for the language grammar ( syntax highlighting) are in [ ` syntaxes/tests ` ] ( syntaxes/tests/ ) .
2727They can be run with the following command:
2828```
2929npm run test
3030```
3131
3232### Install a dev version
33- If you'd like to install a development version of the extension, you can run the following:
34- ``` sh
35- npm run install-dev-ext
36- ```
37- > ** Note:** you have to reload the VS Code window if open (run ` >reload window ` from command palette).
33+ If you'd like to install a development version of the extension, follow these steps:
34+ 1 . ``` sh
35+ npm run install-dev-ext
36+ ```
37+ 2 . Reload the VS Code window:
38+ - Open command palette (<kbd >F1</kbd >)
39+ - Run ` >reload window `
40+
41+ > Note: It is not required to uninstall any previous versions.
3842
3943### Compilation and Linting
40- Currently there are no features that rely on typescript .
44+ Currently there are no features that rely on Typescript .
4145Thus there is no need to compile or lint the code during development.
4246
4347<!-- links -->
You can’t perform that action at this time.
0 commit comments