Closed gsalvatella closed 2 years ago
Have the same issue in nvim v0.9.0
I had the same issue and realised I forgot to add:
require("symbols-outline").setup()
I can confirm that the problem is the new configuration. This is a breaking change from August that should have been notified properly.
@gsalvatella, for me it's working now, I forgot to call the setup method
had this code in my config file
local status_ok, outline = pcall(require, "symbols_outline")
if status_ok then return end
it's working now with the code that @farbodsz suggested
@arthur-yatsun The setup
method was introduced on August. Before that simple vim
globals were used, but these are not working anymore. So even if you had it correctly set up you need to update to the new setup
method. I'm closing the issue anyways.
The following error shows up when issuing
:SymbolsOutlineOpen
in vim 0.8.0: