mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-10 09:24:37 +02:00
fix(edgy): only track other neo-tree windows with a source
This commit is contained in:
parent
25cccb5db8
commit
6efbdabd1b
1 changed files with 8 additions and 1 deletions
|
@ -84,7 +84,14 @@ return {
|
||||||
pinned = true,
|
pinned = true,
|
||||||
open = "Neotree position=top buffers",
|
open = "Neotree position=top buffers",
|
||||||
},
|
},
|
||||||
"neo-tree",
|
{
|
||||||
|
title = "Neo-Tree Other",
|
||||||
|
ft = "neo-tree",
|
||||||
|
filter = function(buf)
|
||||||
|
return vim.b[buf].neo_tree_source ~= nil
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
-- "neo-tree",
|
||||||
},
|
},
|
||||||
keys = {
|
keys = {
|
||||||
-- increase width
|
-- increase width
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue