Skip to content

Commit 0dca822

Browse files
authored
Take David's remarks on VSCode into account (#107)
1 parent 51ddf9f commit 0dca822

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

sharing/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ For interactive testing work, use [TestEnv.jl](https://github.com/JuliaTesting/T
9696
\vscode{
9797

9898
The Julia extension also has its own testing framework, which relies on sprinkling "test items" throughout the code.
99-
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.
99+
See [TestItemRunner.jl](https://github.com/julia-vscode/TestItemRunner.jl) for indications on how to use them optimally.
100100

101101
}
102102

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

112113
}
113114

writing/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ julia> IJulia.notebook()
240240

241241
\vscode{
242242

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

245246
}
246247

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

650651
\vscode{
651652

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

0 commit comments

Comments
 (0)