de_cmds.h 960 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 1994 by Xerox Corporation. All rights reserved.
  3. *
  4. * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
  5. * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
  6. *
  7. * Permission is hereby granted to use or copy this program
  8. * for any purpose, provided the above notices are retained on all copies.
  9. * Permission to modify the code and to distribute modified code is granted,
  10. * provided the above notices are retained, and a notice that the code was
  11. * modified is included with the above copyright notice.
  12. */
  13. /* Boehm, May 19, 1994 2:24 pm PDT */
  14. #ifndef DE_CMDS_H
  15. # define DE_CMDS_H
  16. # define UP 16 /* ^P */
  17. # define DOWN 14 /* ^N */
  18. # define LEFT 2 /* ^B */
  19. # define RIGHT 6 /* ^F */
  20. # define DEL 127 /* ^? */
  21. # define BS 8 /* ^H */
  22. # define UNDO 21 /* ^U */
  23. # define WRITE 23 /* ^W */
  24. # define QUIT 4 /* ^D */
  25. # define REPEAT 18 /* ^R */
  26. # define LOCATE 12 /* ^L */
  27. # define TOP 20 /* ^T */
  28. #endif