1
+ local actions = require (" nvim-tree.actions" )
1
2
local appearance = require (" nvim-tree.appearance" )
2
3
local buffers = require (" nvim-tree.buffers" )
3
4
local core = require (" nvim-tree.core" )
4
5
local git = require (" nvim-tree.git" )
5
6
local log = require (" nvim-tree.log" )
7
+ local lib = require (" nvim-tree.lib" )
6
8
local notify = require (" nvim-tree.notify" )
7
9
local utils = require (" nvim-tree.utils" )
8
10
local view = require (" nvim-tree.view" )
@@ -24,6 +26,9 @@ local Renderer = require("nvim-tree.renderer")
24
26
25
27
local FILTER_REASON = require (" nvim-tree.enum" ).FILTER_REASON
26
28
29
+ -- set once and only once for prefer_startup_root
30
+ local init_root = vim .fn .getcwd ()
31
+
27
32
local config
28
33
29
34
--- @class (exact ) Explorer : RootNode
@@ -530,6 +535,124 @@ function Explorer:place_cursor_on_node()
530
535
end
531
536
end
532
537
538
+ --- Update the tree root to a directory or the directory containing
539
+ --- @param path string relative or absolute
540
+ --- @param bufnr number | nil
541
+ function Explorer :change_root (path , bufnr )
542
+ -- error("Explorer:change_root")
543
+
544
+ -- skip if current file is in ignore_list
545
+ if type (bufnr ) == " number" then
546
+ local ft
547
+
548
+ if vim .fn .has (" nvim-0.10" ) == 1 then
549
+ ft = vim .api .nvim_get_option_value (" filetype" , { buf = bufnr }) or " "
550
+ else
551
+ ft = vim .api .nvim_buf_get_option (bufnr , " filetype" ) or " " --- @diagnostic disable-line : deprecated
552
+ end
553
+
554
+ for _ , value in pairs (self .opts .update_focused_file .update_root .ignore_list ) do
555
+ if utils .str_find (path , value ) or utils .str_find (ft , value ) then
556
+ return
557
+ end
558
+ end
559
+ end
560
+
561
+ -- don't find inexistent
562
+ if vim .fn .filereadable (path ) == 0 then
563
+ return
564
+ end
565
+
566
+ local vim_cwd = vim .fn .getcwd ()
567
+
568
+ -- test if in vim_cwd
569
+ if utils .path_relative (path , vim_cwd ) ~= path then
570
+ if vim_cwd ~= self .absolute_path then
571
+ actions .root .change_dir .fn (vim_cwd )
572
+ end
573
+ return
574
+ end
575
+ -- test if in cwd
576
+ if utils .path_relative (path , self .absolute_path ) ~= path then
577
+ return
578
+ end
579
+
580
+ -- otherwise test init_root
581
+ if self .opts .prefer_startup_root and utils .path_relative (path , init_root ) ~= path then
582
+ actions .root .change_dir .fn (init_root )
583
+ return
584
+ end
585
+ -- otherwise root_dirs
586
+ for _ , dir in pairs (self .opts .root_dirs ) do
587
+ dir = vim .fn .fnamemodify (dir , " :p" )
588
+ if utils .path_relative (path , dir ) ~= path then
589
+ actions .root .change_dir .fn (dir )
590
+ return
591
+ end
592
+ end
593
+ -- finally fall back to the folder containing the file
594
+ actions .root .change_dir .fn (vim .fn .fnamemodify (path , " :p:h" ))
595
+ end
596
+
597
+ --- Find file or buffer
598
+ --- @param opts ApiTreeFindFileOpts | nil | boolean legacy -> opts.buf
599
+ function Explorer :find_file (opts )
600
+ -- legacy arguments
601
+ if type (opts ) == " string" then
602
+ opts = {
603
+ buf = opts ,
604
+ }
605
+ end
606
+ opts = opts or {}
607
+
608
+ -- do nothing if closed and open not requested
609
+ if not opts .open then
610
+ return
611
+ end
612
+
613
+ local bufnr , path
614
+
615
+ -- (optional) buffer number and path
616
+ local opts_buf = opts .buf
617
+ if type (opts_buf ) == " nil" then
618
+ bufnr = vim .api .nvim_get_current_buf ()
619
+ path = vim .api .nvim_buf_get_name (bufnr )
620
+ elseif type (opts_buf ) == " number" then
621
+ if not vim .api .nvim_buf_is_valid (opts_buf ) then
622
+ return
623
+ end
624
+ bufnr = opts_buf
625
+ path = vim .api .nvim_buf_get_name (bufnr )
626
+ elseif type (opts_buf ) == " string" then
627
+ bufnr = nil
628
+ path = tostring (opts_buf )
629
+ else
630
+ return
631
+ end
632
+
633
+ if view .is_visible () then
634
+ -- focus
635
+ if opts .focus then
636
+ lib .set_target_win ()
637
+ view .focus ()
638
+ end
639
+ elseif opts .open then
640
+ -- open
641
+ lib .open ({ current_window = opts .current_window , winid = opts .winid })
642
+ if not opts .focus then
643
+ vim .cmd (" noautocmd wincmd p" )
644
+ end
645
+ end
646
+
647
+ -- update root
648
+ if opts .update_root or self .opts .update_focused_file .update_root .enable then
649
+ self :change_root (path , bufnr )
650
+ end
651
+
652
+ -- find
653
+ actions .finders .find_file .fn (path )
654
+ end
655
+
533
656
--- Api.tree.get_nodes
534
657
--- @return Node
535
658
function Explorer :get_nodes ()
0 commit comments