You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select `Run` > `Edit Configurations...` from the top menu.
426
+
select `Run -> Edit Configurations...` from the top menu.
427
427
2. Select `Add new run configuration...` then `Python`.
428
428
{alt='Adding a Run Configuration in PyCharm' .image-with-shadow width="800px" }
429
429
3. In the new popup window, in the `Script path` field select the folder button
@@ -477,7 +477,7 @@ You can access and change user/workspace settings values in a few ways:
477
477
478
478
- Select the `Preferences: Open User Settings` or `Preferences: Open User Settings (JSON)` in the **Command Palette** (via keyboard shortcut `CTRL-SHIFT-P`/`CMD-SHIFT-P`) - for user settings
479
479
- Select the `Preferences: Open Workspace Settings` or `Preferences: Open Workspace Settings (JSON)` in the **Command Palette** (via keyboard shortcut `CTRL-SHIFT-P`/`CMD-SHIFT-P`) - for workspace settings
480
-
- Select the User or Workspace tab in the **Settings editor** (via `File -> Settings` or keyboard shortcut `CTRL-,`/`CMD-,`)
480
+
- Select the User or Workspace tab in the **Settings editor** (via `File -> Preferences -> Settings` on Windows and Linux or `Code -> Settings -> Settings` on Mac OS, or keyboard shortcut `CTRL-,`/`CMD-,`)
481
481
482
482
{alt='Settings editor in VS Code' .image-with-shadow width="1000px" }
Copy file name to clipboardExpand all lines: episodes/15-coding-conventions.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,20 +121,20 @@ You can also control the amount of spaces that the IDE uses to replace one tab c
121
121
### PyCharm
122
122
123
123
By default, PyCharm inserts spaces and uses 4 spaces per tab key.
124
-
You can modify these settings in PyCharm's `Settings`\>`Editor`\>`Code Style`\>`Python`.
124
+
You can modify these settings in PyCharm's `Settings -> Editor -> Code Style -> Python`.
125
125
126
126
{alt='Python code indentation settings in PyCharm' .image-with-shadow width="1000px"}
127
127
128
128
You can also tell the editor to show non-printable characters
129
129
if you are ever unsure what character exactly is being used
130
-
by selecting `Settings` > `Editor` > `General` > `Appearance` then checking "Show whitespaces" option.
130
+
by selecting `Settings -> Editor -> General -> Appearance` then checking "Show whitespaces" option.
131
131
132
132
{alt='Python code whitespace settings in PyCharm' .image-with-shadow width="800px"}
133
133
134
134
### VS Code
135
135
136
136
By default, VS Code inserts spaces and uses 4 spaces per tab key.
137
-
You can modify these settings in VS Code's user or workspace settings (`File -> Settings` then search for `tabSize` and enter the value you want).
137
+
You can modify these settings in VS Code's user or workspace settings (`File -> Preferences -> Settings` on Windows and Linux or `Code -> Settings -> Settings` on Mac OS, then search for `tabSize` and enter the value you want).
138
138
You also need to make sure `Editor: Detect Indentation` field is checked.
139
139
140
140
{alt='Python code whitespace settings in VC Code' .image-with-shadow width="1000px"}
0 commit comments