summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/jsMain/kotlin/moe/nea89/website/KConsole.kt9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/jsMain/kotlin/moe/nea89/website/KConsole.kt b/src/jsMain/kotlin/moe/nea89/website/KConsole.kt
index c5850fc..9b073a2 100644
--- a/src/jsMain/kotlin/moe/nea89/website/KConsole.kt
+++ b/src/jsMain/kotlin/moe/nea89/website/KConsole.kt
@@ -31,7 +31,6 @@ class KConsole(
private lateinit var uninjectKeyHandler: () -> Unit
val fileAccessor = fileSystem?.let { FileAccessor(it) }
- var wholecommand = ""
var currenthistory = 0
var commandHistory : Array<String> = emptyArray()
var PS1: KConsole.() -> String = { "$" }
@@ -145,13 +144,9 @@ class KConsole(
return
}
val command = parts[0]
- wholecommand = ""
println("whole command:")
- for (element in parts){
- wholecommand += element + " "
- }
- println(wholecommand)
- commandHistory += wholecommand
+ println(commandLine)
+ commandHistory += commandLine
val arguments = parts.drop(1)
val commandThing = commands[command]