We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36b6e3 commit 9629e82Copy full SHA for 9629e82
RetailCoder.VBE/Root/RubberduckModule.cs
@@ -80,6 +80,8 @@ public override void Load()
80
81
Rebind<IIndenter>().To<Indenter>().InSingletonScope();
82
Rebind<IIndenterSettings>().To<IndenterSettings>();
83
+ Bind<Func<IIndenterSettings>>().ToMethod(t => () => _kernel.Get<IGeneralConfigService>().LoadConfiguration().UserSettings.IndenterSettings);
84
+
85
Bind<TestExplorerModelBase>().To<StandardModuleTestExplorerModel>().InSingletonScope();
86
Rebind<IRubberduckParser>().To<RubberduckParser>().InSingletonScope();
87
0 commit comments