mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
Update SettingsTab.ts
This commit is contained in:
parent
8baef8b7f7
commit
07b9b812e2
1 changed files with 4 additions and 0 deletions
|
|
@ -59,6 +59,7 @@ export interface FolderNotesSettings {
|
|||
excludeFolderDefaultSettings: ExcludedFolder;
|
||||
excludePatternDefaultSettings: ExcludePattern;
|
||||
hideCollapsingIcon: boolean;
|
||||
hideCollapsingIconForEmptyFolders: boolean;
|
||||
ignoreAttachmentFolder: boolean;
|
||||
tabManagerEnabled: boolean;
|
||||
deleteFilesAction: 'delete' | 'trash' | 'obsidianTrash';
|
||||
|
|
@ -142,6 +143,7 @@ export const DEFAULT_SETTINGS: FolderNotesSettings = {
|
|||
string: '',
|
||||
hideInSettings: false,
|
||||
detached: false,
|
||||
hideNote: false,
|
||||
},
|
||||
excludePatternDefaultSettings: {
|
||||
type: 'pattern',
|
||||
|
|
@ -157,8 +159,10 @@ export const DEFAULT_SETTINGS: FolderNotesSettings = {
|
|||
string: '',
|
||||
hideInSettings: false,
|
||||
detached: false,
|
||||
hideNote: false,
|
||||
},
|
||||
hideCollapsingIcon: false,
|
||||
hideCollapsingIconForEmptyFolders: false,
|
||||
tabManagerEnabled: true,
|
||||
ignoreAttachmentFolder: true,
|
||||
deleteFilesAction: 'trash',
|
||||
|
|
|
|||
Loading…
Reference in a new issue