blob: 16ab6709620d106a14280da4cc41761cfc3f195a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* $OpenBSD: ex_def.h,v 1.5 2015/11/19 07:53:31 bentley Exp $ */
#define C_SCROLL 0
#define C_BANG 1
#define C_HASH 2
#define C_SUBAGAIN 3
#define C_STAR 4
#define C_SHIFTL 5
#define C_EQUAL 6
#define C_SHIFTR 7
#define C_AT 8
#define C_APPEND 9
#define C_ABBR 10
#define C_ARGS 11
#define C_BG 12
#define C_CHANGE 13
#define C_CD 14
#define C_CHDIR 15
#define C_COPY 16
#define C_DELETE 17
#define C_DISPLAY 18
#define C_EDIT 19
#define C_EX 20
#define C_EXUSAGE 21
#define C_FILE 22
#define C_FG 23
#define C_GLOBAL 24
#define C_HELP 25
#define C_INSERT 26
#define C_JOIN 27
#define C_K 28
#define C_LIST 29
#define C_MOVE 30
#define C_MARK 31
#define C_MAP 32
#define C_MKEXRC 33
#define C_NEXT 34
#define C_NUMBER 35
#define C_OPEN 36
#define C_PRINT 37
#define C_PRESERVE 38
#define C_PREVIOUS 39
#define C_PUT 40
#define C_QUIT 41
#define C_READ 42
#define C_RECOVER 43
#define C_RESIZE 44
#define C_REWIND 45
#define C_SUBSTITUTE 46
#define C_SCRIPT 47
#define C_SET 48
#define C_SHELL 49
#define C_SOURCE 50
#define C_STOP 51
#define C_SUSPEND 52
#define C_T 53
#define C_TAG 54
#define C_TAGNEXT 55
#define C_TAGPOP 56
#define C_TAGPREV 57
#define C_TAGTOP 58
#define C_UNDO 59
#define C_UNABBREVIATE 60
#define C_UNMAP 61
#define C_V 62
#define C_VERSION 63
#define C_VISUAL_EX 64
#define C_VISUAL_VI 65
#define C_VIUSAGE 66
#define C_WRITE 67
#define C_WN 68
#define C_WQ 69
#define C_XIT 70
#define C_YANK 71
#define C_Z 72
#define C_SUBTILDE 73
|