diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2019-02-11 17:04:30 -0200 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2019-02-11 17:04:30 -0200 |
commit | 890254a4f9f973c2f72be30dbaa78b8171034d7b (patch) | |
tree | 88fc2814705b24407c9bdd514e0c9eeae7e2e520 /main.lua | |
parent | 335395da7db0d655663e6d1e7238b18c806e9ed6 (diff) |
Adjust keybindings to match vim
Diffstat (limited to 'main.lua')
-rw-r--r-- | main.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main.lua b/main.lua index e14839b..dbc63b5 100644 --- a/main.lua +++ b/main.lua @@ -293,11 +293,11 @@ function love.update(dt) backimage:replacePixels(backimagedata) end end - ktup('i', imgup) + ktup('k', imgup) ktup('up', imgup) - ktup('j', imgleft) + ktup('h', imgleft) ktup('left', imgleft) - ktup('k', imgdown) + ktup('j', imgdown) ktup('down', imgdown) ktup('l', imgright) ktup('right', imgright) |