Events documentation

Hi, I’m looking for some docs on events besides Events | Obsidian Plugin Developer Docs and https://github.com/obsidianmd/obsidian-api/blob/master/obsidian.d.ts

I want to learn which events are available in which context with specific attention to the events I can listen to to make sure that a note is processed (and modified) by my plugin following a modification by the user.

Any resource can be really useful to me

7 Likes

Hello!

From Obsidian’s d.ts file we can see that Obsidian offers the following events: create, modify, delete, rename, closed.

As Typescript developers we should be used to working with such files, but it’s not ideal. I agree that describing them or at least mentioning them in the documentation would make the development more pleasant.