mirror of
https://github.com/neovim/neovim.git
synced 2025-10-12 21:06:13 +00:00
channel: Implement the 'channel_send_call' function
This function is used to send RPC calls to clients. In contrast to `channel_send_event`, this function will block until the client sends a response(But it will continue processing requests from that client). The RPC call stack has a maximum depth of 20.
This commit is contained in:
@@ -341,7 +341,7 @@ String cstr_to_string(const char *str)
|
||||
};
|
||||
}
|
||||
|
||||
static bool object_to_vim(Object obj, typval_T *tv, Error *err)
|
||||
bool object_to_vim(Object obj, typval_T *tv, Error *err)
|
||||
{
|
||||
tv->v_type = VAR_UNKNOWN;
|
||||
tv->v_lock = 0;
|
||||
|
Reference in New Issue
Block a user