mirror of
https://github.com/sayanarijit/xplr
synced 2024-11-04 18:00:14 +00:00
Fix symlink base again
This commit is contained in:
parent
ba26752f6c
commit
d282032b3d
@ -2915,8 +2915,7 @@ end
|
||||
|
||||
xplr.fn.builtin.fmt_general_selection_item = function(n)
|
||||
local nl = xplr.util.paint("\\n", { add_modifiers = { "Italic", "Dim" } })
|
||||
local sh_config =
|
||||
{ base = n.parent, with_prefix_dots = true, without_suffix_dots = true }
|
||||
local sh_config = { with_prefix_dots = true, without_suffix_dots = true }
|
||||
local shortened = xplr.util.shorten(n.absolute_path, sh_config)
|
||||
if n.is_dir then
|
||||
shortened = shortened .. "/"
|
||||
@ -2968,7 +2967,8 @@ xplr.fn.builtin.fmt_general_table_row_cols_1 = function(m)
|
||||
if m.is_broken then
|
||||
r = r .. "×"
|
||||
else
|
||||
local symlink_path = xplr.util.shorten(m.symlink.absolute_path)
|
||||
local symlink_path =
|
||||
xplr.util.shorten(m.symlink.absolute_path, { base = m.parent })
|
||||
if m.symlink.is_dir then
|
||||
symlink_path = symlink_path .. "/"
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user