You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NVIM v0.9.5
Build type: Release
LuaJIT 2.1.1703358377
system vimrc file: "$VIM/sysinit.vim"
fall-back for $VIM: "/opt/homebrew/Cellar/neovim/0.9.5/share/nvim"
Run :checkhealth for more info
### Operating system and version
Macos 14.3.1
### Telescope version / branch / rev
tag 0.1.5
### checkhealth telescope
```markdown
==============================================================================
telescope: require("telescope.health").check()
Checking for required plugins ~
- OK plenary installed.
- OK nvim-treesitter installed.
Checking external dependencies ~
- OK rg: found ripgrep 14.1.0
- OK fd: found fd 9.0.0
===== Installed extensions ===== ~
Telescope Extension: `textcase` ~
- No healthcheck provided
### Steps to reproduce
After installing telescope with minal config describe below try to open git_status, then path_display is not set to `truncate` comapred to find_files which does truncate
### Expected behavior
I expect git_status to use the defaults.path_display
### Actual behavior
Git status:
<img width="342" alt="image" src="https://github.com/nvim-telescope/telescope.nvim/assets/80689446/2ec8110a-2acf-47e7-92cc-f9dbe468e54b">
Find files:
<img width="343" alt="image" src="https://github.com/nvim-telescope/telescope.nvim/assets/80689446/d335f5ad-31c9-425f-8643-9829b4a2f8ed">
### Minimal config
```Lua
Minimal setup with lazy:
return {
"nvim-telescope/telescope.nvim",
tag = "0.1.5",
-- or , branch = '0.1.x',
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
local telescope = require("telescope")
local builtin = require("telescope.builtin")
telescope.setup({
defaults = {
path_display = {"truncate"},
},
})
The text was updated successfully, but these errors were encountered:
Description
I am trying to change defaults.path_display. Other pickers like find_files and live_grep are affected by this changes but not git_status.
I have seen that this issue has been reported before: #2712 and #2658 and that a pr was made to address it: #2881
but I guess there is a regression or something?
Note that:
also does not work
Neovim version
The text was updated successfully, but these errors were encountered: