Copy in the selected folder (CTRL-V)

Hi,

I want to copy a file in the current folder and paste it in the selected folder with CTRL-V. Actually, it copy a second copy of the same file.

Example: I copy Test.txt (CTRL-C), select the Folder 1 and then press CTRL-V. It create a copy of Test.txt instead of copying into Folder 1

I can only do it with the context menu Paste. Is there a way to do it (especially when you have folders expanded)?

Regards.

1 Like

Try

Clipboard PASTE USESEL

I replaced the CTRL-V command with this one, but can I also paste it if no selection is made (like the standard CTRL-V)? I don't want to create a new shortcut key.

Yes, with a little modification:

Clipboard PASTE{=seldirs==1 ? " USESEL" : ""=}
5 Likes

Thanks! It works exactly like I want.

Thanks for the code. I tried adding a hotkey as shown, but it doesn't work. Am I adding it in the wrong place?

Yes. Should be a Lister Hotkey.

image

1 Like