From 6e8aab961694fad6cb36808bce3179ae8fadb831 Mon Sep 17 00:00:00 2001 From: lishid Date: Thu, 29 Oct 2020 18:02:57 -0400 Subject: [PATCH] Add more examples for hooks. --- main.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/main.ts b/main.ts index 82b60e5..e99ff78 100644 --- a/main.ts +++ b/main.ts @@ -35,8 +35,14 @@ export default class MyPlugin extends Plugin { this.addSettingTab(new SampleSettingTab(this.app, this)); this.registerEvent(this.app.on('codemirror', (cm: CodeMirror.Editor) => { - // Modify CodeMirror here... + console.log('codemirror', cm); })); + + this.registerDomEvent(document, 'click', (evt: MouseEvent) => { + console.log('click', evt); + }); + + this.registerInterval(window.setInterval(() => console.log('setInterval'), 5 * 60 * 1000)); } onunload() {