summary refs log tree commit diff stats
path: root/docs/qmp-commands.txt
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-23 13:41:20 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-01-16 09:15:30 +0100
commitf45fd52cefaf84fab166dd9d25d12b87813f4882 (patch)
tree5641696944bc0d130bbc54e5d0979793e623d29d /docs/qmp-commands.txt
parentd71ca35dfc3da867fc25d2db4beb923b81669e35 (diff)
downloadfocaccia-qemu-f45fd52cefaf84fab166dd9d25d12b87813f4882.tar.gz
focaccia-qemu-f45fd52cefaf84fab166dd9d25d12b87813f4882.zip
qmp-commands: move 'send-key' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs/qmp-commands.txt')
-rw-r--r--docs/qmp-commands.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index 1fe4f40cff..38ccf8405b 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -111,28 +111,6 @@ Notes:
 (2) It's possible to list device properties by running QEMU with the
     "-device DEVICE,\?" command-line argument, where DEVICE is the device's name
 
-send-key
-----------
-
-Send keys to VM.
-
-Arguments:
-
-keys array:
-    - "key": key sequence (a json-array of key union values,
-             union can be number or qcode enum)
-
-- hold-time: time to delay key up events, milliseconds. Defaults to 100
-             (json-int, optional)
-
-Example:
-
--> { "execute": "send-key",
-     "arguments": { "keys": [ { "type": "qcode", "data": "ctrl" },
-                              { "type": "qcode", "data": "alt" },
-                              { "type": "qcode", "data": "delete" } ] } }
-<- { "return": {} }
-
 cpu
 ---