fixed fzf bindings

This commit is contained in:
Oliver Hartmann 2024-05-13 20:34:50 +02:00
parent 3442de38f5
commit 6eff3343b5

View File

@ -7,10 +7,20 @@ return {
'borderless_full', 'borderless_full',
actions = { actions = {
files = { files = {
['default'] = actions.file_edit_or_qf,
['ctrl-s'] = actions.file_split,
['ctrl-v'] = actions.file_vsplit,
['ctrl-t'] = actions.file_tabedit,
['alt-q'] = actions.file_sel_to_qf,
['alt-l'] = actions.file_sel_to_ll,
['ctrl-x'] = actions.file_split, ['ctrl-x'] = actions.file_split,
}, },
buffers = { buffers = {
['ctrl-x'] = actions.buf_split, ['default'] = actions.buf_edit,
['ctrl-s'] = actions.buf_split,
['ctrl-v'] = actions.buf_vsplit,
['ctrl-t'] = actions.buf_tabedit,
['ctrl-x'] = actions.buf_split
} }
} }
}) })