We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NVIM v0.11.1-dev-55be203
Ubuntu 24.04
The Snacks picker allows the selection of multiple items in the list window. It also, by default, has a key to open selected items in tabs:
["<c-t>"] = "tab",
But it opens just one (random) item in a tab. The rest got opened in buffers.
require("snacks").setup { picker = { win = { list = { keys = { ["<c-t>"] = { "tab", mode = { "n", "i" } }, }, }, }, } }
:lua Snacks.picker.files()
<c-t>
:ls
All selected items are opened in tabs.
vim.env.LAZY_STDPATH = ".repro" load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))() require("lazy.minit").repro({ spec = { { "folke/snacks.nvim", opts = {} }, -- add any other plugins here }, })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.11.1-dev-55be203
Operating system/version
Ubuntu 24.04
Describe the bug
The Snacks picker allows the selection of multiple items in the list window. It also, by default, has a key to open selected items in tabs:
But it opens just one (random) item in a tab. The rest got opened in buffers.
Steps To Reproduce
:lua Snacks.picker.files()
<c-t>
:ls
to see others are opened in buffersExpected Behavior
All selected items are opened in tabs.
Repro
The text was updated successfully, but these errors were encountered: