Skip to content

Commit befd129

Browse files
committed
merging finished
2 parents 0288e54 + 1e4f868 commit befd129

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ Let's go ahead and open from the application menu bar at the top `File->New Wind
1414
- Select the newly opened window and do `File->Open... (⌘O)` and navigate to the directory which holds the files you wish to debug.
1515
>Tip: Use ⌘↑ to navigate to the parent directory.
1616
17-
- In the Explorer view project directory should appear as the root of the Workspace. This is crucial so that later in the .json files we can call this as ${workspaceFolder}.
17+
- In the Explorer view project directory should appear as the root of the Workspace. This is important so that later in the .json files we can call this as ${workspaceFolder}.
1818

1919
[**Quick video of creating the following template configuration files**](https://vimeo.com/659664828)
2020

21-
- Open the .c file you wish to debug.
21+
- Open the .c file you wish to debug. `ft_strcat.c` in case of this repo.
2222

2323
- Choose from the top-bar application menu `Terminal -> Run Build Task (⇧⌘B)`.
2424

25-
- From the list of detected tasks select the cogwheel (`Configure task`) from the right hand side of the first task `(C/C++: clang build active file, compiler: /usr/bin/clang)`.
25+
- From the popped up list of detected tasks select the cogwheel (`Configure task`) from the right hand side of the task named `(C/C++: clang build active file, compiler: /usr/bin/clang)`.
2626

27-
- Inside .vscode directory `tasks.json` file should appear with a preconfigured setup.
27+
- Inside .vscode directory (should be inside root of our repo)`tasks.json` file should appear with a preconfigured setup.
2828
**This is one of the two crucial files in debugging with Visual Studio Code. Another one being launch.json**
2929

3030
> Tip: Hover your mouse over the variables for clarifying mouseover texts.
3131

32-
From the file we can notice the `label` for the task; `command` to run, which is our compiler: clang; and the `arguments` to our command.
32+
From the file we can notice the `label` for the task; `command` to run, specifying our compiler: clang; and the `args` list.
3333

34-
- Inside the arguments list we specify our compilation flags and arguments, each divided into a different pair of double quotes whenever our original command would require a whitespace. Observe from the code below.
34+
- Inside the arguments list we specify compilation flags and arguments, enclosed in double quotes and separated by commas and, for the sake of readibility, newlines.
3535

3636
> Tip: Use Control+Spacebar for IntelliSense to see all contextually proper variable names. Navigate your cursor with arrow keys to change context and select an item from the list.
3737
>

0 commit comments

Comments
 (0)