@dreb/coding-agent 2.30.1 → 2.31.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3103,6 +3103,7 @@ export class InteractiveMode {
3103
3103
  editorPaddingX: this.settingsManager.getEditorPaddingX(),
3104
3104
  autocompleteMaxVisible: this.settingsManager.getAutocompleteMaxVisible(),
3105
3105
  quietStartup: this.settingsManager.getQuietStartup(),
3106
+ autoLoadNestedContext: this.settingsManager.getAutoLoadNestedContext(),
3106
3107
  agentModels: this.settingsManager.getAgentModels(),
3107
3108
  agentNames: agentNames,
3108
3109
  availableModelIds,
@@ -3111,6 +3112,9 @@ export class InteractiveMode {
3111
3112
  this.session.setAutoCompactionEnabled(enabled);
3112
3113
  this.footer.setAutoCompactEnabled(enabled);
3113
3114
  },
3115
+ onAutoLoadNestedContextChange: (enabled) => {
3116
+ this.settingsManager.setAutoLoadNestedContext(enabled);
3117
+ },
3114
3118
  onShowImagesChange: (enabled) => {
3115
3119
  this.settingsManager.setShowImages(enabled);
3116
3120
  for (const child of this.committedChatContainer.children) {