nvim-neo-tree / neo-tree.nvim

Neovim plugin to manage the file system and other tree like structures.
MIT License
3.65k stars 216 forks source link

Config Change Detected pop up as file is opened by telescope #705

Closed jyfzh closed 1 year ago

jyfzh commented 1 year ago

when i open a file with telescope find_files and then put in w in commandline, neo-tree will pop up this

image

if i open a file just use nvim <filename>,it wont happen. i dont like the pop up. Is there any way to disable it.

cseickel commented 1 year ago

That's not from neo-tree, it's from lazy.nvim. It's saying that it detected you changing the neo-tree.lua file (which is correct) and it is therefore reloading the module for you. It is supposed to happen everytime you write the file, unless you disable that feature. None of this has anything to do with neo-tree itself.

It also has nothing to do with telescope. I can't imagine why it wouldn't work when you open the file with nvim <filename> but it does work when you open the file with telescope.

jyfzh commented 1 year ago

thanks, it is my mistake. 😣
it is only related with lazy.nvim 😘