mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
Update setting descriptions
This commit is contained in:
parent
3d897a1135
commit
1d77169f54
3 changed files with 7 additions and 8 deletions
|
|
@ -69,7 +69,6 @@ function observeFolderTitleMutations(plugin: FolderNotesPlugin) {
|
|||
});
|
||||
|
||||
fileExplorerMutationObserver.observe(document, { childList: true, subtree: true });
|
||||
|
||||
}
|
||||
|
||||
function initializeAllFolderTitles(plugin: FolderNotesPlugin) {
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@ export async function renderFileExplorer(settingsTab: SettingsTab) {
|
|||
|
||||
if (settingsTab.plugin.settings.hideCollapsingIcon) {
|
||||
new Setting(containerEl)
|
||||
.setName('Hide collapse icon also when the attachment folder is in the same folder')
|
||||
.setName('Hide collapse icon also when only the attachment folder is in the same folder')
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
.setValue(settingsTab.plugin.settings.ignoreAttachmentFolder)
|
||||
|
|
@ -184,7 +184,7 @@ export async function renderFileExplorer(settingsTab: SettingsTab) {
|
|||
|
||||
new Setting(containerEl)
|
||||
.setName('Bold the name of folder notes')
|
||||
.setDesc('Make the folder name bold in the file explorer')
|
||||
.setDesc('Make the folder name bold in the file explorer when it has a folder note')
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
.setValue(settingsTab.plugin.settings.boldName)
|
||||
|
|
@ -201,7 +201,7 @@ export async function renderFileExplorer(settingsTab: SettingsTab) {
|
|||
|
||||
new Setting(containerEl)
|
||||
.setName('Cursive the name of folder notes')
|
||||
.setDesc('Make the folder name cursive in the file explorer')
|
||||
.setDesc('Make the folder name cursive in the file explorer when it has a folder note')
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
.setValue(settingsTab.plugin.settings.cursiveName)
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@ export async function renderPath(settingsTab: SettingsTab) {
|
|||
);
|
||||
|
||||
new Setting(containerEl)
|
||||
.setName('Change folder name in the path')
|
||||
.setDesc('Automatically rename a folder name in the path above a note when the folder note is renamed')
|
||||
.setName('Auto update folder name in the path (front matter title plugin only)')
|
||||
.setDesc('Automatically update the folder name in the path when the front matter title plugin is enabled and the title for a folder note is changed in the front matter. This will not change the file name, only the displayed name in the path.')
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
.setValue(settingsTab.plugin.settings.frontMatterTitle.path)
|
||||
|
|
@ -77,7 +77,7 @@ export async function renderPath(settingsTab: SettingsTab) {
|
|||
|
||||
new Setting(containerEl)
|
||||
.setName('Bold folders in the path')
|
||||
.setDesc('Make the folder name bold in the path above a note')
|
||||
.setDesc('Make the folder name bold in the path above a note when it has a folder note')
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
.setValue(settingsTab.plugin.settings.boldNameInPath)
|
||||
|
|
@ -94,7 +94,7 @@ export async function renderPath(settingsTab: SettingsTab) {
|
|||
|
||||
new Setting(containerEl)
|
||||
.setName('Cursive the name of folder notes in the path')
|
||||
.setDesc('Make the folder name cursive in the path above a note')
|
||||
.setDesc('Make the folder name cursive in the path above a note when it has a folder note')
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
.setValue(settingsTab.plugin.settings.cursiveNameInPath)
|
||||
|
|
|
|||
Loading…
Reference in a new issue