From 79eb1505f4101aeff7e763e6df131e3fde8bb07e Mon Sep 17 00:00:00 2001 From: Subhaditya Nath Date: Thu, 16 Mar 2023 15:11:41 +0530 Subject: [PATCH] [BUGFIX] _do_close forgot to do its task, again. --- binary.py | 1 + 1 file changed, 1 insertion(+) diff --git a/binary.py b/binary.py index 22b7a35..7955e5e 100644 --- a/binary.py +++ b/binary.py @@ -419,6 +419,7 @@ def _trigger_autocmds(self, url: str): self.neovim_handle.command(f"doau nvim_ghost_user_autocommands User {url}") def _do_close(self): + self.close() log( "Websocket", ":".join([str(_) for _ in self.address]),