aboutsummaryrefslogtreecommitdiff
path: root/qml/commands.js
diff options
context:
space:
mode:
Diffstat (limited to 'qml/commands.js')
-rw-r--r--qml/commands.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/qml/commands.js b/qml/commands.js
index 7069458..23f0a7f 100644
--- a/qml/commands.js
+++ b/qml/commands.js
@@ -23,8 +23,6 @@ function exec(output, args) {
if ( typeof result !== 'undefined' ) {
output.log(result);
- } else {
- output.log('');
}
}
@@ -32,6 +30,10 @@ function jump(output, index) {
terminalList.selectItem(index);
}
+function kill(output, index) {
+ terminalList.get(index).reset();
+}
+
function next() {
terminalList.selectNext();
}