aboutsummaryrefslogtreecommitdiff
path: root/src/command/commands.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/commands.js')
-rw-r--r--src/command/commands.js36
1 files changed, 20 insertions, 16 deletions
diff --git a/src/command/commands.js b/src/command/commands.js
index fce509a..0855e3a 100644
--- a/src/command/commands.js
+++ b/src/command/commands.js
@@ -34,22 +34,6 @@ function exec(output, args) {
}
}
-function jump(output, index) {
- terminalList.selectItem(index);
-}
-
-function kill(output, index) {
- terminalList.get(index).reset();
-}
-
-function next() {
- terminalList.selectNext();
-}
-
-function prev() {
- terminalList.selectPrev();
-}
-
function ls(output) {
terminalList.iterate(function(item) {
if ( item.terminal !== null ) {
@@ -74,3 +58,23 @@ function set(output, args) {
}
}
}
+
+function jump(output, index) {
+ terminalList.selectItem(index);
+}
+
+function kill(output, index) {
+ terminalList.get(index).reset();
+}
+
+function next() {
+ terminalList.selectNext();
+}
+
+function prev() {
+ terminalList.selectPrev();
+}
+
+function q() {
+ Qt.quit();
+}