Skip to content

Commit c162caa

Browse files
committed
Fixes for the last merge inaccuracies
1 parent 0b93b5c commit c162caa

File tree

8 files changed

+12
-3
lines changed

8 files changed

+12
-3
lines changed
Binary file not shown.
0 Bytes
Binary file not shown.

src/CSScriptNpp/CSScriptNpp/Config.cs

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ public string GetFileName()
4646
public bool QuickViewAutoRefreshAvailable = false;
4747
public bool NavigateToRawCodeOnDblClickInOutput = false;
4848

49+
public bool ShowOpenInVsAlways = false;
4950
//public bool BuildOnF7 = true;
5051
public bool BreakOnException = false;
52+
public bool ReloadActiveScriptOnRun = true;
5153

5254
public bool UpdateAfterExit = false;
5355
public bool UseTogglingPanelVisibility = true;
@@ -58,9 +60,10 @@ public string GetFileName()
5860
public bool UseRoslynProvider = true;
5961
public bool VbSupportEnabled = true;
6062
public bool RestorePanelsAtStartup = true;
63+
public string UseCustomLauncher = "";
6164
public bool StartRoslynServerAtNppStartup = true;
6265
public bool ImproveWin10ListVeiwRendering = true;
63-
public bool HideDevaultAssemblies = true;
66+
public bool HideDefaultAssemblies = true;
6467
public bool WordWrapInVisualizer = true;
6568
public bool ListManagedProcessesOnly = true;
6669
public bool RunExternalInDebugMode = true;
@@ -137,6 +140,8 @@ public void Save()
137140
SetValue(Section, nameof(DebugPanelInitialTab), DebugPanelInitialTab);
138141
SetValue(Section, nameof(LocalDebug), LocalDebug);
139142
SetValue(Section, nameof(BreakOnException), BreakOnException);
143+
SetValue(Section, nameof(ShowOpenInVsAlways), ShowOpenInVsAlways);
144+
SetValue(Section, nameof(ReloadActiveScriptOnRun), ReloadActiveScriptOnRun);
140145
SetValue(Section, nameof(UpdateAfterExit), UpdateAfterExit);
141146
SetValue(Section, nameof(LastUpdatesCheckDate), LastUpdatesCheckDate);
142147
SetValue(Section, nameof(CheckUpdatesOnStartup), CheckUpdatesOnStartup);
@@ -148,8 +153,9 @@ public void Save()
148153
SetValue(Section, nameof(UseRoslynProvider), UseRoslynProvider);
149154
SetValue(Section, nameof(StartRoslynServerAtNppStartup), StartRoslynServerAtNppStartup);
150155
SetValue(Section, nameof(ImproveWin10ListVeiwRendering), ImproveWin10ListVeiwRendering);
151-
SetValue(Section, nameof(HideDevaultAssemblies), HideDevaultAssemblies);
156+
SetValue(Section, nameof(HideDefaultAssemblies), HideDefaultAssemblies);
152157
SetValue(Section, nameof(RestorePanelsAtStartup), RestorePanelsAtStartup);
158+
SetValue(Section, nameof(UseCustomLauncher), UseCustomLauncher);
153159
SetValue(Section, nameof(UpdateMode), UpdateMode);
154160
SetValue(Section, nameof(VSProjectTemplatePath), VSProjectTemplatePath);
155161
SetValue(Section, nameof(FloatingPanelsWarningAlreadyPropted), FloatingPanelsWarningAlreadyPropted);
@@ -220,6 +226,8 @@ public void Open()
220226
NativeAutoCompletionChecked = GetValue(Section, nameof(NativeAutoCompletionChecked), NativeAutoCompletionChecked);
221227
ReleaseNotesViewedFor = GetValue(Section, nameof(ReleaseNotesViewedFor), ReleaseNotesViewedFor);
222228
BreakOnException = GetValue(Section, nameof(BreakOnException), BreakOnException);
229+
ShowOpenInVsAlways = GetValue(Section, nameof(ShowOpenInVsAlways), ShowOpenInVsAlways);
230+
ReloadActiveScriptOnRun = GetValue(Section, nameof(ReloadActiveScriptOnRun), ReloadActiveScriptOnRun);
223231
UpdateAfterExit = GetValue(Section, nameof(UpdateAfterExit), UpdateAfterExit);
224232
LastUpdatesCheckDate = GetValue(Section, nameof(LastUpdatesCheckDate), LastUpdatesCheckDate);
225233
CheckUpdatesOnStartup = GetValue(Section, nameof(CheckUpdatesOnStartup), CheckUpdatesOnStartup);
@@ -231,8 +239,9 @@ public void Open()
231239
UseRoslynProvider = GetValue(Section, nameof(UseRoslynProvider), UseRoslynProvider);
232240
StartRoslynServerAtNppStartup = GetValue(Section, nameof(StartRoslynServerAtNppStartup), StartRoslynServerAtNppStartup);
233241
RestorePanelsAtStartup = GetValue(Section, nameof(RestorePanelsAtStartup), RestorePanelsAtStartup);
242+
UseCustomLauncher = GetValue(Section, nameof(UseCustomLauncher), UseCustomLauncher);
234243
ImproveWin10ListVeiwRendering = GetValue(Section, nameof(ImproveWin10ListVeiwRendering), ImproveWin10ListVeiwRendering);
235-
HideDevaultAssemblies = GetValue(Section, nameof(HideDevaultAssemblies), HideDevaultAssemblies);
244+
HideDefaultAssemblies = GetValue(Section, nameof(HideDefaultAssemblies), HideDefaultAssemblies);
236245
UpdateMode = GetValue(Section, nameof(UpdateMode), UpdateMode);
237246
VSProjectTemplatePath = GetValue(Section, nameof(VSProjectTemplatePath), VSProjectTemplatePath);
238247
FloatingPanelsWarningAlreadyPropted = GetValue(Section, nameof(FloatingPanelsWarningAlreadyPropted), FloatingPanelsWarningAlreadyPropted);
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)