aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--desktop/sources/index.html1
-rw-r--r--desktop/sources/scripts/commander.js4
2 files changed, 3 insertions, 2 deletions
diff --git a/desktop/sources/index.html b/desktop/sources/index.html
index c984cd7..7437182 100644
--- a/desktop/sources/index.html
+++ b/desktop/sources/index.html
@@ -35,6 +35,7 @@
terminal.controller.add("default","Edit","Paste Selection",() => { terminal.cursor.paste() },"CmdOrCtrl+V")
terminal.controller.add("default","Edit","Toggle Insert Mode",() => { terminal.cursor.toggleMode(1) },"CmdOrCtrl+I")
terminal.controller.add("default","Edit","Block Comment",() => { terminal.cursor.comment() },"CmdOrCtrl+/")
+ terminal.controller.add("default","Edit","Goto",() => { terminal.commander.start('goto:') },"/")
terminal.controller.add("default","Edit","Undo",() => { terminal.history.undo() },"CmdOrCtrl+Z")
terminal.controller.add("default","Edit","Redo",() => { terminal.history.redo() },"CmdOrCtrl+Shift+Z")
diff --git a/desktop/sources/scripts/commander.js b/desktop/sources/scripts/commander.js
index 5657fc1..2b72011 100644
--- a/desktop/sources/scripts/commander.js
+++ b/desktop/sources/scripts/commander.js
@@ -6,9 +6,9 @@ function Commander (terminal) {
this.isActive = false
this.query = ''
- this.start = function () {
+ this.start = function (q = '') {
this.isActive = true
- this.query = ''
+ this.query = q
terminal.update()
}