Skip to content

Commit 8df8338

Browse files
committed
added missing videos
1 parent 0abd88c commit 8df8338

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

howtousevscode.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,9 @@ ms-vscode.cpptools-extension-pack
1111
ms-python.python
1212
```
1313

14-
Other useful extensions, recommended but not necessary are
15-
- ```gruntfuggly.todo-tree```: Scans all the files and reports where particular keywords appear. For example `TODO`, `FIXME`, `BUG`...
16-
17-
- ```mhutchie.git-graph```: Helps visualize git commits and branches.
18-
19-
- ```donjayamanne.githistory```: Adds two buttons to the right-click menu: `git: view file history` and `git: view line history`
20-
21-
2214
## Configure CMake
2315

24-
![](images/configure.gif)
16+
<video autoplay muted playsinline loop src="images/configure.mp4" type="video/mp4"></video>
2517

2618
First on the bottom left corner, in the status bar, select the build type. Options are:
2719
- debug
@@ -37,7 +29,7 @@ You will have to do this when you select a new configutation never used before.
3729

3830
## First build
3931

40-
![](images/build.gif)
32+
<video autoplay muted playsinline loop src="images/build.mp4" type="video/mp4"></video>
4133

4234
Press `Ctrl + P` and write `task ` again (don't forget the space!)
4335

@@ -49,7 +41,8 @@ Note that if you change configuration in the step above you will have to build a
4941

5042
## Launching the built executable and debugging
5143

52-
![](images/launch_debug.gif)
44+
<video autoplay muted playsinline loop src="images/launch_debug.mp4" type="video/mp4"></video>
45+
5346

5447
On the left panel go to the debug section and click the little green play button. Alternatively press `F5`. Every time you launch the executable a build is triggered, to ensure all the latest changes you made to the code are compiled in.
5548

@@ -72,7 +65,7 @@ To debug please refer to the [documentation](https://code.visualstudio.com/docs/
7265

7366
## Running tests
7467

75-
![](images/testing.gif)
68+
<video autoplay muted playsinline loop src="images/testing.mp4" type="video/mp4"></video>
7669

7770
The IDE supports running FreeCAD tests as well. On the left panel go to the testing section and click the play button. A build takes place and then all the tests are run and results reported.
7871

@@ -111,10 +104,16 @@ Read the documentation for more:
111104
- [code navigaton](https://code.visualstudio.com/docs/editor/editingevolved)
112105
- [refactoring](https://code.visualstudio.com/docs/editor/refactoring)
113106

114-
Screenshot of the extensions recommended in the begining:
107+
Other useful extensions, recommended but not necessary are
108+
- ```gruntfuggly.todo-tree```: Scans all the files and reports where particular keywords appear. For example `TODO`, `FIXME`, `BUG`...
109+
110+
- ```mhutchie.git-graph```: Helps visualize git commits and branches.
111+
112+
- ```donjayamanne.githistory```: Adds two buttons to the right-click menu: `git: view file history` and `git: view line history`
113+
115114

116115
![](images/extensions.png)
117116

118117
- On the very left you can see the `Todo-Tree` extension reporting `TODO`s and `FIXME`
119118
- On the left half you can see the `git graph` extension showing all the commits on different branches. You can click a commit to see exactly what was modified by it.
120-
- On the right half you can see the `git history` of the DocumentObject.cpp file.
119+
- On the right half you can see the `git history` of the DocumentObject.cpp file.

images/build.mp4

951 KB
Binary file not shown.

images/configure.mp4

1.57 MB
Binary file not shown.

images/launch_debug.mp4

3.12 MB
Binary file not shown.

images/testing.mp4

1.06 MB
Binary file not shown.

0 commit comments

Comments
 (0)