mirror of
https://github.com/groldsf/obsidian_check_plugin.git
synced 2026-07-22 05:37:48 +00:00
add new field enableAutomaticFileSync: boolean
This commit is contained in:
parent
b4a789f04b
commit
8e089baee4
1 changed files with 2 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ export interface CheckboxSyncPluginSettings {
|
|||
uncheckedSymbols: string[];
|
||||
ignoreSymbols: string[];
|
||||
unknownSymbolPolicy: CheckboxState;
|
||||
enableAutomaticFileSync: boolean;
|
||||
}
|
||||
|
||||
export enum CheckboxState {
|
||||
|
|
@ -20,4 +21,5 @@ export const DEFAULT_SETTINGS: CheckboxSyncPluginSettings = {
|
|||
uncheckedSymbols: [' '],
|
||||
ignoreSymbols: [],
|
||||
unknownSymbolPolicy: CheckboxState.Checked,
|
||||
enableAutomaticFileSync: false,
|
||||
};
|
||||
Loading…
Reference in a new issue