Open vitaly opened 2 years ago
I second this request. Also:
As a workaround, i use something like this.
keys= {
{
"<leader>cs",
function()
local symbols = require("symbols-outline")
symbols.open_outline()
vim.fn.win_gotoid(symbols.view.winnr)
end,
desc = "Symbols Outline",
}
}
Hi, for the time being (where simrat39 is not very active) I'm maintaining a fork where I've implemented this feature and merged some other PRs -- see the SymbolsOutlineFocus*
commands in the readme.
Also note on the fork status in the readme, feel free to try it if you really want this feature but do proceed with caution.
I'd like to be able to get into the symbol outline panel using keyboard.
currently, if it's already open, I need to hit my keymap for
SymbolsOutline
twice. first time will close it, and second time will open and focus it.