Skip to content

Commit

Permalink
fix parent_dir path separator
Browse files Browse the repository at this point in the history
  • Loading branch information
jamestrew committed Jul 22, 2024
1 parent 1555afa commit 0eb0303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/telescope/_extensions/file_browser/make_entry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ local make_entry = function(opts)
)

if entry.is_dir and entry.path == parent_dir then
path_display = "../"
path_display = ".." .. os_sep
end

if not opts.disable_devicons then
Expand Down

0 comments on commit 0eb0303

Please sign in to comment.