When I copy/move one file, then i want a dialog popup with the name of the destination path + filename already in it.
So that when I press Enter, it copies/moves the file to the destination panel instantly.
When I want to copy/move a selection of files, I want a dialog popup with the destination path already in it.
Also, when I put '..' in the dialog will it copy/move my selection to the parent directory?
Parts 1 & 2 are a bit unclear. Do you want to copy it to the destination? That would be simple: COPY TO DEST, resp. COPY MOVE TO DEST. You can include that in -> preferences -> filetypes -> edit -> all files & folders -> context menu -> new, which will put that in your right click context menu.
If you want to chose the destination, you can use
@set dir = "{dlgfolder|copy to}"
Copy TO {$dir}
resp. the same with COPY MOVE. Moving files one level up ist done by using COPY MOVE to .. You can make a button, a user command (launched from the CLI) or use a hotkey.
I have to add, if you want to use ENTER for such actions, it does not seem to be a good idea to use that key. It is already in use to open files or folders, ZIPs, etc., i´d recommend to use another key instead, perhaps Ctrl-Enter.
[quote="abr"]Parts 1 & 2 are a bit unclear. Do you want to copy it to the destination? That would be simple: COPY TO DEST, resp. COPY MOVE TO DEST. You can include that in -> preferences -> filetypes -> edit -> all files & folders -> context menu -> new, which will put that in your right click context menu.
If you want to chose the destination, you can use
@set dir = "{dlgfolder|copy to}"
Copy TO {$dir}
resp. the same with COPY MOVE. Moving files one level up ist done by using COPY MOVE to .. You can make a button, a user command (launched from the CLI) or use a hotkey.[/quote]
This is not what I mean.
At first I use 2 panels mostly.
When I have a selection made and press my copy or move button, then I want a dialog to popup with 2 lines:
First line with the name of the file already filled in, if my selection is just 1 file. Else this line is not necessary.
Second line with the name of the destination folder already filled in, but still selectable. So that I can wipe that second line and put something in like '..' or whatever.