-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorkShortcuts.ahk
86 lines (77 loc) · 1.53 KB
/
WorkShortcuts.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;; Show Cisco Jabber windows called "Conversations" if not visible
^+!J::
IfWinExist, Conversations
{
WinHide
}
Else
{
WinShow, Conversations
WinActivate, Conversations
}
return
;; Show Pushbullet main window called "Pushbullet Pro" if not visible
^+!P::
IfWinExist, Pushbullet
{
WinHide
}
Else
{
WinShow, Pushbullet
WinActivate, Pushbullet
}
return
;; Show calculator
!^+C::
IfWinExist, SpeedCrunch
{
WinHide
}
Else
{
WinShow, SpeedCrunch
WinActivate, SpeedCrunch
}
return
;; Show Slack
!^+o::
IfWinExist, Slack
{
WinHide
}
Else
{
WinShow, Slack
WinActivate, Slack
}
return
; Open Blank Vim
!^+v::
Run, C:\Users\212569002\Vim\vim72\gvim.exe , ,max
Sleep 500
Send `:enew{Enter}
;Sleep 500
;Send, {Esc}i
Return
; Copy text from VIM, switch to SQL query window in pgAdmin, clear current contents of window, then paste and execute the query
!^+l::
Clipboard := "" ; Clear the clipboard. Required for ClipWait.
Send, "*y
ClipWait ;waits for the clipboard to have content
Sleep 500
IfWinExist Query
{
WinActivate Query
Sleep 500
; consider clicking center of the screen?
Send ^a
Sleep 500
Send ^v
Sleep 500
Send {F5}
}