From 5150bc26935dfad71f340dd8b48af474c2c0404e Mon Sep 17 00:00:00 2001 From: James Trew <66286082+jamestrew@users.noreply.github.com> Date: Sat, 20 Jan 2024 20:50:21 -0500 Subject: [PATCH] fix(git_status): support `path_display` (#2881) (cherry picked from commit 0902bb39ebaf76e655addc65130eb79b29abe6d2) --- 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 c117594..dc8ff03 100644 --- a/lua/telescope/make_entry.lua +++ b/lua/telescope/make_entry.lua @@ -1313,7 +1313,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