Add misc folder
This commit is contained in:
parent
8e54031dc3
commit
586e4e3666
6
misc/caps_as_colon.ahk
Normal file
6
misc/caps_as_colon.ahk
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#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.
|
||||||
|
|
||||||
|
Capslock::;
|
38
misc/colemak.ahk
Normal file
38
misc/colemak.ahk
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
; Colemak Mod-DH mapping for matrix boards
|
||||||
|
|
||||||
|
;SC010::q
|
||||||
|
;SC011::w
|
||||||
|
SC012::f
|
||||||
|
SC013::p
|
||||||
|
SC014::b
|
||||||
|
SC015::j
|
||||||
|
SC016::l
|
||||||
|
SC017::u
|
||||||
|
SC018::y
|
||||||
|
SC019::;
|
||||||
|
;SC01E::a
|
||||||
|
SC01F::r
|
||||||
|
SC020::s
|
||||||
|
SC021::t
|
||||||
|
;SC022::g
|
||||||
|
SC023::m
|
||||||
|
SC024::n
|
||||||
|
SC025::e
|
||||||
|
SC026::i
|
||||||
|
SC027::o
|
||||||
|
|
||||||
|
;SC02c::z
|
||||||
|
;SC02d::x
|
||||||
|
;SC02e::c
|
||||||
|
SC02f::d
|
||||||
|
SC030::v
|
||||||
|
SC031::k
|
||||||
|
SC032::h
|
||||||
|
|
||||||
|
sc03a::Backspace
|
||||||
|
|
||||||
|
PgUp::End
|
||||||
|
PgDn::Home
|
||||||
|
|
||||||
|
End::PgUp
|
||||||
|
Home::PgDn
|
72
misc/patrick_qwerty.ahk
Normal file
72
misc/patrick_qwerty.ahk
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
#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.
|
||||||
|
SetCapsLockState, AlwaysOff
|
||||||
|
|
||||||
|
; Swap backtick and escape since I use escape much more
|
||||||
|
Esc::SC029
|
||||||
|
SC029::Esc
|
||||||
|
|
||||||
|
; Swap { } and [ ] since I use curly brackets more while programming
|
||||||
|
:*?:[::
|
||||||
|
SendInput, {Shift Down}`[{Shift up}
|
||||||
|
return
|
||||||
|
|
||||||
|
:*?:]::
|
||||||
|
SendInput, {Shift Down}`]{Shift Up}
|
||||||
|
return
|
||||||
|
|
||||||
|
:*?:{::
|
||||||
|
SendInput, `[
|
||||||
|
return
|
||||||
|
|
||||||
|
:*?:}::
|
||||||
|
SendInput, `]
|
||||||
|
return
|
||||||
|
|
||||||
|
; Ctrl + PrintScreen shortcut for opening the snipping tool
|
||||||
|
^PrintScreen::Send, #+{S}
|
||||||
|
|
||||||
|
#If GetKeyState("CapsLock", "P")
|
||||||
|
i::Up
|
||||||
|
j::Left
|
||||||
|
k::Down
|
||||||
|
l::Right
|
||||||
|
|
||||||
|
y:: Send, {End}+{Home}
|
||||||
|
`;::Backspace
|
||||||
|
p::Del
|
||||||
|
|
||||||
|
u::Home
|
||||||
|
o::End
|
||||||
|
|
||||||
|
f::LCtrl
|
||||||
|
d::LShift
|
||||||
|
a::LAlt
|
||||||
|
|
||||||
|
s::WheelDown
|
||||||
|
w::WheelUp
|
||||||
|
|
||||||
|
e::!Left
|
||||||
|
r::!Right
|
||||||
|
|
||||||
|
z::^z
|
||||||
|
x::^x
|
||||||
|
c::^c
|
||||||
|
v::^v
|
||||||
|
|
||||||
|
Backspace::^Backspace
|
||||||
|
Del::^Del
|
||||||
|
|
||||||
|
Up::^Up
|
||||||
|
Left::^Left
|
||||||
|
Down::^Down
|
||||||
|
Right::^Right
|
||||||
|
|
||||||
|
Space::Enter
|
||||||
|
|
||||||
|
#If
|
||||||
|
*CapsLock::
|
||||||
|
KeyWait, CapsLock
|
||||||
|
Return
|
Loading…
Reference in New Issue
Block a user