Some checks failed
Detach Plugins / check (FlyGrep.vim) (push) Has been cancelled
Detach Plugins / check (GitHub.vim) (push) Has been cancelled
Detach Plugins / check (JavaUnit.vim) (push) Has been cancelled
Detach Plugins / check (SourceCounter.vim) (push) Has been cancelled
Detach Plugins / check (cpicker.nvim) (push) Has been cancelled
Detach Plugins / check (dein-ui.vim) (push) Has been cancelled
Detach Plugins / check (git.vim) (push) Has been cancelled
Detach Plugins / check (iedit.vim) (push) Has been cancelled
Detach Plugins / check (scrollbar.vim) (push) Has been cancelled
Detach Plugins / check (vim-chat) (push) Has been cancelled
Detach Plugins / check (vim-cheat) (push) Has been cancelled
Detach Plugins / check (vim-todo) (push) Has been cancelled
Detach Plugins / check (xmake.vim) (push) Has been cancelled
test / Linux (nvim, nightly) (push) Has been cancelled
test / Linux (nvim, v0.3.8) (push) Has been cancelled
test / Linux (nvim, v0.4.0) (push) Has been cancelled
test / Linux (nvim, v0.4.2) (push) Has been cancelled
test / Linux (nvim, v0.4.3) (push) Has been cancelled
test / Linux (nvim, v0.4.4) (push) Has been cancelled
test / Linux (nvim, v0.5.0) (push) Has been cancelled
test / Linux (nvim, v0.5.1) (push) Has been cancelled
test / Linux (nvim, v0.6.0) (push) Has been cancelled
test / Linux (nvim, v0.6.1) (push) Has been cancelled
test / Linux (nvim, v0.7.0) (push) Has been cancelled
test / Linux (nvim, v0.7.2) (push) Has been cancelled
test / Linux (nvim, v0.8.0) (push) Has been cancelled
test / Linux (nvim, v0.8.1) (push) Has been cancelled
test / Linux (nvim, v0.8.2) (push) Has been cancelled
test / Linux (nvim, v0.8.3) (push) Has been cancelled
test / Linux (nvim, v0.9.0) (push) Has been cancelled
test / Linux (nvim, v0.9.1) (push) Has been cancelled
test / Linux (true, vim, v7.4.052) (push) Has been cancelled
test / Linux (true, vim, v7.4.1689) (push) Has been cancelled
test / Linux (true, vim, v7.4.629) (push) Has been cancelled
test / Linux (true, vim, v8.0.0027) (push) Has been cancelled
test / Linux (true, vim, v8.0.0183) (push) Has been cancelled
test / Linux (vim, nightly) (push) Has been cancelled
test / Linux (vim, v8.0.0184) (push) Has been cancelled
test / Linux (vim, v8.0.1453) (push) Has been cancelled
test / Linux (vim, v8.1.2269) (push) Has been cancelled
test / Linux (vim, v8.2.2434) (push) Has been cancelled
test / Linux (vim, v8.2.3995) (push) Has been cancelled
test / Windows (nvim, nightly) (push) Has been cancelled
test / Windows (nvim, v0.3.8) (push) Has been cancelled
test / Windows (nvim, v0.4.2) (push) Has been cancelled
test / Windows (nvim, v0.4.3) (push) Has been cancelled
test / Windows (nvim, v0.4.4) (push) Has been cancelled
test / Windows (nvim, v0.5.0) (push) Has been cancelled
test / Windows (nvim, v0.5.1) (push) Has been cancelled
test / Windows (nvim, v0.6.0) (push) Has been cancelled
test / Windows (nvim, v0.6.1) (push) Has been cancelled
test / Windows (nvim, v0.7.0) (push) Has been cancelled
test / Windows (nvim, v0.7.2) (push) Has been cancelled
test / Windows (nvim, v0.8.0) (push) Has been cancelled
test / Windows (nvim, v0.8.1) (push) Has been cancelled
test / Windows (nvim, v0.8.2) (push) Has been cancelled
test / Windows (nvim, v0.8.3) (push) Has been cancelled
test / Windows (nvim, v0.9.0) (push) Has been cancelled
test / Windows (nvim, v0.9.1) (push) Has been cancelled
test / Windows (vim, nightly) (push) Has been cancelled
test / Windows (vim, v7.4.1185) (push) Has been cancelled
test / Windows (vim, v7.4.1689) (push) Has been cancelled
test / Windows (vim, v8.0.0027) (push) Has been cancelled
test / Windows (vim, v8.0.1453) (push) Has been cancelled
test / Windows (vim, v8.1.2269) (push) Has been cancelled
test / Windows (vim, v8.2.2434) (push) Has been cancelled
test / Windows (vim, v8.2.3995) (push) Has been cancelled
docker / docker (push) Has been cancelled
mirror / check (coding) (push) Has been cancelled
mirror / check (gitee) (push) Has been cancelled
mirror / check (gitlab) (push) Has been cancelled
93 lines
2.1 KiB
Lua
93 lines
2.1 KiB
Lua
--This file should contain all commands meant to be used by mappings.
|
|
|
|
local vim = vim
|
|
local cc = require("neo-tree.sources.common.commands")
|
|
local buffers = require("neo-tree.sources.buffers")
|
|
local utils = require("neo-tree.utils")
|
|
local manager = require("neo-tree.sources.manager")
|
|
|
|
local M = {}
|
|
|
|
local refresh = utils.wrap(manager.refresh, "buffers")
|
|
local redraw = utils.wrap(manager.redraw, "buffers")
|
|
|
|
M.add = function(state)
|
|
cc.add(state, refresh)
|
|
end
|
|
|
|
M.add_directory = function(state)
|
|
cc.add_directory(state, refresh)
|
|
end
|
|
|
|
M.buffer_delete = function(state)
|
|
local node = state.tree:get_node()
|
|
if node then
|
|
if node.type == "message" then
|
|
return
|
|
end
|
|
vim.api.nvim_buf_delete(node.extra.bufnr, { force = false, unload = false })
|
|
refresh()
|
|
end
|
|
end
|
|
|
|
---Marks node as copied, so that it can be pasted somewhere else.
|
|
M.copy_to_clipboard = function(state)
|
|
cc.copy_to_clipboard(state, redraw)
|
|
end
|
|
|
|
M.copy_to_clipboard_visual = function(state, selected_nodes)
|
|
cc.copy_to_clipboard_visual(state, selected_nodes, redraw)
|
|
end
|
|
|
|
---Marks node as cut, so that it can be pasted (moved) somewhere else.
|
|
M.cut_to_clipboard = function(state)
|
|
cc.cut_to_clipboard(state, redraw)
|
|
end
|
|
|
|
M.cut_to_clipboard_visual = function(state, selected_nodes)
|
|
cc.cut_to_clipboard_visual(state, selected_nodes, redraw)
|
|
end
|
|
|
|
M.copy = function(state)
|
|
cc.copy(state, redraw)
|
|
end
|
|
|
|
M.move = function(state)
|
|
cc.move(state, redraw)
|
|
end
|
|
|
|
M.show_debug_info = cc.show_debug_info
|
|
|
|
---Pastes all items from the clipboard to the current directory.
|
|
M.paste_from_clipboard = function(state)
|
|
cc.paste_from_clipboard(state, refresh)
|
|
end
|
|
|
|
M.delete = function(state)
|
|
cc.delete(state, refresh)
|
|
end
|
|
|
|
---Navigate up one level.
|
|
M.navigate_up = function(state)
|
|
local parent_path, _ = utils.split_path(state.path)
|
|
buffers.navigate(state, parent_path)
|
|
end
|
|
|
|
M.refresh = refresh
|
|
|
|
M.rename = function(state)
|
|
cc.rename(state, refresh)
|
|
end
|
|
|
|
M.set_root = function(state)
|
|
local tree = state.tree
|
|
local node = tree:get_node()
|
|
if node.type == "directory" then
|
|
buffers.navigate(state, node.id)
|
|
end
|
|
end
|
|
|
|
cc._add_common_commands(M)
|
|
|
|
return M
|