Skip to content

Commit

Permalink
Take David's remarks on VSCode into account (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle authored Jul 5, 2024
1 parent 51ddf9f commit 0dca822
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion sharing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ For interactive testing work, use [TestEnv.jl](https://github.com/JuliaTesting/T
\vscode{

The Julia extension also has its own testing framework, which relies on sprinkling "test items" throughout the code.
See [TestItemRunner.jl](https://github.com/julia-vscode/TestItemRunner.jl) and [ReTestItems.jl](https://github.com/JuliaTesting/ReTestItems.jl) for indications on how to use them optimally.
See [TestItemRunner.jl](https://github.com/julia-vscode/TestItemRunner.jl) for indications on how to use them optimally.

}

Expand All @@ -108,6 +108,7 @@ If you want to have more control over your tests, you can try
* [ReTest.jl](https://github.com/JuliaTesting/ReTest.jl) to define tests next to the source code and control their execution.
* [TestSetExtensions.jl](https://github.com/ssfrr/TestSetExtensions.jl) to make test set outputs more readable.
* [TestReadme.jl](https://github.com/thchr/TestReadme.jl) to test whatever code samples are in your README.
* [ReTestItems.jl](https://github.com/JuliaTesting/ReTestItems.jl) for an alternative take on VSCode's test item framework.

}

Expand Down
5 changes: 3 additions & 2 deletions writing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ julia> IJulia.notebook()

\vscode{

Jupyter notebooks can be modified and run directly from your editor.
Jupyter notebooks can be opened, modified and run directly from the editor.
Thanks to the Julia extension, you don't even need to install IJulia.jl or Jupyter first.

}

Expand Down Expand Up @@ -649,7 +650,7 @@ About to run: (^)(2, 64)

\vscode{

Debugger.jl also has a nice [graphical interface](https://www.julia-vscode.org/docs/stable/userguide/debugging/).
VSCode offers a nice [graphical interface for debugging](https://www.julia-vscode.org/docs/stable/userguide/debugging/).
Click left of a line number in an editor pane to add a _breakpoint_, which is represented by a red circle.
In the debugging pane of the Julia extension, click `Run and Debug` to start the debugger.
The program will automatically halt when it hits a breakpoint.
Expand Down

0 comments on commit 0dca822

Please sign in to comment.