Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion js/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export class ESP32ToolConsole {
this.allowInput = allowInput;
this.console = null;
this.cancelConnection = null;
// Command history buffer
// Command history buffer — keep in sync with src/console.ts
// (history logic is duplicated there; update both files together)
this.commandHistory = [];
this.historyIndex = -1;
this.currentInput = "";
Expand Down
Loading