summaryrefslogtreecommitdiff
path: root/src/jsMain/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'src/jsMain/kotlin')
-rw-r--r--src/jsMain/kotlin/moe/nea89/website/KConsole.kt18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/jsMain/kotlin/moe/nea89/website/KConsole.kt b/src/jsMain/kotlin/moe/nea89/website/KConsole.kt
index 3c5fad1..7cf7d6c 100644
--- a/src/jsMain/kotlin/moe/nea89/website/KConsole.kt
+++ b/src/jsMain/kotlin/moe/nea89/website/KConsole.kt
@@ -1,5 +1,6 @@
package moe.nea89.website
+import kotlinx.browser.window
import kotlinx.browser.document
import kotlinx.dom.addClass
import kotlinx.html.InputType
@@ -178,7 +179,10 @@ class KConsole(
}
fun keydown(event: KeyboardEvent) {
- if (event.altKey || event.ctrlKey || event.metaKey) return
+ if (event.altKey || event.metaKey) return
+ if (event.ctrlKey) {
+ handleControlDown(event); return
+ }
if (event.isComposing) return
if (state != ConsoleState.SHELLPROMPT) return
if (justHandledInput) {
@@ -209,3 +213,15 @@ class KConsole(
scrollDown()
}
}
+fun handleControlDown(event: KeyboardEvent){
+ if (event.key == "v"){
+ window.navigator.clipboard.readText().then{
+ input += it
+ event.preventDefault()
+ rerender()
+ scrollDown()
+ }
+
+ }
+ }
+}