Page 1 of 1

Create link by shortcut

Posted: 15.06.2009, 00:48
by lobsi
Hey,

is there any shortcut to create a link to a file or folder in the opposite tab? Maybe there is a shortcut like F5, copy.

I very often have to create links, but don't want to use the right mous button dialog "Create link here" and move it to the other tab.

Posted: 15.06.2009, 01:58
by Dreamer
No, there isn't such a shortcut, AFAIK.

Posted: 15.06.2009, 09:16
by matera
I wish there was one too :(

But there is one way to make it shorter -- hold Alt and drag ;)

Posted: 16.06.2009, 00:10
by lobsi
Hey matera,

thanks for your tip. Speeds up things a little bit.

Is there any possibilty to assign a batch or another command to a short cut? Maybe by this I could make a work around.

Another idea would by to assign the context entry to a short cut.

I will post a feature request for the short cut to create a link.

Re: Create link by shortcut

Posted: 26.03.2020, 08:41
by haukebasse
Hello
Too bad there is no hotkey for this in FC.
As I have been wanting it for a long time now, I realized it via AutoHotKey (AHK).
This is the code. Hit ctrl - shift - alt - l [L] and it will create a shortcut to the selected file in the other tab.
^+!l::
{
Send, !{Insert}
Sleep 200 ;could be minimized or left away maybe
currentFile = %ClipBoard%
Send, {TAB}^!{Insert}{TAB}
otherPaneFolderPath = %ClipBoard%
SplitPath, currentFile, name, dir, ext, name_no_ext, drive
FileCreateShortcut, %currentFile%, %otherPaneFolderPath%\%name_no_ext% - Verknüpfung.lnk ;%dir%%name_no_ext% - Verknüpfung
return
}
If anyone has a more beautiful or more reliable code, please post it! :)

Re: Create link by shortcut

Posted: 26.03.2020, 09:30
by Karol

Re: Create link by shortcut

Posted: 28.03.2020, 20:20
by lobsi
Using the hint by Karol his seems to be the solution for me.
(1) Assing Keyboard Shortcut Ctrl+L to Edit / Paste shortcut
(2) select files, folders to creat shortcut for
(3) Ctrl+C copy files, folders
(4) goto other folder were to insert links in other panel
(5) Ctrl+L insert links

Thanks to all repliers