docs(#285): clarify api.fs.create directory creation (#2572)

docs(#285): clarify api.fs.create directory creation
This commit is contained in:
Alexander Courtis
2023-12-04 11:32:03 +11:00
committed by GitHub
parent 05f55c1fd6
commit 7e5c673180
2 changed files with 4 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ function M.default_on_attach(bufnr)
vim.keymap.set('n', '<', api.node.navigate.sibling.prev, opts('Previous Sibling'))
vim.keymap.set('n', '.', api.node.run.cmd, opts('Run Command'))
vim.keymap.set('n', '-', api.tree.change_root_to_parent, opts('Up'))
vim.keymap.set('n', 'a', api.fs.create, opts('Create'))
vim.keymap.set('n', 'a', api.fs.create, opts('Create File Or Directory'))
vim.keymap.set('n', 'bd', api.marks.bulk.delete, opts('Delete Bookmarked'))
vim.keymap.set('n', 'bt', api.marks.bulk.trash, opts('Trash Bookmarked'))
vim.keymap.set('n', 'bmv', api.marks.bulk.move, opts('Move Bookmarked'))