mirror of
https://github.com/nvim-tree/nvim-tree.lua.git
synced 2026-07-28 07:49:46 +05:30
Merge branch 'feat/add-download-from-path' of https://github.com/nvim-tree/nvim-tree.lua into feat/add-download-from-path
This commit is contained in:
@@ -181,10 +181,7 @@ end
|
||||
---@param node_or_nodes Node|Node[]
|
||||
---@return boolean
|
||||
function Clipboard:is_nodes_array(node_or_nodes)
|
||||
if type(node_or_nodes) == "table" and node_or_nodes.is and node_or_nodes:is(Node) then
|
||||
return false
|
||||
end
|
||||
return true
|
||||
return type(node_or_nodes) == "table" and node_or_nodes.is and node_or_nodes:is(Node)
|
||||
end
|
||||
|
||||
---Copy one or more nodes
|
||||
|
||||
Reference in New Issue
Block a user