-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Create gaming-style save points in VS Code! Save your progress before trying risky experiments, just like in video games.
- Install: Search "Global Save State" in VS Code Extensions
-
Create Save:
Ctrl+Shift+Sโ Enter name โ Done! -
Restore Save:
Ctrl+Alt+Rโ Select save point โ Restored!
- Press
Ctrl+Shift+S(orCmd+Shift+Son Mac) - Enter a descriptive name like "Working login system"
- Press Enter to save
- Press
Ctrl+Alt+R(orCmd+Alt+Ron Mac) - Select the save point you want from the list
- Confirm to restore your project to that state
- โ Before trying experimental code
- โ After completing a working feature
- โ When following tutorials step-by-step
- โ When code is broken or incomplete
Configure the extension by searching "Global Save State" in VS Code settings:
{
"globalSaveState.maxSavePoints": 50,
"globalSaveState.excludePatterns": [
"**/node_modules/**",
"**/.git/**",
"**/dist/**",
"**/build/**"
]
}Q: How is this different from Git? A: Git is for team collaboration and long-term version control. Global Save State is for quick personal checkpoints while experimenting.
Q: Where are save points stored?
A: In .vscode/globalSaveStates.json in your project folder.
Q: Can I use this with Git? A: Yes! They work great together. Use Git for commits, Global Save State for experiments.
Q: What if save points don't work? A: Check that you have write permissions to your project folder and the extension is enabled.
Think of it like video game save points:
- Save before boss fights = Save before difficult features
- Save at checkpoints = Save when features work
- Experiment fearlessly = You can always reload your save!
๐ Found a bug? Report it here
๐ก Have an idea? Suggest it here
Made with โค๏ธ by VKrishna04 for fearless coding
๐ Report Bug โข ๐ก Request Feature โข ๐ฌ Ask Questions
๐ฆ VS Code Marketplace โข โญ GitHub Repository โข ๐ Documentation
"In coding, as in gaming, courage comes from knowing you can always reload your save." ๐ฏ
Happy Coding! ๐
Save before boss fights! Experiment fearlessly!