Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Make s command non-repeatable, oops
Browse files Browse the repository at this point in the history
  • Loading branch information
haltman-at committed Apr 16, 2020
1 parent 5951122 commit 8d120a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/lib/debug/interpreter.js
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,8 @@ class DebugInterpreter {
cmd !== "r" &&
cmd !== "-" &&
cmd !== "t" &&
cmd !== "T"
cmd !== "T" &&
cmd !== "s"
) {
this.lastCommand = cmd;
}
Expand Down

0 comments on commit 8d120a5

Please sign in to comment.