Multi-Select & Bulk Operations
When you need to reorganize or clean up your vault, multi-select lets you operate on several pages at once instead of one at a time.
Entering Selection Mode
Section titled “Entering Selection Mode”Cmd+click (macOS) or Ctrl+click (Windows/Linux) any page in the sidebar to select it and enter selection mode. The sidebar switches from its normal navigation behavior to a selection interface.
Selecting Pages
Section titled “Selecting Pages”Once in selection mode:
- Cmd/Ctrl+click additional pages to toggle them in or out of the selection.
- Each selected page shows an accent-colored highlight with a checkmark — the normal document icon is replaced by a checkbox to make selected pages visually distinct.
| Action | Shortcut |
|---|---|
| Toggle a page’s selection | Cmd/Ctrl + click |
| Exit selection mode | Escape or click Cancel |
Bulk Action Bar
Section titled “Bulk Action Bar”When one or more pages are selected, a bulk action bar appears at the top of the sidebar. It displays:
- The count of selected pages (e.g., “3 selected”).
- Action buttons for the available bulk operations.
- A Cancel button to exit selection mode.
Available Operations
Section titled “Available Operations”Moves all selected pages to a different folder.
- Click Move in the bulk action bar.
- A dropdown appears listing all folders in your vault.
- Select the target folder.
- All selected pages are moved and their frontmatter
folderfield is updated.
Archive
Section titled “Archive”Archives all selected pages. Archived pages are hidden from the main sidebar view but remain in the vault and are still searchable. You can view archived pages through the Archive filter and unarchive them individually later.
Delete
Section titled “Delete”Permanently deletes all selected pages.
Cancelling Selection
Section titled “Cancelling Selection”To exit selection mode without performing any action:
- Click Cancel in the bulk action bar.
- Press Escape.
The sidebar returns to its normal navigation state and all selections are cleared.
Recovering Deleted Pages
Section titled “Recovering Deleted Pages”Even though bulk delete is permanent from the app’s perspective, Claspt auto-commits all changes to Git. This means deleted pages can be recovered from Git history:
- Open a terminal in your vault directory.
- Use
git log --diff-filter=D --name-onlyto find deleted files. - Restore with
git checkout <commit>^ -- path/to/file.md.