Armando, I've had that problem with Everything too but I use autohotkey (surprise, surprise!
) to copy the full file path in Everything with control+shift+c:
#IfWinActive, ahk_class EVERYTHING
^+c::
controlgettext, clipboard, msctls_statusbar321, ahk_class EVERYTHING
return
edit: I just thought of an alternative solution: do control+c twice rapidly
#IfWinActive, ahk_class EVERYTHING
~^c::
if A_TimeSincePriorHotkey < 500
if A_PriorHotkey = %A_ThisHotkey%
controlgettext, clipboard, msctls_statusbar321, ahk_class EVERYTHING
return
edit2: just realized that that last solution works just as well for windows explorer - yay!
#IfWinActive, ahk_class CabinetWClass
~^c::
if A_TimeSincePriorHotkey < 500
if A_PriorHotkey = %A_ThisHotkey%
clipboard = %Clipboard%
return