From 5550bbb1b6406926fa5b23768c0b0ca9242281bb Mon Sep 17 00:00:00 2001 From: James Trew <66286082+jamestrew@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:38:09 -0500 Subject: [PATCH] fix(builtin.marks): normalize mark path (#2859) --- lua/telescope/builtin/__internal.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/telescope/builtin/__internal.lua b/lua/telescope/builtin/__internal.lua index 84c65b0..d62d722 100644 --- a/lua/telescope/builtin/__internal.lua +++ b/lua/telescope/builtin/__internal.lua @@ -1109,7 +1109,7 @@ internal.marks = function(opts) line = line, lnum = lnum, col = col, - filename = v.file or bufname, + filename = vim.fs.normalize(v.file or bufname), } -- non alphanumeric marks goes to last if mark:match "%w" then