Advanced Rename and Delete Handler

by Michael Naumov
5
4
3
2
1
Score: 31/100

Description

The Advanced Rename and Delete Handler plugin takes over rename and delete handling across a vault so links, attachment files and attachment folders stay in sync when notes move or change names. It updates link display text when that text still matches the old file name, leaves custom link text alone and can remove attachments or empty folders left behind after deletion when you enable those options. Shared attachments are never deleted with one note and can be reassigned to another note, with a prompt when priorities do not settle the owner. You can treat endings like .excalidraw.md as attachments instead of notes, limit handling with include and exclude paths and migrate or read settings through a versioned cross plugin API.

Reviews

No reviews yet.

Stats

1
stars
2,060
downloads
0
forks
7
days
0
days
3
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
1
total issues
1
open issues
0
closed issues
70
commits

RequirementsExperimental

  • BRAT plugin

Latest Version

3 days ago

Changelog

  • Behaviour change: rescueAttachmentUsedByMultipleNotesMode now defaults to Prompt. Users who already enabled Should rescue shared attachments are asked which note adopts a tied attachment, instead of the rescue silently stalling.
  • docs(agents): anchor the replayFolderDeletion reference to a symbol, not a line
  • docs(agents): correct the deviation note, and drop the dead field it would have documented
  • test(screenshots-desktop-capture): restore the settings-panel store screenshot
  • test(canvas-partial-write-guard): drop the Cancel-click workaround and fix the race it hid
  • feat: add a manual vault-wide Delete empty folders command
  • feat(rescue): keep a designated attachment unit folder whole on delete
  • feat(rescue): ask which note adopts a tied attachment, instead of stalling

Full Changelog: https://github.com/mnaoumov/obsidian-advanced-rename-and-delete-handler/compare/1.2.0...1.3.0

README file from

Github

Advanced Rename and Delete Handler

Buy Me a Coffee GitHub release GitHub downloads Coverage: 100%

Obsidian updates the links pointing at a note when you rename it, and stops there. The images you pasted into that note stay behind under the old name. Deleting the note leaves them behind entirely, referenced by nothing, in a folder named after something that no longer exists.

This plugin takes over renaming and deleting for the whole vault: links follow the note, the files it owns travel with it, and what a deletion leaves behind is cleaned up on terms you choose.

It is the single owner of that behavior in a vault. Several plugins used to carry their own copy of this handler, and two handlers acting on one rename corrupt links between them. Rather than compete, this plugin checks on load and refuses to run while a plugin that still owns its own handler is installed, naming the ones to update; once they are, it starts on its own.

Demo vault

The documentation is a demo vault. Every feature has a note that explains what it does and why you would want it, with buttons that perform the rename or the deletion and then print the vault as a tree, so you see the effect rather than read a description of it.

Start reading here — it is plain markdown, so it works on GitHub with nothing installed.

A copy of the vault ships with every release. You can access it via any of the following:

  1. Running the Advanced Rename and Delete Handler: Open demo vault command.
  2. Downloading advanced-rename-and-delete-handler-demo-vault.zip from the Releases. It unzips into a single advanced-rename-and-delete-handler-demo-vault-<version> folder.
  3. Browsing its source in demo-vault/ in this repository.

What it does

  • Links follow a renamed or moved note, including the display text of a link that was showing the old file name — while a link somebody gave their own words to is left alone. 01 Renaming a note
  • Attachments travel with the note that owns them, folder and all, when it is renamed or moved to another folder. 01 Renaming a note
  • Deleting a note can clean up after it — the attachments only that note used, and the folder the deletion leaves empty. Off by default, because each option removes something. A Delete empty folders command sweeps the whole vault for the ones already sitting there, left by deletions made before you turned any of this on. 02 Deleting a note
  • An attachment two notes share is never deleted with one of them, and can be moved to the note that still uses it rather than left in a folder belonging to a note that is gone. When several notes could adopt it and your priority list settles nothing, the plugin names them and asks rather than guessing. An attachment that is really a folder — a _files tree, a drawing's sidecar folder — moves whole, when your attachment-location plugin says so. 03 Shared attachments
  • A drawing stored as .excalidraw.md is treated as an attachment, not a note, along with any other ending you add. 04 What counts as a note
  • The plugin can be confined to part of the vault with include and exclude path lists. 05 Limiting the scope

