From 74a210b7efa169746108a99d28836e46db03089b Mon Sep 17 00:00:00 2001 From: "wakywayne80@gmail.com" Date: Thu, 9 Jan 2025 21:40:38 -0500 Subject: [PATCH] made minor changes to file I changed the default file creation --- main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ts b/main.ts index b9d94a6..3772aed 100644 --- a/main.ts +++ b/main.ts @@ -46,7 +46,7 @@ export default class HotstringsPlugin extends Plugin { // Create the file with a default comment if it doesn't exist await this.app.vault.create( this.hotstringsFile, - `# Add your hotstrings below in the format:\n# trigger~.~{replacement}`, + `#### Add your hotstrings below in the format:\n# trigger~.~{text string that you want}`, ); new Notice(`Hotstrings file created: ${this.hotstringsFile}`); }