diff options
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/commands.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/command/commands.js b/src/command/commands.js index 07a1f04..732eb5b 100644 --- a/src/command/commands.js +++ b/src/command/commands.js @@ -99,6 +99,10 @@ function kill(output, index) { } } +function reset(output, index) { + terminalList.get(index).reset(); +} + function next() { terminalList.selectNext(); } |