plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit bab43f07d31d9fb5058704878fecd629c281af1f
parent fdf6ef333705c844bcf3ccf2f93b2773f1a6aa41
Author: mischief <mischief@offblast.org>
Date:   Sun,  4 Jan 2015 20:06:05 -0800

keyboard.h: add some missing key enums from Plan 9

Change-Id: I0d8b94037309b15f839588c6547acaaaf3e2ed4d
Reviewed-on: https://plan9port-review.googlesource.com/1151
Reviewed-by: Russ Cox <rsc@google.com>

Diffstat:
Minclude/keyboard.h | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/include/keyboard.h b/include/keyboard.h @@ -33,7 +33,12 @@ enum { Kalt= KF|0x15, Kshift= KF|0x16, Kctl= KF|0x17, - + + Kbs= 0x08, + Kdel= 0x7f, + Kesc= 0x1b, + Keof= 0x04, + Kcmd= 0xF100 /* Rune: beginning of Cmd+'a', Cmd+'A', etc on Mac */ };