forked from denolfe/AutoHotkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Everything.ahk
41 lines (34 loc) · 926 Bytes
/
Everything.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#If WinActive("ahk_class EVERYTHING") and !GetKeyState("Alt")
; Needs Everything version 1.3.4.686
; Statusbar does not show full filename in later verions
Tab::Down
+Tab::Send, {Up}{Shift Up}
Shift::Return
; Open file/folder
+Enter::
StatusBarGetText, FullFileName
Run %Editor% "%FullFileName%"
Return
^+Enter::
StatusBarGetText, FullFileName
Run %Editor% --add "%FullFileName%"
Return
^j::
StatusBarGetText, FullFileName
SplitPath, FullFileName, name, dir, ext, name_no_ext, drive
Run, "%dir%"
Return
^k::
StatusBarGetText, FullFileName
clipboard := FullFileName
ClipWait
Notify("Full Filename Copied",clipboard,-1,"Style=Win10")
Return
^l::
StatusBarGetText, FullFileName
SplitPath, FullFileName, name, dir, ext, name_no_ext, drive
clipboard := dir
ClipWait
Notify("File Dir Copied",clipboard,-1,"Style=Win10")
Return
#If