This commit is contained in:
parent
6515a1e1a9
commit
886d852f6e
@ -1,3 +1,5 @@
|
|||||||
|
local notify = require "nvim-tree.notify"
|
||||||
|
|
||||||
local Api = {
|
local Api = {
|
||||||
tree = {},
|
tree = {},
|
||||||
node = { navigate = { sibling = {}, git = {}, diagnostics = {} }, run = {}, open = {} },
|
node = { navigate = { sibling = {}, git = {}, diagnostics = {} }, run = {}, open = {} },
|
||||||
@ -176,9 +178,11 @@ Api.marks.navigate.select = require("nvim-tree.marks.navigation").select
|
|||||||
Api.config.mappings.default_on_attach = require("nvim-tree.keymap").default_on_attach
|
Api.config.mappings.default_on_attach = require("nvim-tree.keymap").default_on_attach
|
||||||
|
|
||||||
Api.config.mappings.active = function()
|
Api.config.mappings.active = function()
|
||||||
|
notify.warn "api.config.mappings.active is deprecated in favor of config.mappings.get_keymap"
|
||||||
return require("nvim-tree.keymap-legacy").active_mappings_clone()
|
return require("nvim-tree.keymap-legacy").active_mappings_clone()
|
||||||
end
|
end
|
||||||
Api.config.mappings.default = function()
|
Api.config.mappings.default = function()
|
||||||
|
notify.warn "api.config.mappings.default is deprecated in favor of config.mappings.get_keymap_default"
|
||||||
return require("nvim-tree.keymap-legacy").default_mappings_clone()
|
return require("nvim-tree.keymap-legacy").default_mappings_clone()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user