docs: news, lsp autocomplete #33047

This commit is contained in:
Justin M. Keyes
2025-03-26 05:49:48 -07:00
committed by GitHub
parent 6b00c9acfd
commit 8a7e1b19b9
9 changed files with 51 additions and 56 deletions

View File

@@ -6494,7 +6494,9 @@ M.funcs = {
base = 1,
desc = [=[
Evaluate Lua expression {expr} and return its result converted
to Vim data structures. See |lua-eval| for more details.
to Vim data structures. See |lua-eval| for details.
See also |v:lua-call|.
]=],
lua = false,

View File

@@ -518,7 +518,7 @@ void rpc_free(Channel *channel)
api_free_dict(channel->rpc.info);
}
/// Logs a fatal error received from a channel, then closes the channel.
/// Closes a channel after receiving fatal error, and logs a message.
static void chan_close_on_err(Channel *channel, char *msg, int loglevel)
{
for (size_t i = 0; i < kv_size(channel->rpc.call_stack); i++) {