mirror of
https://github.com/neovim/neovim.git
synced 2024-12-28 14:31:13 -07:00
df17d7844e
Previously, the handler signature was: function(err, method, params, client_id, bufnr, config) In order to better support external plugins that wish to extend the protocol, there is other information which would be advantageous to forward to the client, such as the original params of the request that generated the callback. In order to do this, we would need to break symmetry of the handlers, to add an additional "params" as the 7th argument. Instead, this PR changes the signature of the handlers to: function(err, result, ctx, config) where ctx (the context) includes params, client_id, and bufnr. This also leaves flexibility for future use-cases. BREAKING_CHANGE: changes the signature of the built-in client handlers, requiring updating handler calls |
||
---|---|---|
.. | ||
codelens_spec.lua | ||
diagnostic_spec.lua | ||
handler_spec.lua |