a=["yes","yeah","no"]
b=[x for x in a if "y" in x]
semshi explodes:
File "/home/jbiosca/.local/share/nvim/lazy/semshi/rplugin/python3/semshi/visitor.py", line 111, in visit
current_table = self._table_stack.pop()
^^^^^^^^^^^^^^^^^^^^^^^
IndexError: pop from empty list
stack traceback:
[C]: in function '_with'
/usr/share/nvim/runtime/filetype.lua:35: in function </usr/share/nvim/runtime/filetype.lua:10>
when editing a python file with comprehension:
a=["yes","yeah","no"] b=[x for x in a if "y" in x]
semshi explodes:
File "/home/jbiosca/.local/share/nvim/lazy/semshi/rplugin/python3/semshi/visitor.py", line 111, in visit current_table = self._table_stack.pop() ^^^^^^^^^^^^^^^^^^^^^^^ IndexError: pop from empty list stack traceback: [C]: in function '_with' /usr/share/nvim/runtime/filetype.lua:35: in function </usr/share/nvim/runtime/filetype.lua:10>