summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/rclone/init.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/rclone/init.lua b/lua/rclone/init.lua
index df7aec6..2a21076 100644
--- a/lua/rclone/init.lua
+++ b/lua/rclone/init.lua
@@ -485,7 +485,7 @@ end
-- Unmount mount mounted with 'rclone mount'
--
-- @return any
-local function unmount(options)
+local function umount(options)
local mount_options = vim.deepcopy(options)
mount_options['--dry-run'] = true
mount_options['--return'] = true
@@ -521,7 +521,8 @@ local commands = {
downloadFile = downloadFile,
sync = sync,
mount = mount,
- unmount = unmount,
+ umount = umount,
+ unmount = umount,
}
---