AutoHotkey: Move selected files to parent directory

From TotalcmdWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

You can use this script to move the selected files to its parent directory without changing the target panel or using the mouse. The shortkey is Ctrl-Alt-F6:

IfWinActive, ahk_class TTOTAL_CMD
{
	!^F6::
	ControlGetText, ParentPath, TMyPanel3
	Clipboard := RegExReplace(ParentPath, "(^.+\\).+", "$1")
	Send {F6}
	Send ^v{Enter 2}
	Return
}
Return