You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Treat `Dict` from nvim --api-info as `Dictionary`
It looks like neovim 0.11 will rename the dictionary objects in the api
info from `Dictionary` to `Dict`.
Remove mechanism suppressing exceptions from RPC calls
Instead of calling error with an unhelpful message, simply throw the NeovimException.
The method that has thrown the excpetion has been added to the exception object.
A helper function `catchNeovimException` has been added which is simply
a specialization of the normal `catch`.
The unhelpful error message was a remnant of a refactor which removed
error types from the remote functions because all remote functions can fail.