No description
Find a file
Gary Ritchie 131af3a9b8
1.0.3
2026-04-03 14:27:57 -06:00
.claude/skills/release-notes Add /release-notes skill for generating user-facing release notes (#32) 2026-04-03 14:23:55 -06:00
.github add FUNDING.yml 2026-03-29 08:30:13 -06:00
reference Remove unneeded permissions prerequisite, fix version bump 2026-03-28 15:21:21 -06:00
src Add merge, replace, and delete actions for array properties (#31) 2026-04-03 12:07:22 -06:00
.editorconfig Initial commit 2026-03-24 19:27:30 -06:00
.gitignore Add .claude/settings.local.json to .gitignore 2026-03-24 21:45:15 -06:00
.npmrc Initial commit 2026-03-24 19:27:30 -06:00
AGENTS.md Trim AGENTS.md to project-specific guidance 2026-03-27 18:02:49 -06:00
CLAUDE.md Rename baseprop references to bulk-properties 2026-03-26 21:57:53 -06:00
esbuild.config.mjs Update ES target from ES6/ES2018 to ES2022 2026-03-27 09:03:18 -06:00
eslint.config.mts Initial commit 2026-03-24 19:27:30 -06:00
LICENSE Fix copyright year to 2026 2026-03-27 13:59:02 -06:00
manifest.json 1.0.3 2026-04-03 14:27:57 -06:00
package-lock.json 1.0.3 2026-04-03 14:27:57 -06:00
package.json 1.0.3 2026-04-03 14:27:57 -06:00
README.md Update README: friendly type names, reorder sections, fix wording (#30) 2026-04-03 10:17:01 -06:00
styles.css Replace comma-separated textarea with pill-style input for multi-value properties (#22) 2026-04-01 19:55:02 -06:00
tsconfig.json Harden error handling, validation, and type strictness 2026-03-28 09:55:09 -06:00
version-bump.mjs Remove unneeded permissions prerequisite, fix version bump 2026-03-28 15:21:21 -06:00
versions.json 1.0.3 2026-04-03 14:27:57 -06:00

Bulk Properties

An Obsidian plugin that lets you bulk edit a property across multiple files in your vault.

This plugin uses a checkbox property (default: selected) to track which files are selected. Check the box on the files you want to edit, run the command, and update a property across all of them at once. Works well with Obsidian Bases, where the selection property can be displayed as a checkbox column.

Note: The plugin operates on all files in the vault that have the selection property checked, not just files visible in a particular Base. Make sure to uncheck the selection property on files you don't want to modify.

Setup

Before using the command, configure the plugin in Settings → Bulk Properties:

  • Selection property — the name of the checkbox property used to mark files as selected (default: selected). Autocompletes from existing vault properties.
  • Properties — add the properties you want to be available for bulk editing, specifying the name and type for each. Property names autocomplete from the vault. Supported types: Aliases, Checkbox, Date, Date & time, List, Number, Tags, Text.
  • Deselect when finished — the default value for the deselect toggle in the bulk edit dialog (default: on).
  • Show selection count in status bar — displays the number of selected files in the status bar (default: on). The count updates automatically as you check or uncheck the selection property. Status bar items are not available on mobile.

Usage

  1. Add the selection property to your notes or Base view.
  2. Check the box on each file you want to bulk edit.
  3. Open the bulk edit dialog from the ribbon icon, the Bulk edit selected files command, or the editor right-click menu.
  4. Review the file checklist — uncheck any files you don't want to modify, or re-check files you do.
  5. Choose a property from the dropdown, enter the new value, and select Update.
  6. Optionally disable Deselect when finished to keep the files selected after the update.

Commands

  • Bulk edit selected files — opens the bulk edit dialog showing all files with the selection property checked. Also available from the editor right-click menu.
  • Deselect all files — unchecks the selection property on every file in the vault that has it checked.
  • Remove selection property from all files — removes the selection property entirely from every file in the vault that has it.

Context menus

  • Editor menu — right-click inside an editor to open the bulk edit dialog.
  • File menu — right-click a markdown file in the file explorer or a Base view to toggle its selection. The menu item reads Select for bulk edit or Deselect for bulk edit based on the file's current state.

Manual Installation

Note

These instructions are for installing and testing the plugin before it is available in the Obsidian Community Plugins list.

Recommended approach is to use the BRAT plugin (available as a Community Plugin) and point it at this repository.

For a fully-manual installation, copy main.js, styles.css, and manifest.json to your vault at .obsidian/plugins/bulk-properties/.