Skip to content

Commit 645fbce

Browse files
committed
Fix copy shortcut target path
Fixed issue with copying shortcut target file path
1 parent 072cbea commit 645fbce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/imports/file-manage.nss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
item(where=sel.count > 1 title='Copy (@sel.count) items selected' cmd=command.copy(sel(false, "\n")))
66
item(mode="single" title=@sel.path tip=sel.path cmd=command.copy(sel.path))
7-
item(mode="single" type='file' separator="before" find='.lnk' title='open file location')
7+
item(mode="single" type='file' separator="before" where=length(sel.lnk)>0 title=sel.lnk cmd=command.copy(sel.lnk))
88
separator
99
item(mode="single" where=@sel.parent.len>3 title=sel.parent cmd=@command.copy(sel.parent))
1010
separator

0 commit comments

Comments
 (0)