;hotkey to open folder under cursor in a new tab on the opposite panel. ;if cursor is on a file, then the current folder is opened in a new tab on the opposite panel. ;similar to the existing Ctrl-Left / Ctrl-Right hotkey but this creates a new tab first. ;Source: http://www.donationcoder.com/Forums/bb/index.php?topic=18678.msg178918#msg178918 ; #IfWinActive ahk_class TTOTAL_CMD cm_OpenNewTab := 3001 cm_OpenDirInNewTabOther := 3004 ;ctrl + shift + left arrow ^+Left:: Send, {Tab} PostMessage 1075, %cm_OpenNewTab%, 0 Send, {Tab} PostMessage 1075, 3004, , , ahk_class TTOTAL_CMD Return ;ctrl + shift + right arrow ^+Right:: Send, {Tab} PostMessage 1075, %cm_OpenNewTab%, 0 Send, {Tab} PostMessage 1075, 3004, , , ahk_class TTOTAL_CMD Return #IfWinActive