Skip to content

Commit

Permalink
fix: clarify backup after file change setting
Browse files Browse the repository at this point in the history
close #575
  • Loading branch information
Vinzent03 committed Aug 22, 2023
1 parent 32936eb commit 30d12ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setting/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ export class ObsidianGitSettingsTab extends PluginSettingTab {

if (!plugin.settings.setLastSaveToLastCommit)
new Setting(containerEl)
.setName(`Auto Backup after file change`)
.setName(`Auto Backup after stop editing any file`)
.setDesc(
`If turned on, do auto ${commitOrBackup} every ${plugin.settings.autoSaveInterval} minutes after last change. This also prevents auto ${commitOrBackup} while editing a file. If turned off, it's independent from the last change.`
`Requires the ${commitOrBackup} interval not to be 0. If turned on, do auto ${commitOrBackup} every ${plugin.settings.autoSaveInterval} minutes after stop editing any file. This also prevents auto ${commitOrBackup} while editing a file. If turned off, it's independent from the last change.`
)
.addToggle((toggle) =>
toggle
Expand Down

0 comments on commit 30d12ca

Please sign in to comment.