Snippets and Notes#
Snippets/Notes stores reusable developer text locally.
Create a snippet#
- Add a title.
- Choose or enter a language or category.
- Add the reusable content.
- Save and search it later.
Good uses#
- Command examples
- Boilerplate
- Checklists
- Small private notes
- Troubleshooting steps
Sensitive values#
Do not save production credentials in an ordinary snippet. Protected API variables are a better location for supported request credentials.
Export and clipboard#
Review content before copying or exporting. Clipboard managers and synchronized clipboards can retain copied text.
Useful snippet format#
Title: Flutter release checks
Language/category: PowerShell
Content:
flutter clean
flutter pub get
flutter analyze
flutter test
flutter build appbundle --release
Keep sensitive values in a supported protected API variable rather than an ordinary snippet.
