https://github.com/omar-dulaimi/breakpoint-bookmarks
A vsCode extension that lets you bookmark all your different breakpoints into separate files, and activate them as needed
https://github.com/omar-dulaimi/breakpoint-bookmarks
bookmarks breakpoints vscode vscode-extension
Last synced: about 1 year ago
JSON representation
A vsCode extension that lets you bookmark all your different breakpoints into separate files, and activate them as needed
- Host: GitHub
- URL: https://github.com/omar-dulaimi/breakpoint-bookmarks
- Owner: omar-dulaimi
- License: mit
- Created: 2022-03-21T10:32:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-27T13:10:49.000Z (about 2 years ago)
- Last Synced: 2025-04-10T21:11:37.097Z (about 1 year ago)
- Topics: bookmarks, breakpoints, vscode, vscode-extension
- Language: TypeScript
- Homepage:
- Size: 1.37 MB
- Stars: 9
- Watchers: 1
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Breakpoint Bookmarks
The Breakpoint Bookmarks extension will help you enhance your debugging workflows, by creating and maintaining separate breakpoints files, and load them as necessary, in their original locations. It supports all language supported by vsCode.
## Installation
Simply run this `ext install OmarDulaimi.breakpoint-bookmarks` in the command palette or search for `Breakpoint Bookmarks` in extensions menu.
## Features
##### 🔍 Import Breakpoints from JSON: Load breakpoints from JSON files.
##### 💾 Export Breakpoints to JSON: Save breakpoints to JSON files.
##### 🗑️ Delete Breakpoints: Remove breakpoints from the current workspace.
##### 🌐 Cross-Language Support: Compatible with all VSCode-supported languages.
##### 🛠️ Basic Breakpoint Management: Simple list view of breakpoints.
##### ⚙️ Configuration: Minimal settings for import/export and others.
## Demos
### Save Current Breakpoints
After setting your breakpoints through your project, open the command palette and run the command `Breakpoint Bookmark: Save Current Breakpoints`. You can find the newly saved breakpoints flow in the extension menu.

### Load A Saved Breakpoint File
Once you have at least one breakpoints flow saved, you can load it by opening the extension menu, then hover to click the icon on the right of the flow you want to load.

## Extension Settings
This extension contributes the following settings:
- `breakpointBookmark.useRelativePaths`: Uses relative paths to save/load breakpoints. Set it to false if you want absolute paths.
- `breakpointBookmark.clearPreviousBreakpoints`: Clears previous active breakpoints when loading a new file.
- `breakpointBookmark.saveLocation`: Specifies the folder path where the breakpoint files will be stored in.