You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/setting/settings.ts
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -532,9 +532,9 @@ export class ObsidianGitSettingsTab extends PluginSettingTab {
532
532
}
533
533
534
534
newSetting(containerEl)
535
-
.setName("Disable notifications")
535
+
.setName("Disable informative notifications")
536
536
.setDesc(
537
-
"Disable notifications for git operations to minimize distraction (refer to status bar for updates). Errors are still shown as notifications even if you enable this setting."
537
+
"Disable informative notifications for git operations to minimize distraction (refer to status bar for updates)."
538
538
)
539
539
.addToggle((toggle)=>
540
540
toggle
@@ -546,6 +546,20 @@ export class ObsidianGitSettingsTab extends PluginSettingTab {
546
546
})
547
547
);
548
548
549
+
newSetting(containerEl)
550
+
.setName("Disable error notifications")
551
+
.setDesc(
552
+
"Disable errror notifications of any kind to minimize distraction (refer to status bar for updates)."
0 commit comments