focus opened file in nvim
This commit is contained in:
parent
3e510cead9
commit
988eb3c0a7
2 changed files with 15 additions and 6 deletions
Binary file not shown.
|
@ -2,12 +2,21 @@ vim.g.loaded_netrw = 1
|
||||||
vim.g.loaded_netrwPlugin = 1
|
vim.g.loaded_netrwPlugin = 1
|
||||||
|
|
||||||
require("nvim-tree").setup()
|
require("nvim-tree").setup()
|
||||||
require'nvim-tree'.toggle(false,true)
|
|
||||||
|
|
||||||
--local function open_nvim_tree()
|
local function open_nvim_tree(data)
|
||||||
|
|
||||||
---- open the tree
|
-- buffer is a real file on the disk
|
||||||
--require("nvim-tree.api").tree.open()
|
local real_file = vim.fn.filereadable(data.file) == 1
|
||||||
--end
|
|
||||||
|
|
||||||
--vim.api.nvim_create_autocmd({ "VimEnter" }, { callback = open_nvim_tree })
|
-- buffer is a [No Name]
|
||||||
|
local no_name = data.file == "" and vim.bo[data.buf].buftype == ""
|
||||||
|
|
||||||
|
if not real_file and not no_name then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
-- open the tree, find the file but don't focus it
|
||||||
|
require("nvim-tree.api").tree.toggle({ focus = false, find_file = true, })
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.api.nvim_create_autocmd({ "VimEnter" }, { callback = open_nvim_tree })
|
||||||
|
|
Loading…
Add table
Reference in a new issue