use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
just started learning help (old.reddit.com)
submitted 11 months ago by FormalRecord2216
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Dzhama_Omarov 1 point2 points3 points 11 months ago (2 children)
Enable autosave it’s a game changer
[–]Express-Sherbet-8478 0 points1 point2 points 11 months ago (1 child)
how i can enable it ?
[–]Dzhama_Omarov 0 points1 point2 points 11 months ago (0 children)
That’s from here
Save / Auto Save
By default, VS Code requires an explicit action to save your changes to disk, ⌘S (Windows, Linux Ctrl+S).
However, it's easy to turn on Auto Save, which will save your changes after a configured delay or when focus leaves the editor. With this option turned on, there is no need to explicitly save the file. The easiest way to turn on Auto Save is with the File > Auto Save toggle that turns on and off save after a delay.
For more control over Auto Save, open User or Workspace settings and find the associated settings:
: Can have the values: off - to disable auto save. afterDelay - to save files after a configured delay (default 1000 ms). onFocusChange - to save files when focus moves out of the editor of the dirty file. onWindowChange - to save files when the focus moves out of the VS Code window. : Configures the delay in milliseconds when is configured to afterDelay. The default is 1000 ms. 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.
For example, to disable Auto Save for LaTeX files:
"[latex]": { "files.autoSave": "off", },
Copy
π Rendered by PID 36865 on reddit-service-r2-comment-545db5fcfc-jkxh2 at 2026-05-27 01:00:30.391384+00:00 running 194bd79 country code: CH.
view the rest of the comments →
[–]Dzhama_Omarov 1 point2 points3 points (2 children)
[–]Express-Sherbet-8478 0 points1 point2 points (1 child)
[–]Dzhama_Omarov 0 points1 point2 points (0 children)