From 43d30a6cb67268433a008b2ed36ac61ea67e54a4 Mon Sep 17 00:00:00 2001 From: SebastianMC Date: Wed, 14 Sep 2022 11:33:54 +0200 Subject: [PATCH] Updated description of a plugin setting for clarity --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 14d573b..115032e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -310,7 +310,7 @@ class CustomSortSettingTab extends PluginSettingTab { new Setting(containerEl) .setName('Path to the designated note containing sorting specification') - .setDesc('The YAML front matter of this note will be scanned for sorting specification, in addition to the sortspec.md notes and folder notes') + .setDesc('The YAML front matter of this note will be scanned for sorting specification, in addition to the sortspec.md notes and folder notes. Remember to add the `.md` explicitly here.') .addText(text => text .setPlaceholder('e.g. note.md') .setValue(this.plugin.settings.additionalSortspecFile)