-
-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Description
In order to reproduce the issue:
1. Install the plugin
2. Install folke/snacks.nvim
3. Run `Snacks.explorer()`
Current config, as taken from the docs, works fine with neo-tree:
local ignore_filetypes = {
"neo-tree",
"neo-tree-popup",
"notify",
"TelescopePrompt",
"snacks_picker_list",
"snacks_picker_input",
}
vim.api.nvim_create_autocmd("FileType", {
group = augroup,
callback = function(_)
if vim.tbl_contains(ignore_filetypes, vim.bo.filetype) then
vim.b.focus_disable = true
else
vim.b.focus_disable = false
end
end,
desc = "Disable focus autoresize for FileType",
})Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels