From ad6773b267e2bbdfc5e049a4bc8ac8b92980270e Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 21 Aug 2015 17:20:58 +0200 Subject: Add `q` command to close _MetaTerm_ in command mode --- src/command/commands.js | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) (limited to 'src/command/commands.js') 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(); +} -- cgit v1.2.3