File tree 3 files changed +1
-6
lines changed
3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,6 @@ nvim-tree will be initialised with default configuration.
165
165
Subsequent calls to setup will replace the previous configuration.
166
166
>
167
167
require("nvim-tree").setup { -- BEGIN_DEFAULT_OPTS
168
- auto_reload_on_write = true,
169
168
create_in_closed_folder = false,
170
169
disable_netrw = false,
171
170
hijack_cursor = false,
@@ -419,10 +418,6 @@ in some scenarios (eg using vim startify).
419
418
List of filetypes or buffer names that will prevent | nvim-tree.open_on_tab | .
420
419
Type: {string} , Default: `{}`
421
420
422
- *nvim-tree.auto_reload_on_write*
423
- Reloads the explorer every time a buffer is written to.
424
- Type: `boolean ` , Default: `true`
425
-
426
421
*nvim-tree.create_in_closed_folder*
427
422
Creating a file when the cursor is on a closed folder will set the
428
423
path to be inside the closed folder, otherwise the parent folder.
Original file line number Diff line number Diff line change @@ -406,7 +406,6 @@ local function setup_autocommands(opts)
406
406
end
407
407
408
408
local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
409
- auto_reload_on_write = true ,
410
409
create_in_closed_folder = false ,
411
410
disable_netrw = false ,
412
411
hijack_cursor = false ,
Original file line number Diff line number Diff line change @@ -295,6 +295,7 @@ local function unnecessary(opts)
295
295
if opts .filesystem_watchers then
296
296
opts .filesystem_watchers .enable = nil
297
297
end
298
+ opts .auto_reload_on_write = nil
298
299
end
299
300
300
301
local function removed (opts )
You can’t perform that action at this time.
0 commit comments