Revert "nvim: after/plugin/fzf-lua: Update actions for commits"

This reverts commit b10ba79940.

Reverting this as a step to bring back fzf.vim.
This commit is contained in:
Sanchayan Maity 2022-03-24 09:14:20 +05:30
parent 44e1389066
commit 9352f12192
1 changed files with 2 additions and 5 deletions

View File

@ -154,10 +154,7 @@ require'fzf-lua'.setup {
cmd = "git log --decorate --pretty=oneline --abbrev-commit --color",
preview = "git show --color=always {1}",
actions = {
["default"] = actions.git_buf_split,
["ctrl-s"] = actions.git_buf_split,
["ctrl-v"] = actions.git_buf_vsplit,
["ctrl-t"] = actions.git_buf_tabedit,
["default"] = actions.git_checkout,
},
},
bcommits = {
@ -165,7 +162,7 @@ require'fzf-lua'.setup {
cmd = "git log --decorate --pretty=oneline --abbrev-commit --color",
preview = "git show --color=always {1}",
actions = {
["default"] = actions.git_buf_split,
["default"] = actions.git_buf_edit,
["ctrl-s"] = actions.git_buf_split,
["ctrl-v"] = actions.git_buf_vsplit,
["ctrl-t"] = actions.git_buf_tabedit,