generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
25 lines (20 loc) · 743 Bytes
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { Plugin, Notice } from 'obsidian';
export default class RevealFilePlugin extends Plugin {
private isToggled: boolean = false;
async onload(): Promise<void> {
this.addRibbonIcon('view', 'Toggle reveal file plugin', this.toggle.bind(this));
this.registerEvent(this.app.workspace.on('file-open', this.revealActiveFileIfToggled.bind(this)));
}
async onunload(): Promise<void> {
console.log('Unloading RevealFilePlugin');
}
private toggle(): void {
new Notice(`File reveal toggle to ${this.isToggled ? 'OFF' : 'ON'}`);
this.isToggled = !this.isToggled;
}
private revealActiveFileIfToggled(): void {
if (this.isToggled) {
(this.app as any).commands.executeCommandById('file-explorer:reveal-active-file');
}
}
}