1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00
This commit is contained in:
Tae Won Ha 2020-12-06 09:19:34 +01:00
parent c6ad5d0550
commit ae606bb17c
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
2 changed files with 5 additions and 1 deletions

@ -1 +1 @@
Subproject commit 84a62f7f9a2e60b6575e25c706979702dd45f4c4
Subproject commit 043169d790b6886c9c3b3451b16f5712a9cd458c

View File

@ -234,6 +234,10 @@ class UiBridge {
case .autoCommandEvent:
guard let v = MessagePackUtils.value(from: data) else { return }
self.consumer?.autoCommandEvent(v)
case .event:
guard let v = MessagePackUtils.value(from: data) else { return }
Swift.print("got event with \(v)")
case .debug1:
break