mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 19:38:20 +00:00
fix(rpc): break nvim_error_event feedback loop between two nvim instances
In case nvim A sends nvim_error_event to nvim B, it would respond with another nvim_error_event due to unknown request name. Fix this by adding dummy request handler for now.
This commit is contained in:
@@ -947,7 +947,8 @@ def fmt_doxygen_xml_as_vimhelp(filename, target):
|
||||
|
||||
func_doc = "\n".join(split_lines)
|
||||
|
||||
if name.startswith(CONFIG[target]['fn_name_prefix']):
|
||||
if (name.startswith(CONFIG[target]['fn_name_prefix'])
|
||||
and name != "nvim_error_event"):
|
||||
fns_txt[name] = func_doc
|
||||
|
||||
return ('\n\n'.join(list(fns_txt.values())),
|
||||
|
Reference in New Issue
Block a user