Remix.run Logo
raincole 7 hours ago

Only slightly related, but what increased my code typing speed the most is this (AutoHotKey 2):

; CapsLock + J/K -> ( )

CapsLock & j::SendText "("

CapsLock & k::SendText ")"

; CapsLock + U/I -> [ ]

CapsLock & u::SendText "["

CapsLock & i::SendText "]"

; CapsLock + L/: -> { }

CapsLock & l::SendText "{"

; SC027 = physical ;/: key on a US keyboard

CapsLock & SC027::SendText "}"

; CapsLock + O/P/M/E -> _ + - =

CapsLock & o::SendText "_"

CapsLock & p::SendText "+"

CapsLock & m::SendText "-"

CapsLock & e::SendText "="

SoftTalker 6 hours ago | parent | next [-]

I've tried this sort of thing but then your muscle memory works against you when you have to use a "normal" keyboard.

Even remapping Cap Lock to Control, which I do, trips me up for a few minutes when I need to work on any other computer that has not been set up that way.

hronecviktor 6 hours ago | parent [-]

Dont even have to remap anything to cause issues. Case in point: we wanted to try mob programming with 2 colleagues.

I was using a 106 with US layout

Colleague #1 was using 60% with russian layout

Colleague #2 was on catalan layout

90% of the time we were just hunting for special chars

6 hours ago | parent [-]
[deleted]
godd2 3 hours ago | parent | prev [-]

Dude, just use vim.