-
-
Notifications
You must be signed in to change notification settings - Fork 937
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Description
see latest update for this issue stevearc/aerial.nvim#346
Neovim version
v0.10.4Operating system and version
debian 13
Telescope version / branch / rev
latest
checkhealth telescope
goodSteps to reproduce
see latest update for this issue stevearc/aerial.nvim#346
Expected behavior
pre-selected item located at
"scan" function
Actual behavior
not correct
Minimal config
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs { "config", "data", "state", "cache" } do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.uv.fs_stat(lazypath) then
vim.fn.system {
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
lazypath,
}
end
vim.opt.runtimepath:prepend(lazypath)
-- install plugins
local plugins = {
{
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
},
config = function()
-- ADD INIT.LUA SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
require("telescope").setup {}
end,
},
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
