ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Find And Run Robot

INDEX/CACHE vs REALTIME

<< < (3/4) > >>

skajfes:
In addition to the everything plugins you can also use a FARR alias to quickly open a separate Everything window with a search phrase. I use two spaces at the end of a FARR searchphrase as regex pattern. Very handy as you can first search with FARR and, if what you're looking for isn't found in a second or two, just tap space space.

regular expression pattern box:
^(.*)\s\s$
Results box:
Everything Search: $$1 | dolaunch C:\Program files\Everything\Everything.exe -search "$$1"

(modify the path to fit your installation directory)
-Nod5 (July 23, 2010, 04:26 PM)
--- End quote ---

genius  :Thmbsup:

Nod5:
One more (last?  :)) revision: there's no need for separate autohotkey code for path copying in Everything and Explorer. (one could also try removing the IfWinActive parts completely. The hotkey then likely works fine in all apps that use ctrl+c to put files on the clipboard for copying. But there might be hickups in apps that use ctrl+c for something else so I'll keep the limits.)

--- ---;-- doubletap ctrl+c to copy path in everything and explorer
#IfWinActive, ahk_class ExploreWClass
~^c::
#IfWinActive, ahk_class CabinetWClass
~^c::
#IfWinActive, ahk_class EVERYTHING
~^c::
if A_TimeSincePriorHotkey < 500
if A_PriorHotkey = %A_ThisHotkey%
clipboard = %Clipboard%
return
#IfWinActive

Nod5:
One more revision: Tripletap to copy only filename(s) w/o path. Now also works on Desktop.

--- ---;-- doubletap ctrl+c to copy path(s) in everything and explorer
;-- tripletap ctrl+c to copy filename(s)
#IfWinActive, ahk_class ExploreWClass
~^c::
#IfWinActive, ahk_class CabinetWClass
~^c::
#IfWinActive, ahk_class EVERYTHING
~^c::
#IfWinActive, ahk_class Progman
~^c::
if A_TimeSincePriorHotkey < 500
if A_PriorHotkey = %A_ThisHotkey% ;-- doubletap
{
clipboard = %Clipboard%

if xtriple = %A_ThisHotkey% ;-- tripletap
{
sleep 100
clipboard := RegExReplace(clipboard, "m)^.*\\(.*)$", "$1")
xtriple =
}
else
 xtriple = %A_ThisHotkey%
}
else
xtriple =
else
xtriple =
return
#IfWinActive

Armando:
Thanks NOD5 !  :) it's appreciated.
I'm late, I know...

kikon:
I guess , it would better not adding INDEX feature.

Instead indexing, I think add some feature optionally:

1) It will be great, can search in other streams of files, such as Subject, Keywords, Category, Artist etc. Because often these streams more descriptive than Name of File

2) To search description files of downloaded files
the huge number of files created by downloading. Often the name doesn't mean something. For example I type WinHex in FARR, to find the file and I do not remember that it downloaded as w13w2.zip name. but its description file (w13w2.txt) file contains more meaningful info.

(sorry for bad English  :()

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version