For plugin developers: handing your settings over

A plugin that used to handle renames and deletions itself, and no longer does, can propose the settings it held so a vault keeps behaving the way it did, and can go on reading those settings back afterwards. This plugin owns those settings, so it owns the dialog too: your proposal is shown next to the current values, and the user approves, edits or declines it row by row. Nothing is written unless they press OK.

The API is published through the obsidian-dev-utils cross-plugin registry, which gives you version negotiation, a handle that is revoked when this plugin unloads, and a wait that ends when this plugin loads — rather than a lookup that returns undefined because it ran first.

import { watchPluginApi } from 'obsidian-dev-utils/obsidian/plugin/plugin-api';

const ref = watchPluginApi<AdvancedRenameAndDeleteHandlerApi>({
  apiVersionRange: '^1',
  app: this.app,
  component: this,
  pluginId: 'advanced-rename-and-delete-handler'
});

const api = await ref.whenAvailable();
const result = await api.migrateSettings({
  proposedSettings: {
    shouldHandleRenames: true,
    treatAsAttachmentExtensions: ['.excalidraw.md']
  },
  sourcePluginId: this.manifest.id
});

if (result.isApplied) {
  // Record your own one-shot flag, so the offer is not repeated.
}
  • proposedSettings names only what you held. Every member is optional, and a proposal that matches what this plugin already holds is dropped rather than shown, so a user is never asked about a row that would change nothing.
  • result.isApplied is false when the user cancelled and nothing was written — do NOT record your migration as done in that case. It is true when they approved, and also when the proposal changed nothing and no dialog was needed.
  • The call resolves only once the dialog is closed, so awaiting it is how you learn the answer. Two plugins proposing at once are queued, never stacked.
  • A value of the wrong type is refused rather than written, so a mistake surfaces as an error instead of a corrupted data.json.
  • The settings you may propose are emptyFolderBehavior, excludePaths, includePaths, notePriorities, shouldDeleteConflictingAttachments, shouldHandleDeletions, shouldHandleRenames, shouldRenameAttachmentFiles, shouldRenameAttachmentFolder, shouldRescueSharedAttachments, shouldUpdateFileNameAliases and treatAsAttachmentExtensions.
  • The contract version is 1.1.0 and moves independently of the plugin's own version. Ask for '^1'.
  • If you cannot depend on a library version that has the registry, the same object is on the plugin instance as app.plugins.plugins['advanced-rename-and-delete-handler']?.api — untyped, and null until this plugin has loaded.

Reading the settings back

Handing the settings over does not end your interest in them: the same values drive features of your own that have nothing to do with a rename or a delete. Rather than keeping a shadow copy, read them from here.

All three members are synchronous, so you can call them from a checkCallback(isChecking), a settings row's disabled / visible predicate, or a loop over vault files — none of which can await. Hold the ref, not the API object, and read ref.value each time: it is null before this plugin loads and after it unloads, and correct again on a re-enable.

const ref = watchPluginApi<AdvancedRenameAndDeleteHandlerApi>({
  apiVersionRange: '^1',
  app: this.app,
  component: this,
  pluginId: 'advanced-rename-and-delete-handler'
});

// Inside a `checkCallback`, a `visible` predicate, or a loop over vault files.
const api = ref.value;
if (api && !api.isPathIgnored(file.path) && !api.isTreatedAsAttachment(file.path)) {
  const { emptyFolderBehavior, notePriorities } = api.getSettings();
  // ...
}
  • getSettings() returns all twelve values above as plain data, read live on every call, so there is nothing to invalidate and nothing to subscribe to. The arrays are copies — writing to one changes nothing here.
  • isPathIgnored(path) answers whether this plugin leaves the path alone, per the include and exclude lists.
  • isTreatedAsAttachment(path) answers whether the path names an attachment despite its extension — .excalidraw.md being the case that motivated the setting.
  • Use the two predicates rather than re-matching the arrays yourself. Every plugin bundles its own copy of obsidian-dev-utils, so running the lists through your copy of the matching code is two copies that can drift apart; asking here keeps the matching in one place.
  • These arrived in contract 1.1.0. That is purely additive, so '^1' still gets you them — but a vault running an older release will hand you an API without them, which is what watchPluginApi's shape check is for.

Installation

The plugin is not yet listed in the official Community Plugins repository. Until it is, install it as a beta release.

Beta versions

To install the latest beta release of this plugin (regardless if it is available in the official Community Plugins repository or not), follow these steps:

  1. Ensure you have the BRAT plugin installed and enabled.
  2. Click Install via BRAT.
  3. An Obsidian pop-up window should appear. In the window, click the Add plugin button once and wait a few seconds for the plugin to install.

Debugging

By default, debug messages for this plugin are hidden.

To show them, run the following command:

window.DEBUG.enable('advanced-rename-and-delete-handler');

For more details, refer to the documentation.

Changelog

All notable changes to this project will be documented in the CHANGELOG.

Contributing

Contributions are welcome — see CONTRIBUTING to get set up.

Support

My other Obsidian resources

See my other Obsidian resources.

License

© Michael Naumov

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
File Cleaner
4 years ago by Johnson0907
A file cleaner plugin for Obsidian.
Janitor
4 years ago by Gabriele Cannata
Performs various maintenance tasks on the Obsidian vault
Attachment Management
3 years ago by trganda
Attachment Management of Obsidian
Note archiver
3 years ago by thenomadlad
Attachment Manager
3 years ago by chenfeicqq
Attachment folder name binding note name, automatically rename, automatically delete, show/hide.
Excalidraw CN
3 years ago by Korbin Zhao
支持中文手写的 Excalidraw Obsidian 插件。A Obsidian plugin of Excalidraw supporting Chinese handwrite font.
Remove Empty Folders
3 years ago by fnya
Remove Empty Folders for Obsidian
Note Folder Autorename
6 years ago by PJ Eby
Obsidian plugin to support folder-overview notes by keeping their folder in sync
Clear Unused Images
5 years ago by Ozan Tellioglu
Obsidian plugin to clear the images that are not used in note files anymore
PDF Paste
2 years ago by Cormac
Move Files
a year ago by Nitish Khurana
Sync-safe file names
10 months ago by j-maas
Ensure your Obsidian files can always be synced across all your devices.
Content-Addressed Attachments
6 months ago by NateScarlet
Stores obsidian attachments using content-based addressing (similar to IPFS)
Markdown Cleaner
4 months ago by gao-qian-long
Obsidian格式化markdown插件
Math+
3 months ago by ocapraro
This is an Obsidian plugin for taking math notes using Excalidraw.
Excalidraw Extras
3 months ago by zsviczian
Companion Obsidian.md plugin hosting extra add-on optional features for the main Excalidraw-Obsidian plugin
Find Orphaned Images
2 months ago by josmarcristello
Find Orphaned Images is an Obsidian plugin designed to help you keep your vault clean and organized by identifying and managing images that are not linked anywhere in your notes.
Attachment Uploader
a month ago by zhuxining
An attachment uploader plugin for Obsidian
Mobile PDF Exporter
a month ago by Murat
One-click selectable preview PDF export plugin for Obsidian mobile and desktop.
Image Manager
a month ago by David V. Kimball
Insert, rename, and sort external images by transforming them into local files within your notes.
Excalidraw Math Plotter
24 days ago by ahmeddawoud3
Plot mathematical function graphs directly onto Excalidraw canvases.
Just Simple Excalidraw
17 days ago by David Hurt
A local-first Excalidraw editor for native .excalidraw files in Obsidian, preserving the original's brilliant simplicity.
Excalink
9 days ago by Aditya Kumar
Excalink is an Obsidian plugin that enables IntelliSense-style autocompletion for groups and named frames inside .excalidraw.md files. When you type [[filename#, it suggests all available frame names, allowing fast, precise linking to parts of your drawings.
Oriko
6 days ago by trevware
A pannable, zoomable wall of your web clippings. Sort them into grids, filter by any property, and clip from your phone. Media is downloaded into your vault, so clippings keep their images and videos even if the source page is deleted.