made minor changes to file

I changed the default file creation
This commit is contained in:
wakywayne80@gmail.com 2025-01-09 21:40:38 -05:00
parent 8078a8bc6f
commit 74a210b7ef

View file

@ -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}`);
}