summaryrefslogtreecommitdiffstats
path: root/appspecific.ahk
blob: 080d76c77d9bf7a2af8339166c74bfe4a482d8de (plain) (blame)
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
;explorer
#IfWinActive ahk_class CabinetWClass
  Capslock::Send !{Up} ;capslock goes up a folder
  F6::Send !d ;addressbar
  F1::Send {F2} ;disable help, enable rename
#IfWinActive

;photoviewer
#IfWinActive ahk_class Photo_Lightweight_Viewer
  Capslock::Send !{F4} ;quit
  Up::Return ;removes annoying feature where up/down stops left/right naviagation
  Down::Return
#IfWinActive

;mpc-hc
#IfWinActive ahk_class MediaPlayerClassicW
  1::Send 2^1 ;1 keeps borders
  Ralt & Enter::Send !{Enter} ; ralt-enter fullscreens
  Capslock::Send !{F4} ;quit
  p::Send ^7 ;p for playlist
#IfWinActive

;outlook
#IfWinActive ahk_class rctrl_renwnd32
  ^Enter::Return ;disable accidentally send email shortcut
#IfWinActive

;excel
#IfWinActive ahk_class XLMAIN
  ^+v::Send {Esc}{Up}^c{Down}^v{Esc}{Down} ;ctrl+shift+v copies above cell into current
#IfWinActive

;mstsc
#IfWinActive ahk_class #32770
  ^Enter::Send 10.0.0.5{Enter} ;tserver
  ^+Enter::Send 10.0.0.10{Enter} ;dserer
#IfWinActive

;act
#IfWinActive ahk_class WindowsForms10.Window.8.app.0.2004eee
  ^Enter::Send ^{End}{Space}-PG+{Tab 3}{Enter} ;save note with footer
  ^n::Send {F9} ;insert note
  ^f::Send !LC ;search for company
#IfWinActive

;command prompt
#IfWinActive ahk_class ConsoleWindowClass
  ^c:: ;copy
    Send {Enter}
  return
  ^v:: ;paste
    CoordMode, Mouse, Relative
    MouseMove, 100, 100
    Send {RButton}p
  return
#IfWinActive

;chrome/chromium
#IfWinActive ahk_class Chrome_WidgetWin_1
  ^+w::Send ^w
	^q::Send ^w ;quit now closes tab, the two keys are too close for this sort of thing
	^d::Send ^f ;useless bookmark > useful find
	^+h::Send ^tchrome://chrome/settings/clearBrowserData{Enter} ;delete history page
#IfWinActive

;notepad2
#IfWinActive ahk_class Notepad2
	!z::Return ;disable delete first char of line 'feature;
  ^Down::Send {Down} ; disable shift line down feature
  ^Up::Send {Up} ; disable shift line up feature
#IfWinActive