Skip to content
VKrishna04 edited this page May 28, 2025 · 3 revisions

๐ŸŽฎ Global Save State

Create gaming-style save points in VS Code! Save your progress before trying risky experiments, just like in video games.

๐Ÿš€ Quick Start

  1. Install: Search "Global Save State" in VS Code Extensions
  2. Create Save: Ctrl+Shift+S โ†’ Enter name โ†’ Done!
  3. Restore Save: Ctrl+Alt+R โ†’ Select save point โ†’ Restored!

๐Ÿ“– How to Use

Creating Save Points

  • Press Ctrl+Shift+S (or Cmd+Shift+S on Mac)
  • Enter a descriptive name like "Working login system"
  • Press Enter to save

Restoring Save Points

  • Press Ctrl+Alt+R (or Cmd+Alt+R on Mac)
  • Select the save point you want from the list
  • Confirm to restore your project to that state

When to Save

  • โœ… Before trying experimental code
  • โœ… After completing a working feature
  • โœ… When following tutorials step-by-step
  • โŒ When code is broken or incomplete

โš™๏ธ Settings

Configure the extension by searching "Global Save State" in VS Code settings:

{
    "globalSaveState.maxSavePoints": 50,
    "globalSaveState.excludePatterns": [
        "**/node_modules/**",
        "**/.git/**",
        "**/dist/**",
        "**/build/**"
    ]
}

โ“ FAQ

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.

๐ŸŽฎ Gaming Philosophy

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

๐ŸŽฎ Global Save State

๐Ÿš€ Getting Started

๐Ÿ“– Core Features

โš™๏ธ Configuration

๐ŸŽฏ Advanced

๐Ÿ†˜ Help


๐Ÿ”— Quick Links


๐ŸŽฎ Gaming Mindset

Save before boss fights! Experiment fearlessly!

Clone this wiki locally