From fc566ab208ace56aac101d5c3c3e08c9242645a9 Mon Sep 17 00:00:00 2001 From: breadcat Date: Sat, 17 Aug 2013 16:18:08 +0100 Subject: Consistent naming style Also replaced longform {ALTDOWN}{KEY}{ALTUP} with shortform !{Key}. --- appspecific.ahk | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/appspecific.ahk b/appspecific.ahk index 07c6160..080d76c 100644 --- a/appspecific.ahk +++ b/appspecific.ahk @@ -1,47 +1,47 @@ ;explorer #IfWinActive ahk_class CabinetWClass - Capslock::SendInput {ALTDOWN}{UP}{ALTUP} ;capslock goes up a folder - F6::Send {ALTDOWN}d{ALTUP} ;addressbar + 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::SendInput {ALTDOWN}{F4}{ALTUP} ;quits + 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{ctrldown}1{ctrlup} ;1 keeps borders - Ralt & Enter::Send {altdown}{enter}{altup} ; ralt-enter fullscreens - Capslock::Send {altdown}{f4}{altup} ;quit - p::Send {ctrldown}7{ctrlup} ;p for playlist + 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 + ^Enter::Return ;disable accidentally send email shortcut #IfWinActive ;excel #IfWinActive ahk_class XLMAIN - ^+v::Send {ESC}{UP}{CTRLDOWN}c{CTRLUP}{DOWN}{CTRLDOWN}v{CTRLUP}{ESC}{DOWN} ;ctrl+shift+v copies above cell into current + ^+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 + ^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 {CONTROLDOWN}{END}{CONTROLUP}{SPACE}-PG{SHIFTDOWN}{TAB 3}{SHIFTUP}{ENTER} ;save note with footer + ^Enter::Send ^{End}{Space}-PG+{Tab 3}{Enter} ;save note with footer ^n::Send {F9} ;insert note - ^f::Send {ALTDOWN}L{ALTUP}C ;search for company + ^f::Send !LC ;search for company #IfWinActive ;command prompt @@ -58,10 +58,10 @@ ;chrome/chromium #IfWinActive ahk_class Chrome_WidgetWin_1 - ^+w::Send {CTRLDOWN}w{CTRLUP} - ^q::Send {CTRLDOWN}w{CTRLUP} ;quit now closes tab, the two keys are too close for this sort of thing - ^d::Send {CTRLDOWN}f{CTRLUP} ;useless bookmark > useful find - ^+h::Send {CTRLDOWN}t{CTRLUP}chrome://chrome/settings/clearBrowserData{ENTER} ;delete history page + ^+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 -- cgit v1.2.3