From 63ed80a8974aea9dc0398f15926bc348f5b0901e Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Thu, 7 Feb 2008 02:21:14 +0000 Subject: Reworking of CSI/SS3/CSIfunc recognition; use registered numbers + names for keys, rather than hardcoded --- demo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demo.c') diff --git a/demo.c b/demo.c index 540861d..c1c820c 100644 --- a/demo.c +++ b/demo.c @@ -18,7 +18,7 @@ int main(int argc, char *argv[]) { tcsetattr(0, TCSANOW, &termios); - termkey_t *tk = termkey_new(0, TERMKEY_FLAG_CONVERTKP); + termkey_t *tk = termkey_new(0, 0); termkey_result ret; termkey_key key; @@ -29,7 +29,7 @@ int main(int argc, char *argv[]) { key.modifiers & TERMKEY_KEYMOD_SHIFT ? "S-" : "", key.modifiers & TERMKEY_KEYMOD_ALT ? "A-" : "", key.modifiers & TERMKEY_KEYMOD_CTRL ? "C-" : "", - termkey_describe_sym(key.code), + termkey_describe_sym(tk, key.code), key.code); else printf("Key %s%s%s%s (U+%04X)\n", -- cgit v1.2.3