Skip to content

Commit 91e1d3b

Browse files
Update docs/editor/codebasics.md
Co-authored-by: Nick Trogh <[email protected]>
1 parent 4777302 commit 91e1d3b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/editor/codebasics.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,10 @@ For more control over `Auto Save`, open User or Workspace [settings](/docs/getst
9595
* `onWindowChange` - to save files when the focus moves out of the VS Code window.
9696
* `setting(files.autoSaveDelay)`: Configures the delay in milliseconds when `setting(files.autoSave)` is configured to `afterDelay`. The default is 1000 ms.
9797

98-
If you want to customize `Auto Save` features for specific languages or file types, you can do so from your `setting.json` by adding language specific rules. For example, you could disable `Auto Save` for LaTeX files like this:
98+
If you want to customize the `Auto Save` functionality for specific languages or file types, you can do so from the `settings.json` file by adding language-specific rules.
99+
100+
For example, to disable `Auto Save` for LaTeX files:
101+
99102
```json
100103
"[latex]": {
101104
"files.autoSave": "off",

0 commit comments

Comments
 (0)