~ubuntu-branches/ubuntu/raring/less/raring-proposed

« back to all changes in this revision

Viewing changes to pckeys.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Schoepf
  • Date: 2002-04-04 16:43:52 UTC
  • Revision ID: james.westby@ubuntu.com-20020404164352-qldq048yoc7x5sd5
Tags: upstream-374
ImportĀ upstreamĀ versionĀ 374

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 1984-2000  Mark Nudelman
 
3
 *
 
4
 * You may distribute under the terms of either the GNU General Public
 
5
 * License or the Less License, as specified in the README file.
 
6
 *
 
7
 * For more information about less, or for information on how to 
 
8
 * contact the author, see the README file.
 
9
 */
 
10
 
 
11
 
 
12
/*
 
13
 * Definitions of keys on the PC.
 
14
 * Special (non-ASCII) keys on the PC send a two-byte sequence,
 
15
 * where the first byte is 0 and the second is as defined below.
 
16
 */
 
17
#define PCK_SHIFT_TAB           '\017'
 
18
#define PCK_ALT_E               '\022'
 
19
#define PCK_CAPS_LOCK           '\072'
 
20
#define PCK_F1                  '\073'
 
21
#define PCK_NUM_LOCK            '\105'
 
22
#define PCK_HOME                '\107'
 
23
#define PCK_UP                  '\110'
 
24
#define PCK_PAGEUP              '\111'
 
25
#define PCK_LEFT                '\113'
 
26
#define PCK_RIGHT               '\115'
 
27
#define PCK_END                 '\117'
 
28
#define PCK_DOWN                '\120'
 
29
#define PCK_PAGEDOWN            '\121'
 
30
#define PCK_INSERT              '\122'
 
31
#define PCK_DELETE              '\123'
 
32
#define PCK_CTL_LEFT            '\163'
 
33
#define PCK_CTL_RIGHT           '\164'
 
34
#define PCK_CTL_DELETE          '\223'