File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ should you!
30
30
- Neo-tree won't let other buffers take over it's window.
31
31
- Neo-tree won't leave it's window scrolled to the last line when there is
32
32
plenty of room to display the whole tree.
33
- - Neo-tree does not need to be manually refreshed
33
+ - Neo-tree does not need to be manually refreshed (set ` use_libuv_file_watcher=true ` )
34
34
- Neo-tree can intelligently follow the current file (set ` follow_current_file=true ` )
35
35
- Neo-tree is thoughtful about maintaining or setting focus on the right node
36
36
- Neo-tree windows in different tabs are completely separate
@@ -158,6 +158,8 @@ use {
158
158
-- "open_current", -- netrw disabled, opening a directory opens within the
159
159
-- window like netrw would, regardless of window.position
160
160
-- "disabled", -- netrw left alone, neo-tree does not handle opening dirs
161
+ use_libuv_file_watcher = false , -- This will use the OS level file watchers to detect changes
162
+ -- instead of relying on nvim autocmd events.
161
163
},
162
164
buffers = {
163
165
show_unloaded = true ,
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ local config = {
224
224
-- "open_current",-- netrw disabled, opening a directory opens within the
225
225
-- window like netrw would, regardless of window.position
226
226
-- "disabled", -- netrw left alone, neo-tree does not handle opening dirs
227
- use_libuv_file_watcher = true , -- This will use the OS level file watchers to detect changes
227
+ use_libuv_file_watcher = false , -- This will use the OS level file watchers to detect changes
228
228
-- instead of relying on nvim autocmd events.
229
229
},
230
230
buffers = {
You can’t perform that action at this time.
0 commit comments