Would it be possible to add a auto-search on clipboard content as a selectable option?
Becomes very hard to keep activating Everything each time.
Autosearch
Re: Autosearch
Not sure if this would be enough for you, but, how to add everything as a search engine in firefox?. (Actually not quite what you're wanting.)
So just how is this to work?
Clipboard changes & with that a search should automatically happen?
Suppose you would only want that action enabled at specific times, specific situations?
So just how is this to work?
Clipboard changes & with that a search should automatically happen?
Suppose you would only want that action enabled at specific times, specific situations?
Re: Autosearch
Yes. Autosearch on clipboard change. Would be really useful in finding duplicates and checking files against a list and save us quite a bit of button mashing,
Re: Autosearch
Autohotkey script
For it to work(I set those conditions),the Everything window must be visible(not minimized to the tray\taskbar nor maximized).
Just copy a text and everything will do a search with that text.
If you post exactly what you want to do,I may come up with even better solution
Code: Select all
#Persistent
Clipboard =
OnClipboardChange:
If A_EventInfo != 1
Return
IfWinNotExist,AHK_exe Everything.exe
Return
WinGet,State,MinMax,AHK_exe Everything.exe
If State != 0
Return
WinActivate,AHK_exe Everything.exe
ControlSetText,Edit1,% Clipboard,AHK_exe Everything.exe
Return
Just copy a text and everything will do a search with that text.
If you post exactly what you want to do,I may come up with even better solution
Re: Autosearch
Actually, this is exactly what I was looking for. Thanks a lot.
Any way to keep a bookmark active while using your scipt?
Any way to keep a bookmark active while using your scipt?
Re: Autosearch
The simplest way would be to edit ControlSetText
ControlSetText,Edit1,% "the text witch the bookmark set" A_Space Clipboard,AHK_exe Everything.exe
Don't remove the quotes,place the text there.
It will be a little complicated if you want to use different bookmarks without editing the ControlSetText every time(I can't picture it yet how it will work)
ControlSetText,Edit1,% "the text witch the bookmark set" A_Space Clipboard,AHK_exe Everything.exe
Don't remove the quotes,place the text there.
It will be a little complicated if you want to use different bookmarks without editing the ControlSetText every time(I can't picture it yet how it will work)