xref: /illumos-gate/usr/src/cmd/vi/port/ex_vars.h (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 1992 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
28 /*	  All Rights Reserved  	*/
29 
30 
31 /*
32  * University Copyright- Copyright (c) 1982, 1986, 1988
33  * The Regents of the University of California
34  * All Rights Reserved
35  *
36  * University Acknowledgment- Portions of this document are derived from
37  * software developed by the University of California, Berkeley, and its
38  * contributors.
39  */
40 
41 #pragma ident	"%Z%%M%	%I%	%E% SMI"
42 
43 #define	vi_AUTOINDENT		0
44 #define	vi_AUTOPRINT		1
45 #define	vi_AUTOWRITE		2
46 #define	vi_BEAUTIFY		3
47 #define	vi_DIRECTORY		4
48 #define	vi_EDCOMPATIBLE		5
49 #define	vi_ERRORBELLS		6
50 #define	vi_EXRC			7
51 #define	vi_FLASH		8
52 #define	vi_HARDTABS		9
53 #define	vi_IGNORECASE		10
54 #define	vi_LISP			11
55 #define	vi_LIST			12
56 #define	vi_MAGIC		13
57 #define	vi_MESG			14
58 #define	vi_MODELINES		15
59 #define	vi_NUMBER		16
60 #define	vi_NOVICE		17
61 #define	vi_OPTIMIZE		18
62 #define	vi_PARAGRAPHS		19
63 #define	vi_PROMPT		20
64 #define	vi_READONLY		21
65 #define	vi_REDRAW		22
66 #define	vi_REMAP		23
67 #define	vi_REPORT		24
68 #define	vi_SCROLL		25
69 #define	vi_SECTIONS		26
70 #define	vi_SHELL		27
71 #define	vi_SHIFTWIDTH		28
72 #define	vi_SHOWMATCH		29
73 #define	vi_SHOWMODE		30
74 #define	vi_SLOWOPEN		31
75 #define	vi_TABSTOP		32
76 #define	vi_TAGLENGTH		33
77 #define	vi_TAGS			34
78 #ifdef TAG_STACK
79 #define vi_TAGSTACK             35
80 #define vi_TERM                 36
81 #define vi_TERSE                37
82 #define vi_TIMEOUT              38
83 #define vi_TTYTYPE              39
84 #define vi_WARN                 40
85 #define vi_WINDOW               41
86 #define vi_WRAPSCAN             42
87 #define vi_WRAPMARGIN           43
88 #define vi_WRITEANY             44
89 
90 #define vi_NOPTS        45
91 #else
92 #define vi_TERM                 35
93 #define vi_TERSE                36
94 #define vi_TIMEOUT              37
95 #define vi_TTYTYPE              38
96 #define vi_WARN                 39
97 #define vi_WINDOW               40
98 #define vi_WRAPSCAN             41
99 #define vi_WRAPMARGIN           42
100 #define vi_WRITEANY             43
101 
102 #define vi_NOPTS        44
103 #endif
104 
105