From 036c9b9605cddd71aa17c7ab9865eea324b9876b Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Sat, 11 Jul 2020 14:08:29 +0100 Subject: [PATCH] Fix neovim not having the same classes as vim --- python3/vimspector/variables.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python3/vimspector/variables.py b/python3/vimspector/variables.py index d5fc9c2..22444f9 100644 --- a/python3/vimspector/variables.py +++ b/python3/vimspector/variables.py @@ -112,9 +112,8 @@ class Watch: class View: lines: typing.Dict[ int, Expandable ] draw: typing.Callable - buf: vim.Buffer - def __init__( self, win: vim.Window, lines, draw ): + def __init__( self, win, lines, draw ): self.lines = lines self.draw = draw self.buf = win.buffer