From 38d1cd3925e2299e90cf2d02cb515696710eb2bf Mon Sep 17 00:00:00 2001 From: James Trew Date: Sat, 20 Jan 2024 20:45:33 -0500 Subject: [PATCH] fix(git_status): support `path_display` --- lua/telescope/make_entry.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/telescope/make_entry.lua b/lua/telescope/make_entry.lua index d66f7817f2..ebb9085e1f 100644 --- a/lua/telescope/make_entry.lua +++ b/lua/telescope/make_entry.lua @@ -1332,7 +1332,7 @@ function make_entry.gen_from_git_status(opts) return displayer { { status_x.icon or empty_space, status_x.hl }, { status_y.icon or empty_space, status_y.hl }, - entry.value, + utils.transform_path(opts, entry.path), } end