I have very little to complain about [#Obsidian](https://pkm.social/tags/Obsidian). It's a truly remarkable app!

I have very little to complain about #Obsidian. It's a truly remarkable app!

One thing I wish it could do is to automatically rename links when their name is changed *outside of the app*. I realise this probably isn't possible, but it'd be nice if it was.

I use the auto link renamer plugin, and it works well, but sometimes I like to bulk rename files in the Finder, and this breaks all the links associated with them.

Unless there's a way to bulk rename files *inside* Obsidian?

@obsidianmd

2 points · 4 comments · view on lemmy.world

4 Comments

dgreenbhm@me.dm · 1 pts · 2y

@ellane @obsidianmd
There is a Bulk Rename plugin. obsidian://show-plugin?id=obsidian-bulk-rename-plugin

EpiphanicSynchronicity@pkm.social · 1 pts · 2y (1 reply)

@ellane @obsidianmd I don’t see an auto link renamer plugin in the repo 🤔

ianlhayes@pkm.social · 1 pts · 2y

@EpiphanicSynchronicity @ellane @obsidianmd Sounds like a useful plugin though!

astrophoenix@pkm.social · 1 pts · 2y

@ellane @obsidianmd my obligatory “I change the links on the command line with perl” post
find . -name \*.md -print0 |xargs -0 perl -p -i -e 's/\[\[old name\]\]/[[new name|alias]]/‘
you can leave out “|alias" if not needed.