Hi Void,
I have a similar issue, but it’s probably not worth a new post, so I’m commenting here.
I recall that previous versions of Everything opened paths/folders in a new tab in QTTabBar, but newer versions open a separate File Explorer window instead.
I’m trying to figure out how to fix this. Below is a solution using AHK:
https://superuser.com/questions/1768218 ... windows-11
After some trial and error, I got it working:
Is there a simpler way to open a path/folder in a new tab instead of a new File Explorer window? The URL above mentions "Computer\HKEY_CLASSES_ROOT\Folder\shell\opennewtab". I’m wondering if Everything has a built-in command to do this, which would avoid the need for an AHK script.
Thanks in advance.
I have a similar issue, but it’s probably not worth a new post, so I’m commenting here.
I recall that previous versions of Everything opened paths/folders in a new tab in QTTabBar, but newer versions open a separate File Explorer window instead.
I’m trying to figure out how to fix this. Below is a solution using AHK:
https://superuser.com/questions/1768218 ... windows-11
After some trial and error, I got it working:
Code:
;; https://superuser.com/questions/1768218/how-to-open-folders-from-everything-search-in-a-new-tab-windows-11?rq=1#SingleInstance, ForceSendMode InputSetWorkingDir, %A_ScriptDir%WinGet, ids, List, ahk_class CabinetWClass;; copy path, which I have set to Alt+csend !cif (ids != 0){ Loop, %ids% { this_id := ids%A_Index% WinActivate, ahk_id %this_id% WinWaitActive, ahk_id %this_id%,, 2 active := WinActive(ahk_class CabinetWClass) if (active != 0) { send, ^t ; if there are arguments, Ctrl+l and the enter the arguemtn Sleep, 10send, ^lSleep, 10;; cannot get the path with %1%, so I have to first copy the path and then paste it here;; send, %1% send, ^vsend, {enter} break } }}else { Run, % "explorer"}Thanks in advance.
Statistics: Posted by abtxu — Tue Jul 29, 2025 12:27 am







