@dreb/coding-agent 2.1.0 → 2.3.0

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.
@@ -179,7 +179,6 @@ export class InteractiveMode {
179
179
  },
180
180
  });
181
181
  this.ui = new TUI(new ProcessTerminal(), this.settingsManager.getShowHardwareCursor());
182
- this.ui.setClearOnShrink(this.settingsManager.getClearOnShrink());
183
182
  this.headerContainer = new Container();
184
183
  this.chatContainer = new Container();
185
184
  this.pendingMessagesContainer = new Container();
@@ -2834,7 +2833,6 @@ export class InteractiveMode {
2834
2833
  editorPaddingX: this.settingsManager.getEditorPaddingX(),
2835
2834
  autocompleteMaxVisible: this.settingsManager.getAutocompleteMaxVisible(),
2836
2835
  quietStartup: this.settingsManager.getQuietStartup(),
2837
- clearOnShrink: this.settingsManager.getClearOnShrink(),
2838
2836
  }, {
2839
2837
  onAutoCompactChange: (enabled) => {
2840
2838
  this.session.setAutoCompactionEnabled(enabled);
@@ -2929,10 +2927,6 @@ export class InteractiveMode {
2929
2927
  this.editor.setAutocompleteMaxVisible(maxVisible);
2930
2928
  }
2931
2929
  },
2932
- onClearOnShrinkChange: (enabled) => {
2933
- this.settingsManager.setClearOnShrink(enabled);
2934
- this.ui.setClearOnShrink(enabled);
2935
- },
2936
2930
  onCancel: () => {
2937
2931
  done();
2938
2932
  this.ui.requestRender();
@@ -3450,7 +3444,6 @@ export class InteractiveMode {
3450
3444
  this.editor.setAutocompleteMaxVisible?.(autocompleteMaxVisible);
3451
3445
  }
3452
3446
  this.ui.setShowHardwareCursor(this.settingsManager.getShowHardwareCursor());
3453
- this.ui.setClearOnShrink(this.settingsManager.getClearOnShrink());
3454
3447
  this.setupAutocomplete(this.fdPath);
3455
3448
  const runner = this.session.extensionRunner;
3456
3449
  if (runner) {