-
-
Notifications
You must be signed in to change notification settings - Fork 910
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Description
The oldfiles picker rules out any remote (e.g. "sftp://") files from the list.
Neovim version
NVIM v0.11.3
Build type: Release
LuaJIT 2.1.1741730670
Operating system and version
macOS 26
Telescope version / branch / rev
master
checkhealth telescope
==============================================================================
telescope: 1 ⚠️
Checking for required plugins ~
- ✅ OK plenary installed.
- ✅ OK nvim-treesitter installed.
Checking external dependencies ~
- ✅ OK rg: found ripgrep 14.1.1
- ⚠️ WARNING fd: not found. Install [sharkdp/fd](https://github.com/sharkdp/fd) for extended capabilities
===== Installed extensions ===== ~
Telescope Extension: `file_browser` ~
- No healthcheck provided
Steps to reproduce
- Open a remote file (e.g.
sftp://...
,scp://...
, etc.) - Close the file
:oldfiles
- the file is present in the list:Telescope oldfiles
- the file is not present in the list
Expected behavior
Expected the file to be present in the :Telescope oldfiles
list
Actual behavior
The file is not present in the :Telescope oldfiles
list
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