Is it possible to change the default value from copy to move?
How do I change that default?
Thank you!
Moderator message from: white » 2023-02-13, 09:00 UTC
Please use English only in this forum.
Moderators: Hacker, petermad, Stefan2, white
Moderator message from: white » 2023-02-13, 09:00 UTC
Thanks for your reply.HerbieH wrote: 2023-02-13, 09:38 UTC You may know it, but anyway: Holding down the 'ALT' key moves the file.
Or holding down the the Shift-key.HerbieH wrote: 2023-02-13, 09:38 UTC You may know it, but anyway: Holding down the 'ALT' key moves the file.
Thank you for your reply.
sdqdlwq wrote: 2023-02-13, 10:05 UTC Because when I use the drag and drop function, it is more about moving files than copying them.
So I would like to have an option to change the default value of the drag and drop function.
Stefan2 wrote: 2023-02-13, 10:22 UTCsdqdlwq wrote: 2023-02-13, 10:05 UTC Because when I use the drag and drop function, it is more about moving files than copying them.
So I would like to have an option to change the default value of the drag and drop function.
There must be already an thread in the Suggestions sub-forum, you may up-vote there.....
Moderator message from: white » 2023-02-13, 11:32 UTC
I have the StrokeIt gesture and can still use right click drag and drop.sdqdlwq wrote: 2023-02-13, 11:26 UTC Originally, I thought I could solve the problem by adding a "custom option (parameter)" to the wincmd.ini file.
Just now I tried to use right-click drag-and-drop files, and multiple options popped up.
The reason I didn't use right click drag and drop files before was because I had been using a global mouse gesture software.
When using the mouse gesture software, the right click does not enable the drag and drop file function.
The mouse gesture software is an important productivity software for me and I have no intention of giving it up at this time.
It seems I thought this problem simple.
Code: Select all
;———————————————————————————————————————————————
; Hold Shift when pressing LMB in TC file panels
;———————————————————————————————————————————————
#NoEnv
#NoTrayIcon
#KeyHistory, 0
SetBatchLines,-1
WinWaitClose, ahk_class TTOTAL_CMD
ExitApp
#IfWinActive ahk_class TTOTAL_CMD
MouseGetPos,,,, control
If control = TMyListBox
{~LButton::
{ Send, {Shift down}
KeyWait, LButton
Send, {Shift up}
}
Return
}
Code: Select all
ShellExec /T "%COMMANDER_PATH%\Scripts\AutoHotKey\AutoHotkeyU%AUTORUN_OSARCH%.exe" '"%COMMANDER_PATH%\Scripts\AutoHotKey\D&D_MoveInsteadOfCopy.ahk"'
This is an unreliable translator. Install or unpack QTranslate, try different translators, display the best of them (for example, Microsoft) and configure the keyboard shortcuts for yourself.
This script has a strange negative side effect.