We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc21e08 commit 40d9799Copy full SHA for 40d9799
1 file changed
src/Config/SettingsTab.ts
@@ -148,7 +148,12 @@ export class SettingsTab extends PluginSettingTab {
148
);
149
150
// ---------------------------------------------------------------------------
151
- new Setting(containerEl).setName('Includes').setHeading();
+ new Setting(containerEl)
152
+ .setName('Includes')
153
+ .setHeading()
154
+ .setDesc(
155
+ 'You can define named instructions here, that you can re-use in multiple queries. They can be used with "{{includes.name}}" and "include name".',
156
+ );
157
158
this.renderIncludesSettings(containerEl);
159
0 commit comments