From 1e33006f99c3664dce856bb83000efdc0e82b76d Mon Sep 17 00:00:00 2001 From: breadcat Date: Mon, 19 Aug 2013 17:59:00 +0100 Subject: Add 'if WinXP' statements and auto-typo-correct --- appspecific.ahk | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'appspecific.ahk') diff --git a/appspecific.ahk b/appspecific.ahk index 080d76c..7ee960a 100644 --- a/appspecific.ahk +++ b/appspecific.ahk @@ -1,9 +1,28 @@ ;explorer #IfWinActive ahk_class CabinetWClass - Capslock::Send !{Up} ;capslock goes up a folder + Capslock:: ;up one folder + if A_OSVersion in WIN_XP + { + Send {Backspace} + } + Else + { + Send !{Up} + } + Return F6::Send !d ;addressbar - F1::Send {F2} ;disable help, enable rename + F1:: ;overflow to rename, help is useless in explorer + F2:: ;rename commands + if A_OSVersion in WIN_XP + { + Send {F2}{Ctrldown}{Home}{Shiftdown}{End}{Ctrlup}{Left 4}{Shiftup} ; rename (hopefully) deselects file extension + } + Else + { + Send {F2} + } + Return #IfWinActive ;photoviewer -- cgit v1.2.3