add actions.change_dir.restrict_above_cwd (#1171)

This commit is contained in:
Alexander Courtis 2022-04-23 18:45:23 +10:00 committed by GitHub
parent ce463a53ae
commit 2c71ffcc0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 7 deletions

View File

@ -194,6 +194,7 @@ require'nvim-tree'.setup { -- BEGIN_DEFAULT_OPTS
change_dir = {
enable = true,
global = false,
restrict_above_cwd = false,
},
open_file = {
quit_on_open = false,

View File

@ -163,6 +163,7 @@ function.
change_dir = {
enable = true,
global = false,
restrict_above_cwd = false,
},
open_file = {
quit_on_open = false,
@ -486,6 +487,11 @@ Here is a list of the options available in the setup call:
type: `boolean`
default: `false`
- |actions.change_dir.restrict_above_cwd|: restrict changing to a directory
above the global current working directory.
type: `boolean`
default: `false`
- |actions.open_file.quit_on_open|: closes the explorer when opening a file.
It will also disable preventing a buffer overriding the tree.
type: `boolean`

View File

@ -388,6 +388,7 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
change_dir = {
enable = true,
global = false,
restrict_above_cwd = false,
},
open_file = {
quit_on_open = false,

View File

@ -7,10 +7,6 @@ local diagnostics = require "nvim-tree.diagnostics"
local M = {
current_tab = a.nvim_get_current_tabpage(),
options = {
global = false,
change_cwd = true,
},
}
function M.fn(name, with_open)
@ -20,6 +16,7 @@ function M.fn(name, with_open)
local foldername = name == ".." and vim.fn.fnamemodify(utils.path_remove_trailing(core.get_cwd()), ":h") or name
local no_cwd_change = vim.fn.expand(foldername) == core.get_cwd()
or M.options.restrict_above_cwd and foldername < vim.fn.getcwd(-1, -1)
local new_tab = a.nvim_get_current_tabpage()
local is_window = (vim.v.event.scope == "window" or vim.v.event.changed_window) and new_tab == M.current_tab
if no_cwd_change or is_window then
@ -32,7 +29,7 @@ end
function M.force_dirchange(foldername, with_open)
local ps = log.profile_start("change dir %s", foldername)
if M.options.change_cwd and vim.tbl_isempty(vim.v.event) then
if M.options.enable and vim.tbl_isempty(vim.v.event) then
if M.options.global then
vim.cmd("cd " .. vim.fn.fnameescape(foldername))
else
@ -51,8 +48,7 @@ function M.force_dirchange(foldername, with_open)
end
function M.setup(options)
M.options.change_cwd = options.actions.change_dir.enable
M.options.global = options.actions.change_dir.global
M.options = options.actions.change_dir
end
return M