refactor: rename supports_xfer

This commit is contained in:
Steven Arcangeli 2023-08-20 21:05:35 +00:00
parent f4819d8b43
commit 7aeb239a6a
4 changed files with 13 additions and 7 deletions

View file

@ -352,7 +352,7 @@ M.render_action = function(action)
M.to_short_os_path(dest_path, action.entry_type)
)
else
-- We should never hit this because we don't implement supports_xfer
-- We should never hit this because we don't implement supported_adapters_for_copy
error("files adapter doesn't support cross-adapter move/copy")
end
else
@ -409,7 +409,7 @@ M.perform_action = function(action, cb)
dest_path = fs.posix_to_os_path(dest_path)
fs.recursive_move(action.entry_type, src_path, dest_path, vim.schedule_wrap(cb))
else
-- We should never hit this because we don't implement supports_xfer
-- We should never hit this because we don't implement supported_adapters_for_copy
cb("files adapter doesn't support cross-adapter move")
end
elseif action.type == "copy" then
@ -423,7 +423,7 @@ M.perform_action = function(action, cb)
dest_path = fs.posix_to_os_path(dest_path)
fs.recursive_copy(action.entry_type, src_path, dest_path, cb)
else
-- We should never hit this because we don't implement supports_xfer
-- We should never hit this because we don't implement supported_adapters_for_copy
cb("files adapter doesn't support cross-adapter copy")
end
else