-
-
Notifications
You must be signed in to change notification settings - Fork 924
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Description
When I open :Telescope file_browser and try to rename/remove/create a file, it seems like after the action is complete, the buffer is reset to the main editor. It wasn't like that prior to nvim 0.11.4. My config is in my .dotfiles repo.
Neovim version
NVIM v0.11.4
Build type: Release
LuaJIT 2.1.1753364724
Run "nvim -V1 -v" for more infoOperating system and version
macOS 26.0.1
Telescope version / branch / rev
master/0.1.8 - tried multiple
checkhealth telescope
==============================================================================
telescope: ✅
Checking for required plugins ~
- ✅ OK plenary installed.
- ✅ OK nvim-treesitter installed.
Checking external dependencies ~
- ✅ OK rg: found ripgrep 14.1.1
- ✅ OK fd: found fd 10.2.0
===== Installed extensions ===== ~
Telescope Extension: `file_browser` ~
- No healthcheck provided
Telescope Extension: `fzf` ~
- ✅ OK lib working as expected
- ✅ OK file_sorter correctly configured
- ✅ OK generic_sorter correctly configuredSteps to reproduce
brew install nvim- Download my config from my pinned repos
- Open up
:Telescope file_browser - Try to remove/edit/create a file
- Voila
Expected behavior
No response
Actual behavior
Screen.Recording.2025-10-22.at.4.44.25.PM.mov
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