add keymap to telescope filebrowser

This commit is contained in:
jc 2023-09-11 16:45:20 -04:00
commit ccd27e577e
No known key found for this signature in database

View file

@ -37,6 +37,7 @@ return {
['h'] = fb_actions.goto_parent_dir, ['h'] = fb_actions.goto_parent_dir,
['/'] = function() vim.cmd("startinsert") end, ['/'] = function() vim.cmd("startinsert") end,
['d'] = fb_actions.remove, ['d'] = fb_actions.remove,
['e'] = fb_actions.change_cwd,
['<C-s>'] = function(bufnr) actions.select_vertical(bufnr) end, ['<C-s>'] = function(bufnr) actions.select_vertical(bufnr) end,
['<C-a>'] = function(bufnr) actions.toggle_all(bufnr) end, ['<C-a>'] = function(bufnr) actions.toggle_all(bufnr) end,
['<C-d>'] = function(bufnr) actions.move_selection_next(bufnr) end, ['<C-d>'] = function(bufnr) actions.move_selection_next(bufnr) end,