Skip to content
New issue

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

Files inside folders such as (folder) do not open correctly. #3045

Closed
TM10YMhp opened this issue Apr 11, 2024 · 1 comment
Closed

Files inside folders such as (folder) do not open correctly. #3045

TM10YMhp opened this issue Apr 11, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@TM10YMhp
Copy link
Contributor

TM10YMhp commented Apr 11, 2024

Description

Files inside folders such as (folder) are displayed correctly in the preview, but do not open correctly.

Neovim version

NVIM v0.9.5
Build type: RelWithDebInfo
LuaJIT 2.1.1703942320

Operating system and version

windows 10

Telescope version / branch / rev

master

checkhealth telescope

==============================================================================
telescope: require("telescope.health").check()

Checking for required plugins ~
- OK plenary installed.
- OK nvim-treesitter installed.

Checking external dependencies ~
- OK rg: found ripgrep 13.0.0 (rev af6b6c543b)
- WARNING fd: not found. Install [sharkdp/fd](https://github.com/sharkdp/fd) for extended capabilities

===== Installed extensions ===== ~

Telescope Extension: `fzf` ~
- OK lib working as expected
- OK file_sorter correctly configured
- OK generic_sorter correctly configured

Steps to reproduce

  1. nvim -nu minimal.lua
  2. :Telescope find_files
  3. open a file inside a folder such as (folder)

Expected behavior

Use the same logic to read the files in the preview when opening the files.

Actual behavior

  • Files inside folders such as (folder) do not open correctly.
  • If the file is already open, do not reopen it with the wrong path.
telescope_bug_windows10.mp4

Minimal config

vim.cmd [[set runtimepath=$VIMRUNTIME]]
vim.cmd [[set packpath=/tmp/nvim/site]]
local package_root = '/tmp/nvim/site/pack'
local install_path = package_root .. '/packer/start/packer.nvim'
local function load_plugins()
  require('packer').startup {
    {
      'wbthomason/packer.nvim',
      {
        'nvim-telescope/telescope.nvim',
        requires = {
          'nvim-lua/plenary.nvim',
          { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' },
        },
      },
      -- ADD PLUGINS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
    },
    config = {
      package_root = package_root,
      compile_path = install_path .. '/plugin/packer_compiled.lua',
      display = { non_interactive = true },
    },
  }
end
_G.load_config = function()
  require('telescope').setup()
  require('telescope').load_extension('fzf')
  -- ADD INIT.LUA SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
end
if vim.fn.isdirectory(install_path) == 0 then
  print("Installing Telescope and dependencies.")
  vim.fn.system { 'git', 'clone', '--depth=1', 'https://github.com/wbthomason/packer.nvim', install_path }
end
load_plugins()
require('packer').sync()
vim.cmd [[autocmd User PackerComplete ++once echo "Ready!" | lua load_config()]]
@TM10YMhp TM10YMhp added the bug Something isn't working label Apr 11, 2024
@TM10YMhp TM10YMhp changed the title Files inside folders such as (folder) do not open correctly. Files inside folders such as (folder) do not open correctly. Apr 11, 2024
@TM10YMhp TM10YMhp reopened this Apr 13, 2024
@jamestrew
Copy link
Contributor

Thanks but we're tracking this here #2446

Closing as duplicate.

@jamestrew jamestrew closed this as not planned Won't fix, can't repro, duplicate, stale Apr 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants