1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-18 11:11:34 +03:00

Use .userInteractive for MsgpackRpc since we now use neovim's official UI API

This commit is contained in:
Tae Won Ha 2023-11-23 21:44:44 +01:00
parent 6612ba271f
commit ae101d0d84
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -66,5 +66,5 @@ public final class RxNeovimApi {
public init() {} public init() {}
private let msgpackRpc = RxMsgpackRpc(queueQos: .userInitiated) private let msgpackRpc = RxMsgpackRpc(queueQos: .userInteractive)
} }