summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cio.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/cio.cc')
-rw-r--r--crawl-ref/source/cio.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/cio.cc b/crawl-ref/source/cio.cc
index f657204f88..b9ff80c25f 100644
--- a/crawl-ref/source/cio.cc
+++ b/crawl-ref/source/cio.cc
@@ -22,6 +22,13 @@ extern int unixcurses_get_vi_key(int keyin);
static keycode_type _numpad2vi(keycode_type key)
{
+ switch(key)
+ {
+ case CK_UP: key = 'k'; break;
+ case CK_DOWN: key = 'j'; break;
+ case CK_LEFT: key = 'h'; break;
+ case CK_RIGHT: key = 'l'; break;
+ }
if (key >= '1' && key <= '9')
{
const char *vikeys = "bjnh.lyku";