We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f67d02 commit d18e45eCopy full SHA for d18e45e
rplugin/python3/acid/handlers/meta_repl.py
@@ -80,7 +80,7 @@ class Handler(SingletonHandler):
80
81
def ensure_win_exists(self):
82
no_shared_buffer = self.buf_nr is None
83
- has_no_window = self.nvim.funcs.bufwinnr(self.buf_nr) == -1
+ has_no_window = no_shared_buffer or self.nvim.funcs.bufwinnr(self.buf_nr) == -1
84
85
log_debug("buf_nr is {}", self.buf_nr)
86
log_debug("has window? {}", has_no_window)
0 commit comments