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 0b38016 commit 260c0a9Copy full SHA for 260c0a9
src/obsidian/note-splitter-settings-tab.ts
@@ -27,19 +27,6 @@ export default class NoteSplitterSettingsTab extends PluginSettingTab {
27
})
28
);
29
30
- new Setting(containerEl)
31
- .setName("Group name")
32
- .setDesc("The name of the group folder that split notes will be placed in. A timestamp will be added to this name. e.g. group-1702591910")
33
- .addText((text) =>
34
- text
35
- .setValue(this.plugin.settings.groupFolderName)
36
- .onChange(async (value) => {
37
- this.plugin.settings.groupFolderName = value;
38
- await this.plugin.saveSettings();
39
- })
40
- );
41
-
42
43
new Setting(containerEl)
44
.setName("Delimeter")
45
.setDesc("The delimeter to split by")
0 commit comments