Last active
May 29, 2024 23:30
-
-
Save kdmsnr/532d482a56bdaffdf659b4bddb2b6153 to your computer and use it in GitHub Desktop.
obsidianでTODO.mdを左のアイコンから開きたい
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { App, Plugin, Notice } from 'obsidian'; | |
export default class MySidebarPlugin extends Plugin { | |
async onload() { | |
this.addRibbonIcon('checkmark', 'Open TODO Page', async () => { | |
const file = this.app.vault.getAbstractFileByPath('TODO.md'); | |
if (file) { | |
this.app.workspace.getLeaf().openFile(file); | |
} else { | |
new Notice('File not found'); | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment