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
When moving file(s) into a directory, viewing the file preview for that directory doesn't show the file(s) that were moved into it.
NVIM v0.9.0-dev-970+gf006313e9 Build type: RelWithDebInfo LuaJIT 2.1.0-beta3
Linux archlinux 6.1.12-arch1-1
mkdir -p /tmp/testing
cd /tmp/testing
mkdir foo
touch a b
nvim -nu min.lua
:Telescope file_browser
a
b
foo
See the moved files a and b in foo in the preview window.
foo is empty in the preview window.
-- DO NOT change the paths and don't remove the colorscheme 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.loop.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 = { -- add any other plugins here "nvim-telescope/telescope-file-browser.nvim", dependencies = { "nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim" }, config = function() require("telescope").setup() require("telescope").load_extension("file_browser") end, } require("lazy").setup(plugins, { root = root .. "/plugins", }) vim.cmd.colorscheme("habamax") -- add anything else here
The text was updated successfully, but these errors were encountered:
file_previewer
jamestrew
No branches or pull requests
Description
When moving file(s) into a directory, viewing the file preview for that directory doesn't show the file(s) that were moved into it.
Neovim version
Operating system and version
Linux archlinux 6.1.12-arch1-1
Steps to reproduce
mkdir -p /tmp/testing
cd /tmp/testing
mkdir foo
touch a b
nvim -nu min.lua
:Telescope file_browser
a
&b
files and then navigate intofoo
, then execute the movefoo
and look at the previewExpected behavior
See the moved files
a
andb
infoo
in the preview window.Actual behavior
foo
is empty in the preview window.Minimal config
The text was updated successfully, but these errors were encountered: