Closed heygarrett closed 9 months ago
@heygarrett, correct, oversight of a recent PR (#991+https://github.com/ibhagwan/fzf-lua/commit/cc47997ebeb87e0caa9ab6fd8039427c1f6930ee), should work after https://github.com/ibhagwan/fzf-lua/commit/f021b287bf095f20cb5062fc9486dd3243ae220c.
Yep! It's working now. Thanks!
Info
nvim --version
:fzf --version
: 0.45.0 (brew)mini.sh
fzf-lua configuration
```lua return { "https://github.com/ibhagwan/fzf-lua", config = function() local fzf_lua = require("fzf-lua") local actions = require("fzf-lua.actions") vim.api.nvim_create_user_command( "Status", function() fzf_lua.git_status() end, { desc = "fzf-lua picker: git status" } ) fzf_lua.setup({ fzf_opts = { ["--cycle"] = "", }, winopts = { preview = { layout = "vertical", vertical = "down:75%", }, }, git = { status = { cmd = "git status --short", actions = { ["right"] = false, ["left"] = false, ["tab"] = { fn = actions.git_stage_unstage, reload = true, }, }, }, }, }) end, } ```Description
I've noticed recently that using
git_stage_unstage
has stopped working. I tried changing it to a different keymap, but no luck. I also tried re-enablingright
andleft
default keymaps and confirmedgit_stage
andgit_unstage
still work as expected.I struggled to figure out how to customize the minimal init, so apologies for not being able to reproduce the issue that way.