nvim-hs-0.0.6: Haskell plugin backend for neovim

PortabilityGHC
Stabilityexperimental
Maintainerwoozletoff@gmail.com
Safe HaskellNone

Neovim.RPC.Classes

Description

Import this module qualified as MsgpackRPC

Synopsis

Documentation

data Message Source

See https:github.commsgpack-rpcmsgpack-rpcblobmaster/spec.md for details about the msgpack rpc specification.

Constructors

Request Request

Request in the sense of the msgpack rpc specification

Parameters * Message identifier that has to be put in the response to this request * Function name * Function arguments

Response !Int64 (Either Object Object)

Response in the sense of the msgpack rpc specifcation

Parameters * Mesage identifier which matches a request * Either an error Object or a result Object

Notification Notification

Notification in the sense of the msgpack rpc specification