Skip to content

Instantly share code, notes, and snippets.

@vishless
Created April 15, 2017 08:16
Show Gist options
  • Save vishless/6227ec4258d190e34b63fc52614068ff to your computer and use it in GitHub Desktop.
Save vishless/6227ec4258d190e34b63fc52614068ff to your computer and use it in GitHub Desktop.
AHK script to remap Skyrim keyboard controls
; AHK script to remap keys in ESV Skyrim.
; This script solves the problem with hardcoded inventory keys.
; `Favorite` and `Drop all items` actions have `F` and `R` keys hardcoded.
; e::w => e key is pressed AHK sends the w key.
#SingleInstance,Force
#IfWinActive ahk_class Skyrim
;movement keys
e::w
s::a
d::s
f::d
;inventory action
r::e
t::r
g::f
w::q
a::p
q::i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment