Keep all panels open #73
Unanswered
yingzhu146
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This sounds like a duplicate of #16 but somehow that solution doesn't work for me or I misunderstood the OP.
OS: MBP 16 M2 Max (Darwin Kernel Version 23.2.0: root:xnu-10002.61.3~2/RELEASE_ARM64_T6031 arm64)
nvim version:
edgy version
config:
{ "folke/edgy.nvim", event = "VeryLazy", keys = { { "<leader>e", function() require("edgy").open() end, desc = "Toggle Edgy", }, }, opts = { exit_when_last = true, close_when_all_hidden = false, right = { { title = "Neo-Tree Buffers", ft = "neo-tree", filter = function(buf) return vim.b[buf].neo_tree_source == "buffers" end, open = "Neotree position=right buffers", pinned = true, size = { height = 0.2 }, }, { pinned = true, title = "Neo-Tree files", ft = "neo-tree", filter = function(buf) return vim.b[buf].neo_tree_source == "filesystem" end, open = "Neotree position=right filesystem", size = { height = 0.5 }, }, { pinned = true, title = "Neo-Tree symbols", ft = "neo-tree", filter = function(buf) return vim.b[buf].neo_tree_source == "document_symbols" end, open = "Neotree position=right document_symbols", size = { height = 0.2 }, }, }, options = { left = { size = 40 }, bottom = { size = 10 }, right = { size = 30 }, top = { size = 10 }, }, animate = { enabled = false, }, wo = { winbar = false, spell = false, signcolumn = "no", }, }, },I'd like Neotree buffers, document_symbols, filesystems to be all open simultaneously
now:

desired
right now opening one will toggle the others.
I'm using
require'edgy'.open("right")to open them - calling this will toggle between the different panels (uncollapsing them successively upon each call)I'm terribly sorry if this is a RTFM and/or misunderstanding of the issue
Beta Was this translation helpful? Give feedback.
All reactions